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

发布于 2024-07-14 03:33:06 字数 160 浏览 6 评论 0原文

我可以将警告打开为错误,并排除解决方案中除网站(不是 Web 应用程序)之外的所有项目的某些警告。

是否有办法将“警告作为错误”打开为网站错误,是否有办法关闭整个网站或子文件夹的某些错误?

更新 我正在使用 ASP.Net 和 C#

I can turn on warnings as errors and exclude certain warnings for all the projects in my solution except for a website (not web application).

Is there anyway to turn on 'warnings as errors' as errors for websites and is there anyway to turn off certain errors for the whole website or sub folders?

Update I'm using ASP.Net with C#

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

旧夏天 2024-07-21 03:33:06

我知道的唯一方法是将其直接添加到您的 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>

这是我最初发现这个技巧的地方。

The only way I know of is to add this to your web.config directly under your configuration element:

<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.

画骨成沙 2024-07-21 03:33:06

我不久前问过这个问题,关于如何禁用 Visual Studio 中的某些警告 - 它是专门针对 VB.NET 的,但我认为您可以将其应用于 C#。

如何-在 Visual Basic Web 部署项目中禁用 Visual Studio 中的警告

I asked this question a while ago on how to disable certain warnings in Visual Studio - it was specifically for VB.NET but I think you could apply it C#.

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文