mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
581 B
15 lines
581 B
<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>
|
|
|