VCConfiguration.SatelliteDLLs Eigenschaft

Definition

Ruft eine durch Semikolons getrennte Liste aller Satelliten-DLLs ab, die von dieser Konfiguration generiert werden.

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

Eigenschaftswert

String

Eine Zeichenfolge, die eine durch Semikolons getrennte Liste von Satelliten-DLLs enthält.

Attribute

Beispiele

Weitere Informationen zum Kompilieren und Ausführen dieses Beispiels finden Sie unter Gewusst wie: Kompilieren von Beispiel Code für die Erweiterbarkeit von Projekt Modellen .

' 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  

Gilt für