Właściwość VCCLCompilerTool.UndefinePreprocessorDefinitions —
Pobiera lub ustawia wartość, która określa, że undefines jeden lub więcej preprocesora.UndefinePreprocessorDefinitionsudostępnia funkcję kompilatora C++ /U, /u (Usuń definicje symboli) opcji i kompilator MIDL Strony właściwości MIDL: zaawansowane opcji.
Przestrzeń nazw: Microsoft.VisualStudio.VCProjectEngine
Zestaw: Microsoft.VisualStudio.VCProjectEngine (w Microsoft.VisualStudio.VCProjectEngine.dll)
Składnia
'Deklaracja
Property UndefinePreprocessorDefinitions As String
string UndefinePreprocessorDefinitions { get; set; }
property String^ UndefinePreprocessorDefinitions {
String^ get ();
void set (String^ value);
}
abstract UndefinePreprocessorDefinitions : string with get, set
function get UndefinePreprocessorDefinitions () : String
function set UndefinePreprocessorDefinitions (value : String)
Wartość właściwości
Typ: String
Ciąg, który określa jeden lub więcej preprocesora undefines.
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 UndefinePreprocessorDefinitions 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 oldUndefs As String
prj = DTE.Solution.Projects.Item(1).Object
cfgs = prj.Configurations
cfg = cfgs.Item(1)
tool = cfg.Tools("VCCLCompilerTool")
oldUndefs = tool.UndefinePreprocessorDefinitions
tool.UndefinePreprocessorDefinitions = "_DEBUG;" + oldUndefs
MsgBox(tool.UndefinePreprocessorDefinitions)
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.