Files
advent-of-code/AdventOfCode/DayCreator/DayCreator.csproj
T
2024-11-28 22:11:32 +00:00

22 lines
498 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
</PropertyGroup>
<ItemGroup>
<Compile Remove="DayX.cs"/>
</ItemGroup>
<ItemGroup>
<Content Include="DayX.cs">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>