-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommon.Test.props
36 lines (28 loc) · 1.33 KB
/
Common.Test.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<Project>
<PropertyGroup>
<SignAssembly>False</SignAssembly>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<!-- Configure static code analysis -->
<RunCodeAnalysis>false</RunCodeAnalysis>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisLevel>latest-Default</AnalysisLevel>
<IsPackable>false</IsPackable>
<!-- Disable source link support for test projects as they are not publishable. -->
<SourceLinkCreate>false</SourceLinkCreate>
<!--Prevents failing cross target NuGet package restores-->
<DisableImplicitNuGetFallbackFolder>true</DisableImplicitNuGetFallbackFolder>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="coverlet.collector" Version="6.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<GlobalAnalyzerConfigFiles Include="$(MSBuildThisFileDirectory)/AutoFixture.Tests.globalconfig" />
</ItemGroup>
</Project>