-
Notifications
You must be signed in to change notification settings - Fork 0
/
AdventOfCode.fsproj
25 lines (25 loc) · 964 Bytes
/
AdventOfCode.fsproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<LangVersion>preview</LangVersion> <!-- For F# 5.0 -->
</PropertyGroup>
<ItemGroup>
<Compile Include="src/Year2020Day1.fs" />
<Compile Include="src/Year2020Day2.fs" />
<Compile Include="src/Year2020Day3.fs" />
<Compile Include="src/Year2020Day4.fs" />
<Compile Include="src/Year2020Day5.fs" />
<Compile Include="src/Year2020Day6.fs" />
<Compile Include="src/Year2020Day7.fs" />
<Compile Include="src/Year2020Day8.fs" />
<Compile Include="src/Year2020Day9.fs" />
<Compile Include="src/Year2020Day10.fs" />
<Compile Include="src/Year2020Day11.fs" />
<Compile Include="src/Year2020Day12.fs" />
<Compile Include="src/Program.fs" />
<Content Include="inputs/*.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>