diff options
Diffstat (limited to 'aoc-2022-dotnet/Day06/Day06.fsproj')
-rw-r--r-- | aoc-2022-dotnet/Day06/Day06.fsproj | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/aoc-2022-dotnet/Day06/Day06.fsproj b/aoc-2022-dotnet/Day06/Day06.fsproj new file mode 100644 index 0000000..249287d --- /dev/null +++ b/aoc-2022-dotnet/Day06/Day06.fsproj @@ -0,0 +1,15 @@ +<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> + +</Project> |