aboutsummaryrefslogtreecommitdiff
path: root/aoc-2022-dotnet/Day02/Day02.fsproj
diff options
context:
space:
mode:
authorTomasz Chojnacki <tomaszchojnacki2001@gmail.com>2022-12-02 18:43:39 +0100
committerTomasz Chojnacki <tomaszchojnacki2001@gmail.com>2022-12-02 18:43:39 +0100
commit9889c41f556eb134527909b7e0f29224786d33ec (patch)
tree8513d08b953d0c7eff6a8ef895317d36f4fd2991 /aoc-2022-dotnet/Day02/Day02.fsproj
parent0705a262782338deb9639304a798429e8792f5ec (diff)
downloadgleam_aoc2020-9889c41f556eb134527909b7e0f29224786d33ec.tar.gz
gleam_aoc2020-9889c41f556eb134527909b7e0f29224786d33ec.zip
Upload first two days of year 2022
Diffstat (limited to 'aoc-2022-dotnet/Day02/Day02.fsproj')
-rw-r--r--aoc-2022-dotnet/Day02/Day02.fsproj22
1 files changed, 22 insertions, 0 deletions
diff --git a/aoc-2022-dotnet/Day02/Day02.fsproj b/aoc-2022-dotnet/Day02/Day02.fsproj
new file mode 100644
index 0000000..0e98abc
--- /dev/null
+++ b/aoc-2022-dotnet/Day02/Day02.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>
+ <PackageReference Include="FSharpPlus" Version="1.3.2" />
+ </ItemGroup>
+
+</Project>