chore(*): Add day creation tool

This commit is contained in:
Josh Creek
2022-10-13 09:25:24 +01:00
parent 75671d13e1
commit e2a3f2417a
5 changed files with 101 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Compile Remove="DayX.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="DayX.cs">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>