mirror of
https://github.com/Dev-Wiki/HarmonyDevTools.git
synced 2025-04-05 05:07:28 +08:00
22 lines
584 B
XML
22 lines
584 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<UseWPF>true</UseWPF>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="log4net">
|
|
<HintPath>..\libs\log4net.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
|
|
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
|
|
<Exec Command="xcopy "$(ProjectDir)..\toolchains" "$(TargetDir)toolchains" /E /I /Y" />
|
|
</Target>
|
|
|
|
</Project>
|