aboutsummaryrefslogtreecommitdiff
path: root/aoc-2022-dotnet/AoC.Day.Template/AoC.Day.Template.fsproj
diff options
context:
space:
mode:
authorTomasz Chojnacki <tomaszchojnacki2001@gmail.com>2022-12-08 19:45:35 +0100
committerTomasz Chojnacki <tomaszchojnacki2001@gmail.com>2022-12-08 19:45:35 +0100
commit65844a7ff88870f1336ccc10ceaba3b4c3bc2a25 (patch)
tree3f7804ea0fe16079b290dbf4720e87c8bd5ee451 /aoc-2022-dotnet/AoC.Day.Template/AoC.Day.Template.fsproj
parent0557a772d6664339aecec85fefcbf034d82209cb (diff)
downloadgleam_aoc2020-65844a7ff88870f1336ccc10ceaba3b4c3bc2a25.tar.gz
gleam_aoc2020-65844a7ff88870f1336ccc10ceaba3b4c3bc2a25.zip
Setup project template and generate day 9 files
Diffstat (limited to 'aoc-2022-dotnet/AoC.Day.Template/AoC.Day.Template.fsproj')
-rw-r--r--aoc-2022-dotnet/AoC.Day.Template/AoC.Day.Template.fsproj18
1 files changed, 18 insertions, 0 deletions
diff --git a/aoc-2022-dotnet/AoC.Day.Template/AoC.Day.Template.fsproj b/aoc-2022-dotnet/AoC.Day.Template/AoC.Day.Template.fsproj
new file mode 100644
index 0000000..e337a41
--- /dev/null
+++ b/aoc-2022-dotnet/AoC.Day.Template/AoC.Day.Template.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>