about summary refs log tree commit diff
path: root/aoc2021/aoc2021.csproj
blob: 395175ac01af683dbaab64d61099d15776eb8e7e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <OutputType>Exe</OutputType>
    <TargetFramework>net6.0</TargetFramework>
    <ImplicitUsings>enable</ImplicitUsings>
    <Nullable>enable</Nullable>
  </PropertyGroup>

  <ItemGroup>
    <None Update="input\*.in">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </None>
  </ItemGroup>

  <ItemGroup>
    <Using Include="System.Collections.Generic"/>
    <Using Include="System.Diagnostics"/>
    <Using Include="System.Reflection"/>
    <Using Include="System.Text"/>
    <Using Include="System.Text.RegularExpressions"/>
  </ItemGroup>

</Project>