<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <Version>0.1.0</Version> <OutputType>Exe</OutputType> <TargetFramework>net8.0-windows</TargetFramework> <Nullable>enable</Nullable> <UseWindowsForms>true</UseWindowsForms> <ImplicitUsings>enable</ImplicitUsings> </PropertyGroup> <Target Name="PostBuild" AfterTargets="PostBuildEvent"> <Exec Command="xcopy "$(SolutionDir)Templates" "$(TargetDir)Data" /E /I /Y" /> </Target> <ItemGroup> <ProjectReference Include="..\RecodeItLib\ReCodeItLib.csproj" /> </ItemGroup> </Project>