Compartilhar via


Propriedade VCProjectConfigurationProperties.ConfigurationType

Obtém e define o tipo de saída gerado por essa configuração.

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

Sintaxe

'Declaração
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)

Valor de propriedade

Tipo: Microsoft.VisualStudio.VCProject.ConfigurationTypes
A ConfigurationTypes enumeração.

Comentários

Use o ConfigurationTypes enumeração para alterar o valor dessa propriedade.

Exemplos

[Visual Basic]

O exemplo de código a seguir modifica a ConfigurationType propriedade no ambiente de desenvolvimento:

' 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

Consulte Como: compilar o código de exemplo para extensibilidade do modelo de projeto para obter informações sobre como compilar e executar esse exemplo.

Segurança do .NET Framework

Consulte também

Referência

VCProjectConfigurationProperties Interface

Namespace Microsoft.VisualStudio.VCProject