2024-06-13 18:09:31 -04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2024-06-19 21:40:10 -04:00
|
|
|
|
<Version>0.1.0</Version>
|
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-08-09 21:55:31 +01:00
|
|
|
|
<Exec Command="xcopy "$(SolutionDir)\Assets\Templates" "$(TargetDir)Data" /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>
|