我正在编码C#。我使用NCrunch在后台运行单元测试。我已经在CSPROJ文件中设置了(新的CSPROJ格式)。

我想将FxCop分析仪用作NuGet软件包:https://docs.microsoft.com/en-gb/visualstudio/code-quality/install-fxcop-analyzers?view=vs-2019

首次安装FxCop分析仪时,由于有很多警告,并且我有,所以我的代码无法构建。通过将警告添加到我的.editorconfig中,我已将一系列警告降级为“建议”级别:

dotnet_diagnostic.CA2100.severity = suggestion

现在可以在Visual Studio中构建。但是我的问题是NCrunch显然不读取.editorconfig文件。因此NCrunch无法构建解决方案,因为它会看到警告。

如何为NCrunch配置警告严重性级别?

我有NCrunch 3.26.0.4。

最佳答案

我找到了一个解决方案:显然,每个项目(csproj文件)中都需要引用.editorconfig。我将我的.editorconfig当作“解决方案项目”。所以我为每个项目都这样做了:

  • 在解决方案资源管理器中右键单击项目。
  • 选择添加->现有文件。
  • 选择.editorconfig文件。不要单击“添加”。
  • 单击“添加”旁边的箭头,然后选择“添加为链接”。

  • 对所有项目重复上述步骤,然后重新启动NCrunch引擎。现在NCrunch构建。

    感谢NCrunch论坛提供该解决方案:https://forum.ncrunch.net/yaf_postsm14118_Using-NCrunch--FxCop-Analyzers-and--warnings-as-errors---How-to-configure-warning-severity.aspx

    关于c# - 使用NCrunch,FxCop分析仪和 “warnings as errors” : How to configure warning severity in NCrunch?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58975760/

    10-09 04:11