24 lines
651 B
XML
24 lines
651 B
XML
![]() |
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<OutputType>WinExe</OutputType>
|
|||
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|||
|
<Nullable>disable</Nullable>
|
|||
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
<UseWPF>true</UseWPF>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="Extended.Wpf.Toolkit" Version="4.6.0" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\RecodeItLib\ReCodeItLib.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|||
|
<Exec Command="xcopy "$(SolutionDir)Templates" "$(TargetDir)Data" /E /I /Y" />
|
|||
|
</Target>
|
|||
|
|
|||
|
</Project>
|