-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.test.props
35 lines (27 loc) · 1.03 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
<Project>
<Import Project="./common.props" />
<!-- Target frameworks -->
<PropertyGroup>
<TargetFrameworks>net8.0</TargetFrameworks>
</PropertyGroup>
<!-- Packages for test support -->
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.*" />
<PackageReference Include="xunit" Version="2.*" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.*" />
<PackageReference Include="FluentAssertions" Version="6.*" />
</ItemGroup>
<ItemGroup>
<!-- Code coverage support -->
<PackageReference Include="coverlet.msbuild" Version="6.*">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="ReportGenerator" Version="5.3.*" />
</ItemGroup>
<!-- Assembly and NuGet package attributes -->
<PropertyGroup>
<!-- Exclude assemblies from packing for NuGet -->
<IsPackable>false</IsPackable>
</PropertyGroup>
</Project>