VCConfiguration.SatelliteDLLs 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取此配置生成的所有附属 Dll 的列表(以分号分隔)。
public:
property System::String ^ SatelliteDLLs { System::String ^ get(); };
public:
property Platform::String ^ SatelliteDLLs { Platform::String ^ get(); };
[System.Runtime.InteropServices.DispId(746)]
public string SatelliteDLLs { [System.Runtime.InteropServices.DispId(746)] get; }
[<System.Runtime.InteropServices.DispId(746)>]
[<get: System.Runtime.InteropServices.DispId(746)>]
member this.SatelliteDLLs : string
Public ReadOnly Property SatelliteDLLs As String
属性值
一个字符串,其中包含以分号分隔的附属 Dll 的列表。
- 属性
示例
有关如何编译和运行此示例的信息,请参阅 如何:编译项目模型扩展性的示例代码 。
' Add a reference to Microsoft.VisualStudio.VCProjectEngine and have a
' Visual C++ project loaded before running this example.
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine
Public Module Module1
Sub Test()
Dim prj As VCProject
Dim cfgs As IVCCollection
Dim cfg As VCConfiguration
Dim MyDbg As VCDebugSettings
prj = DTE.Solution.Projects.Item(1).Object
cfgs = prj.Configurations
cfg = cfgs.Item(1)
MsgBox("Satellite DLLs: " & cfg.SatelliteDLLs)
End Sub
End Module