aboutsummaryrefslogtreecommitdiff
path: root/aoc-2022-dotnet/Day25/Day25.fsproj
diff options
context:
space:
mode:
authorTomasz Chojnacki <tomaszchojnacki2001@gmail.com>2022-12-28 22:13:42 +0100
committerTomasz Chojnacki <tomaszchojnacki2001@gmail.com>2022-12-28 22:13:42 +0100
commitee408551b5327b196cd94bb1b857bcdc9f8b10b1 (patch)
tree9d0509f88f09f16aeddfa2cc833c1e72ee19479b /aoc-2022-dotnet/Day25/Day25.fsproj
parentac81191905118139c5461ee552c1ee06e4f8544b (diff)
downloadgleam_aoc2020-ee408551b5327b196cd94bb1b857bcdc9f8b10b1.tar.gz
gleam_aoc2020-ee408551b5327b196cd94bb1b857bcdc9f8b10b1.zip
Finish day 25
Diffstat (limited to 'aoc-2022-dotnet/Day25/Day25.fsproj')
-rw-r--r--aoc-2022-dotnet/Day25/Day25.fsproj18
1 files changed, 18 insertions, 0 deletions
diff --git a/aoc-2022-dotnet/Day25/Day25.fsproj b/aoc-2022-dotnet/Day25/Day25.fsproj
new file mode 100644
index 0000000..e337a41
--- /dev/null
+++ b/aoc-2022-dotnet/Day25/Day25.fsproj
@@ -0,0 +1,18 @@
+<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>
+
+</Project>