diff options
author | Tomasz Chojnacki <tomaszchojnacki2001@gmail.com> | 2022-12-21 11:45:04 +0100 |
---|---|---|
committer | Tomasz Chojnacki <tomaszchojnacki2001@gmail.com> | 2022-12-21 11:45:04 +0100 |
commit | 9e378a9f80260c2f729daaf83d8e74f7bad70b16 (patch) | |
tree | db61e67a7222cd0666ea7fe4976e2fded327599a /aoc-2022-dotnet/Day17/Day17.fsproj | |
parent | a8c844a12fa2d91410fda7b37f08c58f5be34ed9 (diff) | |
download | gleam_aoc2020-9e378a9f80260c2f729daaf83d8e74f7bad70b16.tar.gz gleam_aoc2020-9e378a9f80260c2f729daaf83d8e74f7bad70b16.zip |
Finish day 17
Diffstat (limited to 'aoc-2022-dotnet/Day17/Day17.fsproj')
-rw-r--r-- | aoc-2022-dotnet/Day17/Day17.fsproj | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/aoc-2022-dotnet/Day17/Day17.fsproj b/aoc-2022-dotnet/Day17/Day17.fsproj new file mode 100644 index 0000000..795d59c --- /dev/null +++ b/aoc-2022-dotnet/Day17/Day17.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> |