我正在编码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。
答案 0 :(得分:0)
我找到了一个解决方案:显然,每个项目(csproj文件)中都需要引用.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