DisableSpecificWarnings Property
Visual Studio .NET 2003
Disables the desired warning numbers; puts numbers in a semicolon delimited list. Exposes the functionality of the compiler's /wd option.
[Visual Basic .NET]
Public Property DisableSpecificWarnings() As String
[Visual Basic 6]
Property Get DisableSpecificWarnings() As String Property Let DisableSpecificWarnings( _ ByVal NewValue As String _ )
[C++]
HRESULT __stdcall get_DisableSpecificWarnings( /* [out, retval] */ BSTR* retVal ); HRESULT __stdcall put_DisableSpecificWarnings( /* [in] */ BSTR NewValue );
[C#]
public string DisableSpecificWarnings {get; set;}
[JScript .NET]
public function get DisableSpecificWarnings() : String public function set DisableSpecificWarnings( NewValue : String )
Example
The following sample code modifies the DisableSpecificWarnings property in the development environment:
' 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
See Samples for Project Model Extensibility for information on how to compile and run this sample.
See Also
Applies To: VCCLCompilerTool Object