-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathUnitTests.csproj
More file actions
48 lines (41 loc) · 1.79 KB
/
UnitTests.csproj
File metadata and controls
48 lines (41 loc) · 1.79 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<IsPackable>false</IsPackable>
<!-- CA1014: Unit tests don't need to express thier CLS complience -->
<!-- CS1591: Unit tests don't need xmldoc comments. -->
<NoWarn>$(NoWarn);CA1014;CS1591</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Remove="StrykerOutput\**" />
<Compile Remove="TestResults\**" />
<EmbeddedResource Remove="StrykerOutput\**" />
<EmbeddedResource Remove="TestResults\**" />
<None Remove="StrykerOutput\**" />
<None Remove="TestResults\**" />
</ItemGroup>
<ItemGroup>
<None Remove="coverage.cobertura.xml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="coverlet.msbuild" Version="6.0.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="FluentAssertions" Version="6.12.2" />
<PackageReference Include="GitHubActionsTestLogger" Version="2.4.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="6.0.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Verlite.Core\Verlite.Core.csproj" />
</ItemGroup>
</Project>