41 lines
1.8 KiB
XML
41 lines
1.8 KiB
XML
<Project>
|
|
<PropertyGroup>
|
|
<TargetFramework>net48</TargetFramework>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(BIZHAWK_DATA_HOME)' == '' ">
|
|
<BIZHAWK_DATA_HOME>$(MSBuildProjectDirectory)/../../output/</BIZHAWK_DATA_HOME>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="System.Windows.Forms" />
|
|
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" />
|
|
<Reference Include="BizHawk.Bizware.Graphics"
|
|
HintPath="$(MSBuildProjectDirectory)/../../output/dll/BizHawk.Bizware.Graphics.dll"
|
|
Private="true" />
|
|
<Reference Include="BizHawk.Client.Common"
|
|
HintPath="$(MSBuildProjectDirectory)/../../output/dll/BizHawk.Client.Common.dll"
|
|
Private="true" />
|
|
<Reference Include="BizHawk.Client.EmuHawk"
|
|
HintPath="$(MSBuildProjectDirectory)/../../output/EmuHawk.exe"
|
|
Private="true" />
|
|
<Reference Include="BizHawk.Common"
|
|
HintPath="$(MSBuildProjectDirectory)/../../output/dll/BizHawk.Common.dll"
|
|
Private="true" />
|
|
<Reference Include="BizHawk.Emulation.Common"
|
|
HintPath="$(MSBuildProjectDirectory)/../../output/dll/BizHawk.Emulation.Common.dll"
|
|
Private="true" />
|
|
<Reference Include="BizHawk.Emulation.Cores"
|
|
HintPath="$(MSBuildProjectDirectory)/../../output/dll/BizHawk.Emulation.Cores.dll"
|
|
Private="true" />
|
|
<Reference Include="BizHawk.Emulation.DiscSystem"
|
|
HintPath="$(MSBuildProjectDirectory)/../../output/dll/BizHawk.Emulation.DiscSystem.dll"
|
|
Private="true" />
|
|
<Reference Include="BizHawk.WinForms.Controls"
|
|
HintPath="$(MSBuildProjectDirectory)/../../output/dll/BizHawk.WinForms.Controls.dll"
|
|
Private="true" />
|
|
</ItemGroup>
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
<Copy SourceFiles="$(TargetPath)" DestinationFolder="$(BIZHAWK_DATA_HOME)ExternalTools" />
|
|
<Copy SourceFiles="@(NET48ExternalToolFormDependency)" DestinationFolder="$(BIZHAWK_DATA_HOME)ExternalTools" />
|
|
</Target>
|
|
</Project>
|