C# 抑制出现在 Azure Build Pipelines 中的警告

C# Suppressed warnings appearing in Azure Build Pipelines

我在我的 .Net Core 项目中添加了 Stylecop.Analyzers nuget 包,我在我的项目中抑制了以下警告:

在我的 visual studio 本地出现 0 个错误和 0 个警告后,我的 azure 构建管道仍然显示这些警告,这是其中之一:

##[warning]CSC(0,0): Warning SA0001: XML comment analysis is disabled due to project configuration [D:\a\s\FooRoot\Services\FooService\FooProjectService.csproj]

目前构建管道没有失败,但我想要一个无警告的构建管道

编辑: 我的管道看起来像这样:

我假设您在 Azure 管道中使用 dotnet build 您可以使用 -nowarn 选项

抑制警告

在你这样的情况下 dotnet build -nowarn:SA1636