-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathHolzShots.Core.Tests.csproj
51 lines (38 loc) · 1.74 KB
/
HolzShots.Core.Tests.csproj
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
49
50
51
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\Common.props" />
<PropertyGroup>
<RootNamespace>HolzShots.Tests</RootNamespace>
<TargetFramework>net8.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<IsPackable>false</IsPackable>
<AssemblyTitle>HolzShots.Core.Tests</AssemblyTitle>
<Product>HolzShots.Core.Tests</Product>
<Description>HolzShots Core Component Tests</Description>
</PropertyGroup>
<ItemGroup>
<None Include="Files\*">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\HolzShots.Core\HolzShots.Core.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="xunit" Version="2.8.1" />
<PackageReference Include="xunit.runner.console" Version="2.8.1" PrivateAssets="all" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="6.0.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<Reference Include="System.ComponentModel.Composition" />
<PackageReference Include="Microsoft.NETCore.Platforms" Version="7.0.4" />
<PackageReference Include="MSTest.TestAdapter" Version="3.3.1" />
<PackageReference Include="MSTest.TestFramework" Version="3.4.0" />
<PackageReference Include="Semver" Version="2.3.0" />
</ItemGroup>
</Project>