我可以在visual studio中更改网站的警告设置吗?

时间:2009-02-13 11:56:32

标签: c# asp.net visual-studio web warnings

我可以将警告设置为错误,并为我的解决方案中的所有项目排除某些警告,但网站(非网络应用程序)除外。

无论如何要将“警告错误”作为网站错误打开,并且是否有关闭整个网站或子文件夹的某些错误?

更新我正在使用带有C#的ASP.Net

2 个答案:

答案 0 :(得分:3)

我知道的唯一方法是直接在您的configuration元素下将其添加到您的web.config中:

<system.codedom>
    <compilers>
        <compiler
           language="c#;cs;csharp" extension=".cs"
           compilerOptions="/warnaserror"
           type="Microsoft.CSharp.CSharpCodeProvider,
         System, Version=2.0.0.0, Culture=neutral,
         PublicKeyToken=b77a5c561934e089" />
    </compilers>
</system.codedom>

Here is where I originally found this trick.

答案 1 :(得分:1)

我刚才问过这个问题,关于如何在Visual Studio中禁用某些警告 - 它专门用于VB.NET,但我认为你可以将它应用于C#。

how-to-disable-warnings-in-visual-studio-for-a-visual-basic-web-deployment-project