mirror of https://github.com/ErsatzTV/ErsatzTV.git
Browse Source
* improve build time by only running analyzers explicitly
* don't exclude scanner from analyzers
* Revert "don't exclude scanner from analyzers"
This reverts commit d927f9850a.
* fix sed syntax for linux
pull/2689/head
10 changed files with 46 additions and 25 deletions
@ -0,0 +1,15 @@
@@ -0,0 +1,15 @@
|
||||
<Project> |
||||
<PropertyGroup> |
||||
<EnableThreadingAnalyzers Condition="'$(EnableThreadingAnalyzers)' == ''">false</EnableThreadingAnalyzers> |
||||
</PropertyGroup> |
||||
|
||||
<ItemGroup> |
||||
<PackageReference |
||||
Include="Microsoft.VisualStudio.Threading.Analyzers" |
||||
Version="17.14.15" |
||||
Condition="'$(EnableThreadingAnalyzers)' == 'true'"> |
||||
<PrivateAssets>all</PrivateAssets> |
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
||||
</PackageReference> |
||||
</ItemGroup> |
||||
</Project> |
||||
Loading…
Reference in new issue