Freigeben über


VCProjectConfigurationProperties.ConfigurationType-Eigenschaft

Ruft den Typ der Ausgabe ab, der bei dieser Konfiguration generiert wird, und legt diesen fest.

Namespace:  Microsoft.VisualStudio.VCProject
Assembly:  Microsoft.VisualStudio.VCProject (in Microsoft.VisualStudio.VCProject.dll)

Syntax

'Declaration
Property ConfigurationType As ConfigurationTypes
ConfigurationTypes ConfigurationType { get; set; }
property ConfigurationTypes ConfigurationType {
    ConfigurationTypes get ();
    void set (ConfigurationTypes value);
}
abstract ConfigurationType : ConfigurationTypes with get, set
function get ConfigurationType () : ConfigurationTypes
function set ConfigurationType (value : ConfigurationTypes)

Eigenschaftswert

Typ: Microsoft.VisualStudio.VCProject.ConfigurationTypes
Eine ConfigurationTypes-Enumeration.

Hinweise

Verwenden Sie die ConfigurationTypes-Enumeration legen Sie den Wert dieser Eigenschaft ändern.

Beispiele

[Visual Basic]

Im folgenden Beispielcode wird die ConfigurationType-Eigenschaft in der Entwicklungsumgebung:

' add reference to Microsoft.VisualStudio.VCProjectEngine
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine

Public Module Module1
    Sub Test()
        Dim prj As VCProject
        Dim cfgs As IVCCollection
        Dim cfg As VCConfiguration
        prj = DTE.Solution.Projects.Item(1).Object
        cfgs = prj.Configurations
        cfg = cfgs.Item(1)
        cfg.ConfigurationType = ConfigurationTypes.typeStaticLibrary
    End Sub
End Module

Weitere Informationen zum Kompilieren und Ausführen dieses Beispiels finden Sie unter Gewusst wie: Kompilieren von Beispielcode für die Erweiterbarkeit von Projektmodellen.

.NET Framework-Sicherheit

Siehe auch

Referenz

VCProjectConfigurationProperties Schnittstelle

Microsoft.VisualStudio.VCProject-Namespace