about summary refs log tree commit diff
path: root/aoc2021.test/aoc2021.test.csproj
diff options
context:
space:
mode:
Diffstat (limited to 'aoc2021.test/aoc2021.test.csproj')
-rw-r--r--aoc2021.test/aoc2021.test.csproj26
1 files changed, 26 insertions, 0 deletions
diff --git a/aoc2021.test/aoc2021.test.csproj b/aoc2021.test/aoc2021.test.csproj
new file mode 100644
index 0000000..fa31f2b
--- /dev/null
+++ b/aoc2021.test/aoc2021.test.csproj
@@ -0,0 +1,26 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+  <PropertyGroup>
+	<TargetFramework>net6.0</TargetFramework>
+	<ImplicitUsings>enable</ImplicitUsings>
+	<Nullable>enable</Nullable>
+	<IsPackable>false</IsPackable>
+  </PropertyGroup>
+
+  <ItemGroup>
+	<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
+	<PackageReference Include="MSTest.TestAdapter" Version="2.2.7" />
+	<PackageReference Include="MSTest.TestFramework" Version="2.2.7" />
+	<PackageReference Include="coverlet.collector" Version="3.1.0" />
+  </ItemGroup>
+
+  <ItemGroup>
+	<ProjectReference Include="..\aoc2021\aoc2021.csproj" />
+  </ItemGroup>
+
+  <ItemGroup>
+	<Using Include="Microsoft.VisualStudio.TestTools.UnitTesting"/>
+	<Using Include="System.Diagnostics"/>
+  </ItemGroup>
+
+</Project>