Właściwość VCCLCompilerTool.PreprocessorDefinitions —
Pobiera lub ustawia definiuje jeden lub więcej preprocesora.PreprocessorDefinitionsudostępnia funkcję kompilatora /D (Definicje preprocesora) opcji, kompilator MIDL Strony właściwości MIDL: ogólne opcji i kompilator zasobów Strony właściwości zasobów opcji.
Przestrzeń nazw: Microsoft.VisualStudio.VCProjectEngine
Zestaw: Microsoft.VisualStudio.VCProjectEngine (w Microsoft.VisualStudio.VCProjectEngine.dll)
Składnia
'Deklaracja
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)
Wartość właściwości
Typ: String
Określa jeden lub więcej preprocesora.
Przykłady
Zobacz Porady: kompilowanie przykładowego kodu dla rozszerzalności modelu projektów informacje na temat skompilować i uruchomić ten przykład.
Poniższy przykład modyfikuje kompilator PreprocessorDefinitions właściwość w zintegrowane środowisko programistyczne (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
Zabezpieczenia programu .NET Framework
- Pełne zaufanie do bezpośredniego wywołującego. Tego elementu członkowskiego nie można używać w kodzie częściowo zaufanym. Aby uzyskać więcej informacji, zobacz Używanie bibliotek pochodzących z częściowo zaufanego kodu.