AssemblyTool/RecodeItGUI/ReCodeItGUI.csproj

19 lines
565 B
XML
Raw Normal View History

2024-06-13 18:09:31 -04:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2024-06-13 20:25:11 -04:00
<OutputType>Exe</OutputType>
2024-06-13 18:09:31 -04:00
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
2024-06-13 18:15:52 -04:00
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
2024-06-15 17:36:40 -04:00
<Exec Command="xcopy &quot;$(SolutionDir)Templates&quot; &quot;$(TargetDir)Data&quot; /E /I /Y" />
2024-06-13 18:15:52 -04:00
</Target>
2024-06-14 19:06:21 -04:00
<ItemGroup>
<ProjectReference Include="..\RecodeItLib\ReCodeItLib.csproj" />
</ItemGroup>
2024-06-13 18:09:31 -04:00
</Project>