generated from gjtiquia/dotnet-unit-test-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
UnitTests.csproj
35 lines (29 loc) · 1.55 KB
/
UnitTests.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<IsUnitTests>true</IsUnitTests>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.0" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.4.2" />
<PackageReference Include="NUnit.Analyzers" Version="3.6.1" />
<PackageReference Include="coverlet.collector" Version="3.2.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AdventOfCode\AdventOfCode.csproj" />
</ItemGroup>
<ItemGroup>
<Content Include=".\Day1\a.txt" Link="Day1\a.txt" CopyToOutputDirectory="PreserveNewest" />
<Content Include=".\Day1\b.txt" Link="Day1\b.txt" CopyToOutputDirectory="PreserveNewest" />
<Content Include=".\Day2\input.txt" Link="Day2\input.txt" CopyToOutputDirectory="PreserveNewest" />
<Content Include=".\Day3\a.txt" Link="Day3\a.txt" CopyToOutputDirectory="PreserveNewest" />
<Content Include=".\Day4\input.txt" Link="Day4\input.txt" CopyToOutputDirectory="PreserveNewest" />
<Content Include=".\Day5\input.txt" Link="Day5\input.txt" CopyToOutputDirectory="PreserveNewest" />
<Content Include=".\Day6\input.txt" Link="Day6\input.txt" CopyToOutputDirectory="PreserveNewest" />
<Content Include=".\Day7\input.txt" Link="Day7\input.txt" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
</Project>