Condividi tramite


Proprietà VCCLCompilerTool.PreprocessorDefinitions

Ottiene o imposta una o più definizioni per il preprocessore. PreprocessorDefinitions espone la funzionalità dell'opzione /D (definizioni preprocessore) del compilatore, dell'opzione Pagine delle proprietà MIDL: Generale del compilatore MIDL e dell'opzione Pagine delle proprietà Risorse del compilatore di risorse.

Spazio dei nomi:  Microsoft.VisualStudio.VCProjectEngine
Assembly:  Microsoft.VisualStudio.VCProjectEngine (in Microsoft.VisualStudio.VCProjectEngine.dll)

Sintassi

'Dichiarazione
Property PreprocessorDefinitions As String
string PreprocessorDefinitions { get; set; }
property String^ PreprocessorDefinitions {
    String^ get ();
    void set (String^ value);
}
abstract PreprocessorDefinitions : string with get, set
function get PreprocessorDefinitions () : String 
function set PreprocessorDefinitions (value : String)

Valore proprietà

Tipo: String
Una o più definizioni per il preprocessore.

Esempi

Vedere Procedura: compilare codice di esempio per l'Extensibility del modello di progetto per informazioni su come compilare ed eseguire l'esempio.

Nell'esempio riportato di seguito la proprietà PreprocessorDefinitions del compilatore nell'ambiente di sviluppo integrato (IDE):

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

Public Module Module1
    Sub Test()
        Dim prj As VCProject
        Dim cfgs, tools As IVCCollection
        Dim cfg As VCConfiguration
        Dim tool As VCCLCompilerTool
        Dim oldDefs As String
        prj = DTE.Solution.Projects.Item(1).Object
        cfgs = prj.Configurations
        cfg = cfgs.Item(1)
        tool = cfg.Tools("VCCLCompilerTool")
        oldDefs = tool.PreprocessorDefinitions
        tool.PreprocessorDefinitions = "_TEST;" + oldDefs
        MsgBox(tool.PreprocessorDefinitions)
    End Sub
End Module

Sicurezza di .NET Framework

Vedere anche

Riferimenti

VCCLCompilerTool Interfaccia

Spazio dei nomi Microsoft.VisualStudio.VCProjectEngine