You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
|
|
|
|
<PackageReference Include="MSTest.TestAdapter" Version="2.2.3" />
|
|
|
|
<PackageReference Include="MSTest.TestFramework" Version="2.2.3" />
|
|
|
|
<PackageReference Include="coverlet.collector" Version="3.0.2" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\AOC2021\AOC2021.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<None Update="Input\Day1_input.txt">
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
<None Update="Input\Day1_test.txt">
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
<None Update="Input\Day2_input.txt">
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
<None Update="Input\Day2_test.txt">
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
<None Update="Input\Day3_input.txt">
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
<None Update="Input\Day3_test.txt">
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|