OpenGLTest/OpenGLTest/OpenGLTest - Backup.csproj

15 lines
493 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net7.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
<Exec Command="xcopy &quot;$(SolutionDir)$(Platform)\$(Configuration)\YourCppDll.dll&quot; &quot;$(TargetDir)&quot; /Y" />
</Target>
</Project>