AssemblyTool/AssemblyRemapperGUI/RemapperGUI.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>
<ItemGroup>
2024-06-14 18:07:01 -04:00
<ProjectReference Include="..\AssemblyRemapper\MapLib.csproj" />
2024-06-13 18:09:31 -04:00
</ItemGroup>
2024-06-13 18:15:52 -04:00
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="xcopy &quot;$(SolutionDir)Templates&quot; &quot;$(TargetDir)Data&quot; /E /I /Y" />
</Target>
2024-06-13 18:09:31 -04:00
</Project>