-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdventOfCode2021.csproj
65 lines (60 loc) · 3.85 KB
/
AdventOfCode2021.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Day25\**" />
<EmbeddedResource Remove="Day25\**" />
<None Remove="Day25\**" />
</ItemGroup>
<ItemGroup>
<None Remove=".gitattributes" />
<None Remove=".gitignore" />
<None Remove="README.md" />
</ItemGroup>
<ItemGroup>
<None Update="Day01\input.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day02\input.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day03\input.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day04\input.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day05\input.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day06\input.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day07\example.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day07\input.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day08\example.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day08\input.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day09\example.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day09\input.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day10\example.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day10\input.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day11\example.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day11\input.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day12\example.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day12\input.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day13\example.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day13\input.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day14\example.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day14\input.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day15\example.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day15\input.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day16\example.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day16\input.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day17\example.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day17\input.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day18\example.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day18\input.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day18\example.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day19\input.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day20\example.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day20\input.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day21\example.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day21\input.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day22\example.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day22\input.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day23\example.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day23\input.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day24\example.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Day24\input.txt" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
</Project>