-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaoc.fsproj
More file actions
64 lines (61 loc) · 2.32 KB
/
aoc.fsproj
File metadata and controls
64 lines (61 loc) · 2.32 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="Utilities.fs" />
<Compile Include="List.fs" />
<Compile Include="2019/IntCodeComputer.fs" />
<Compile Include="BinaryTree.fs" />
<Compile Include="2015/Day01.fs" />
<Compile Include="2015/Day02.fs" />
<Compile Include="2015/Day03.fs" />
<Compile Include="2015/Day04.fs" />
<Compile Include="2015/Day05.fs" />
<Compile Include="2015/Day07.fs" />
<Compile Include="2015/Day13.fs" />
<Compile Include="2017/Day03.fs" />
<Compile Include="2018/Day01.fs" />
<Compile Include="2018/Day02.fs" />
<Compile Include="2018/Day03.fs" />
<Compile Include="2018/Day04.fs" />
<Compile Include="2018/Day05.fs" />
<Compile Include="2018/Day06.fs" />
<Compile Include="2018/Day90.fs" />
<Compile Include="2019/Day01.fs" />
<Compile Include="2019/Day02.fs" />
<Compile Include="2019/Day03.fs" />
<Compile Include="2019/Day04.fs" />
<Compile Include="2019/Day05.fs" />
<Compile Include="2019/Day06.fs" />
<Compile Include="2019/Day07.fs" />
<Compile Include="2019/Day08.fs" />
<Compile Include="2019/Day09.fs" />
<Compile Include="2019/Day10.fs" />
<Compile Include="2020/Day01.fs" />
<Compile Include="2020/Day02.fs" />
<Compile Include="2020/Day03.fs" />
<Compile Include="2020/Day04.fs" />
<Compile Include="2020/Day05.fs" />
<Compile Include="2020/Day06.fs" />
<Compile Include="2020/Day07.fs" />
<Compile Include="2020/Day08.fs" />
<Compile Include="2020/Day09.fs" />
<Compile Include="2020/Day10.fs" />
<Compile Include="2020/Day11.fs" />
<Compile Include="2020/Day12.fs" />
<Compile Include="2020/Day13.fs" />
<Compile Include="2020/Day14.fs" />
<Compile Include="2020/Day15.fs" />
<Compile Include="2020/Day16.fs" />
<Compile Include="2021/Day01.fs" />
<Compile Include="2021/Day02.fs" />
<Compile Include="2021/Day03.fs" />
<Compile Include="2021/Day04.fs" />
<Compile Include="2021/Day05.fs" />
<Compile Include="2021/Day06.fs" />
<Compile Include="2021/Day07.fs" />
<Compile Include="Program.fs" />
</ItemGroup>
</Project>