VCConfiguration.SatelliteDLLs 属性

定义

获取此配置生成的所有附属 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

属性值

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  

适用于