diff options
author | Tomasz Chojnacki <tomaszchojnacki2001@gmail.com> | 2022-12-27 23:15:58 +0100 |
---|---|---|
committer | Tomasz Chojnacki <tomaszchojnacki2001@gmail.com> | 2022-12-27 23:15:58 +0100 |
commit | 4e6b4839f632cbd843da0f5fe39db00edc16f94c (patch) | |
tree | 4d3805a369cd945b56ae2b14dbea5e1a3c45ba62 /aoc-2022-dotnet/Day20/Day20.fsproj | |
parent | 1d5b4ebc2683a4bc085fd0cfd23da524f32334d0 (diff) | |
download | gleam_aoc2020-4e6b4839f632cbd843da0f5fe39db00edc16f94c.tar.gz gleam_aoc2020-4e6b4839f632cbd843da0f5fe39db00edc16f94c.zip |
Finish day 20
Diffstat (limited to 'aoc-2022-dotnet/Day20/Day20.fsproj')
-rw-r--r-- | aoc-2022-dotnet/Day20/Day20.fsproj | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/aoc-2022-dotnet/Day20/Day20.fsproj b/aoc-2022-dotnet/Day20/Day20.fsproj new file mode 100644 index 0000000..795d59c --- /dev/null +++ b/aoc-2022-dotnet/Day20/Day20.fsproj @@ -0,0 +1,26 @@ +<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> + + <ItemGroup> + <ProjectReference Include="..\Common\Common.fsproj" /> + </ItemGroup> + +</Project> |