aboutsummaryrefslogtreecommitdiff
path: root/aoc-2022-dotnet/Day12/Day12.fsproj
diff options
context:
space:
mode:
authorTomasz Chojnacki <tomaszchojnacki2001@gmail.com>2022-12-13 16:38:41 +0100
committerTomasz Chojnacki <tomaszchojnacki2001@gmail.com>2022-12-13 16:38:41 +0100
commit6fc820cd0cb61a4bacda5f5b40c98dda850d75da (patch)
tree7d08b0adbf8c1b60be906cab3ee7b76767b6908e /aoc-2022-dotnet/Day12/Day12.fsproj
parenteb7cdaab9b9c13b3594e0abdbbff6f72f8cb4807 (diff)
downloadgleam_aoc2020-6fc820cd0cb61a4bacda5f5b40c98dda850d75da.tar.gz
gleam_aoc2020-6fc820cd0cb61a4bacda5f5b40c98dda850d75da.zip
Upload days 12 and 13
Diffstat (limited to 'aoc-2022-dotnet/Day12/Day12.fsproj')
-rw-r--r--aoc-2022-dotnet/Day12/Day12.fsproj22
1 files changed, 22 insertions, 0 deletions
diff --git a/aoc-2022-dotnet/Day12/Day12.fsproj b/aoc-2022-dotnet/Day12/Day12.fsproj
new file mode 100644
index 0000000..b9a3919
--- /dev/null
+++ b/aoc-2022-dotnet/Day12/Day12.fsproj
@@ -0,0 +1,22 @@
+<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>
+ <ProjectReference Include="..\Common\Common.fsproj" />
+ </ItemGroup>
+
+</Project>