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  

Применяется к