Use batch/shell script to copy DiscoHawk to output as well

This commit is contained in:
YoshiRulz 2020-05-04 05:24:35 +10:00
parent 50461f17ee
commit 73231a59a9
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
3 changed files with 19 additions and 1 deletions

View File

@ -0,0 +1,9 @@
CHDIR "%~dp0\.."
FOR /D %%D IN (src\BizHawk.Client.DiscoHawk\bin\*) DO (
ROBOCOPY %%D output
RENAME output\BizHawk.Client.DiscoHawk.exe DiscoHawk.exe
RENAME output\BizHawk.Client.DiscoHawk.exe.config DiscoHawk.exe.config
goto end
)
:end

View File

@ -0,0 +1,5 @@
#!/bin/sh
cd "$(dirname "$0")/.."
cd src/BizHawk.Client.DiscoHawk/bin && for d in *; do
cp -f $d/* ../../../output && cd ../../../output && mv BizHawk.Client.DiscoHawk.exe DiscoHawk.exe && mv BizHawk.Client.DiscoHawk.exe.config DiscoHawk.exe.config && exit 0
done

View File

@ -3,7 +3,7 @@
<PropertyGroup>
<ApplicationIcon>discohawk.ico</ApplicationIcon>
<DefineConstants>$(DefineConstants);WINDOWS</DefineConstants>
<OutputPath>$(ProjectDir)../../output</OutputPath>
<OutputPath>$(ProjectDir)bin</OutputPath>
<OutputType>Exe</OutputType>
<TargetFramework>net48</TargetFramework>
</PropertyGroup>
@ -82,4 +82,8 @@
<EmbeddedResource Update="MainDiscoForm.resx" DependentUpon="MainDiscoForm.cs" SubType="Designer" />
-->
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command='"$(ProjectDir)..\..\Build\copy_discohawk_to_output.bat"' Condition=" '$(OS)' == 'Windows_NT' " />
<Exec Command='"$(ProjectDir)../../Build/copy_discohawk_to_output.sh"' Condition=" '$(OS)' != 'Windows_NT' " />
</Target>
</Project>