VCCLCompilerTool.DisableSpecificWarnings 属性

定义

获取或设置禁用所需的警告编号,并将这些编号放在一个分号分隔的列表中的值。 DisableSpecificWarnings 公开编译器的 /w、/W0、/W1、/W2、/W3、/W4、/W1、/W2、/W3、/W4、/Wall、/wd、/we、/wo、/Wv、/wx (Warning Level) 选项的功能。

public:
 property System::String ^ DisableSpecificWarnings { System::String ^ get(); void set(System::String ^ value); };
public:
 property Platform::String ^ DisableSpecificWarnings { Platform::String ^ get(); void set(Platform::String ^ value); };
[System.Runtime.InteropServices.DispId(83)]
public string DisableSpecificWarnings { [System.Runtime.InteropServices.DispId(83)] get; [System.Runtime.InteropServices.DispId(83)] set; }
[<System.Runtime.InteropServices.DispId(83)>]
[<get: System.Runtime.InteropServices.DispId(83)>]
[<set: System.Runtime.InteropServices.DispId(83)>]
member this.DisableSpecificWarnings : string with get, set
Public Property DisableSpecificWarnings As String

属性值

String

一个禁用所需警告编号的值。

属性

示例

有关如何编译和运行此示例的信息,请参阅 如何:编译项目模型扩展性的示例代码

下面的示例在 DisableSpecificWarnings 集成开发环境 (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  
        prj = DTE.Solution.Projects.Item(1).Object  
        cfgs = prj.Configurations  
        cfg = cfgs.Item(1)  
        tool = cfg.Tools("VCCLCompilerTool")  
        tool.DisableSpecificWarnings = "4001,4002"  
    End Sub  
End Module  

适用于