diff options
author | Tomasz Chojnacki <tomaszchojnacki2001@gmail.com> | 2023-01-02 20:49:51 +0100 |
---|---|---|
committer | Tomasz Chojnacki <tomaszchojnacki2001@gmail.com> | 2023-01-02 20:49:51 +0100 |
commit | 3818aa044af80968e55d5d6638583a236e39294e (patch) | |
tree | e07a705ffe81308ff3d98badfd4627d398bd4e16 /aoc-2022-dotnet/Day22/Day22.fsproj | |
parent | 806ca36af8773c71c6f4d2ac77fc35ac0aa3b5a0 (diff) | |
download | gleam_aoc2020-3818aa044af80968e55d5d6638583a236e39294e.tar.gz gleam_aoc2020-3818aa044af80968e55d5d6638583a236e39294e.zip |
Finish last exercise from 2022
Diffstat (limited to 'aoc-2022-dotnet/Day22/Day22.fsproj')
-rw-r--r-- | aoc-2022-dotnet/Day22/Day22.fsproj | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/aoc-2022-dotnet/Day22/Day22.fsproj b/aoc-2022-dotnet/Day22/Day22.fsproj new file mode 100644 index 0000000..e7e4a65 --- /dev/null +++ b/aoc-2022-dotnet/Day22/Day22.fsproj @@ -0,0 +1,19 @@ +<Project Sdk="Microsoft.NET.Sdk"> + + <PropertyGroup> + <OutputType>Exe</OutputType> + <TargetFramework>net7.0</TargetFramework> + </PropertyGroup> + + <ItemGroup> + <Content Include="input.txt"> + <CopyToOutputDirectory>Always</CopyToOutputDirectory> + </Content> + <Compile Include="Program.fs" /> + </ItemGroup> + + <ItemGroup> + <ProjectReference Include="..\Common\Common.fsproj" /> + </ItemGroup> + +</Project> |