Enable codestyle analyzers in VS (#39350)

While the linked issue remains unresolved, the GA build of VS 2022 no longer produces errors when using analyzers from the 6.0 (or newer) SDK.
This commit is contained in:
Pranav K 2022-01-06 11:10:37 -08:00 коммит произвёл GitHub
Родитель 99f3f3291b
Коммит aaf1fc6ca9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 0 добавлений и 3 удалений

Просмотреть файл

@ -35,9 +35,6 @@
<NoWarn Condition="'$(TargetFrameworks)' != ''">$(NoWarn);IDE0005</NoWarn>
<!-- Enable .NET code style analysis during build for src projects. -->
<!-- Workaround bug where turning this on produces warnings in VS -->
<!-- See https://github.com/dotnet/roslyn/issues/54867 for more info. -->
<EnforceCodeStyleInBuild Condition="'$(BuildingInsideVisualStudio)' == 'true' AND $([MSBuild]::VersionGreaterThanOrEquals('$(VisualStudioVersion)', '17.0'))">false</EnforceCodeStyleInBuild>
<EnforceCodeStyleInBuild Condition="'$(EnforceCodeStyleInBuild)' == ''">true</EnforceCodeStyleInBuild>
<!-- Enable trimming annotation validation in DI. See https://github.com/dotnet/runtime/blob/main/docs/workflow/trimming/feature-switches.md -->