-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathDirectory.Build.Test.props
More file actions
29 lines (27 loc) · 1.11 KB
/
Directory.Build.Test.props
File metadata and controls
29 lines (27 loc) · 1.11 KB
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
<Project>
<PropertyGroup>
<IsTestProject>true</IsTestProject>
<Nullable>disable</Nullable>
<IsPackable>false</IsPackable>
<NoWarn>$(NoWarn);S6562</NoWarn>
</PropertyGroup>
<ItemGroup>
<Using Include="AwesomeAssertions"/>
<Using Include="NUnit.Framework"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="coverlet.collector">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="AwesomeAssertions.Analyzers">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="AwesomeAssertions"/>
<PackageReference Include="Newtonsoft.Json"/>
<PackageReference Include="nunit"/>
<PackageReference Include="NUnit3TestAdapter"/>
<PackageReference Include="Microsoft.NET.Test.Sdk"/>
</ItemGroup>
</Project>