-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathtest.props
More file actions
30 lines (27 loc) · 1 KB
/
test.props
File metadata and controls
30 lines (27 loc) · 1 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
30
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<NoWarn>$(NoWarn);1591</NoWarn>
<LangVersion>latest</LangVersion>
<DebugType>full</DebugType>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
<ImplicitUsings>true</ImplicitUsings>
<Nullable>enable</Nullable>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<NoWarn>$(NoWarn);NU1507</NoWarn>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<OutputType>exe</OutputType>
<!-- Enable Microsoft Testing Platform command line experience for code coverage support -->
<UseMicrosoftTestingPlatformRunner>true</UseMicrosoftTestingPlatformRunner>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Testing.Extensions.CodeCoverage" />
<PackageReference Include="Shouldly" />
<PackageReference Include="xunit.v3.core.mtp-v2" />
</ItemGroup>
<ItemGroup>
<Using Include="Shouldly"/>
<Using Include="Xunit"/>
</ItemGroup>
</Project>