2020-01-29 06:06:50 +00:00
|
|
|
<Project>
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net48</TargetFramework>
|
|
|
|
</PropertyGroup>
|
2022-01-14 00:24:05 +00:00
|
|
|
<PropertyGroup Condition=" '$(BIZHAWK_DATA_HOME)' == '' ">
|
2023-03-16 00:44:48 +00:00
|
|
|
<BIZHAWK_DATA_HOME>$(MSBuildProjectDirectory)/../../output/</BIZHAWK_DATA_HOME>
|
2022-01-14 00:24:05 +00:00
|
|
|
</PropertyGroup>
|
2020-01-29 06:06:50 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<Reference Include="System.Windows.Forms" />
|
2024-02-12 22:09:22 +00:00
|
|
|
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" />
|
2024-04-23 18:14:52 +00:00
|
|
|
<Reference Include="BizHawk.Bizware.Graphics"
|
|
|
|
HintPath="$(MSBuildProjectDirectory)/../../output/dll/BizHawk.Bizware.Graphics.dll"
|
|
|
|
Private="true" />
|
2020-01-29 06:06:50 +00:00
|
|
|
<Reference Include="BizHawk.Client.Common"
|
2023-03-16 00:44:48 +00:00
|
|
|
HintPath="$(MSBuildProjectDirectory)/../../output/dll/BizHawk.Client.Common.dll"
|
2020-01-29 06:06:50 +00:00
|
|
|
Private="true" />
|
2020-04-12 07:26:07 +00:00
|
|
|
<Reference Include="BizHawk.Client.EmuHawk"
|
2023-03-16 00:44:48 +00:00
|
|
|
HintPath="$(MSBuildProjectDirectory)/../../output/EmuHawk.exe"
|
2020-04-12 07:26:07 +00:00
|
|
|
Private="true" />
|
2020-01-29 06:06:50 +00:00
|
|
|
<Reference Include="BizHawk.Common"
|
2023-03-16 00:44:48 +00:00
|
|
|
HintPath="$(MSBuildProjectDirectory)/../../output/dll/BizHawk.Common.dll"
|
2020-01-29 06:06:50 +00:00
|
|
|
Private="true" />
|
|
|
|
<Reference Include="BizHawk.Emulation.Common"
|
2023-03-16 00:44:48 +00:00
|
|
|
HintPath="$(MSBuildProjectDirectory)/../../output/dll/BizHawk.Emulation.Common.dll"
|
2020-01-29 06:06:50 +00:00
|
|
|
Private="true" />
|
|
|
|
<Reference Include="BizHawk.Emulation.Cores"
|
2023-03-16 00:44:48 +00:00
|
|
|
HintPath="$(MSBuildProjectDirectory)/../../output/dll/BizHawk.Emulation.Cores.dll"
|
2020-01-29 06:06:50 +00:00
|
|
|
Private="true" />
|
|
|
|
<Reference Include="BizHawk.Emulation.DiscSystem"
|
2023-03-16 00:44:48 +00:00
|
|
|
HintPath="$(MSBuildProjectDirectory)/../../output/dll/BizHawk.Emulation.DiscSystem.dll"
|
2020-01-29 06:06:50 +00:00
|
|
|
Private="true" />
|
2020-03-16 01:28:21 +00:00
|
|
|
<Reference Include="BizHawk.WinForms.Controls"
|
2023-03-16 00:44:48 +00:00
|
|
|
HintPath="$(MSBuildProjectDirectory)/../../output/dll/BizHawk.WinForms.Controls.dll"
|
2020-03-16 01:28:21 +00:00
|
|
|
Private="true" />
|
2020-01-29 06:06:50 +00:00
|
|
|
</ItemGroup>
|
2020-02-06 13:51:46 +00:00
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
2024-04-04 00:19:20 +00:00
|
|
|
<Copy SourceFiles="$(TargetPath)" DestinationFolder="$(BIZHAWK_DATA_HOME)ExternalTools" />
|
2022-01-14 00:24:05 +00:00
|
|
|
<Copy SourceFiles="@(NET48ExternalToolFormDependency)" DestinationFolder="$(BIZHAWK_DATA_HOME)ExternalTools" />
|
2020-02-06 13:51:46 +00:00
|
|
|
</Target>
|
2020-01-29 06:06:50 +00:00
|
|
|
</Project>
|