aboutsummaryrefslogtreecommitdiff
path: root/aoc-2022-dotnet/Day15/Day15.fsproj
diff options
context:
space:
mode:
Diffstat (limited to 'aoc-2022-dotnet/Day15/Day15.fsproj')
-rw-r--r--aoc-2022-dotnet/Day15/Day15.fsproj27
1 files changed, 27 insertions, 0 deletions
diff --git a/aoc-2022-dotnet/Day15/Day15.fsproj b/aoc-2022-dotnet/Day15/Day15.fsproj
new file mode 100644
index 0000000..ede5b83
--- /dev/null
+++ b/aoc-2022-dotnet/Day15/Day15.fsproj
@@ -0,0 +1,27 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>net7.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Content Include="test.txt">
+ <CopyToOutputDirectory>Always</CopyToOutputDirectory>
+ </Content>
+ <Content Include="input.txt">
+ <CopyToOutputDirectory>Always</CopyToOutputDirectory>
+ </Content>
+ <Compile Include="Program.fs" />
+ </ItemGroup>
+
+ <ItemGroup>
+ <PackageReference Include="FParsec" Version="1.1.1" />
+ <PackageReference Include="FSharp.Collections.ParallelSeq" Version="1.2.0" />
+ </ItemGroup>
+
+ <ItemGroup>
+ <ProjectReference Include="..\Common\Common.fsproj" />
+ </ItemGroup>
+
+</Project>