From 73231a59a959ab2ae15c34a32d21c593bb0f2b7b Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Mon, 4 May 2020 05:24:35 +1000 Subject: [PATCH] Use batch/shell script to copy DiscoHawk to output as well --- Build/copy_discohawk_to_output.bat | 9 +++++++++ Build/copy_discohawk_to_output.sh | 5 +++++ .../BizHawk.Client.DiscoHawk.csproj | 6 +++++- 3 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 Build/copy_discohawk_to_output.bat create mode 100755 Build/copy_discohawk_to_output.sh diff --git a/Build/copy_discohawk_to_output.bat b/Build/copy_discohawk_to_output.bat new file mode 100644 index 0000000000..dec5f2981a --- /dev/null +++ b/Build/copy_discohawk_to_output.bat @@ -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 diff --git a/Build/copy_discohawk_to_output.sh b/Build/copy_discohawk_to_output.sh new file mode 100755 index 0000000000..00512028e9 --- /dev/null +++ b/Build/copy_discohawk_to_output.sh @@ -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 diff --git a/src/BizHawk.Client.DiscoHawk/BizHawk.Client.DiscoHawk.csproj b/src/BizHawk.Client.DiscoHawk/BizHawk.Client.DiscoHawk.csproj index 3bec5120da..2296c2fedc 100644 --- a/src/BizHawk.Client.DiscoHawk/BizHawk.Client.DiscoHawk.csproj +++ b/src/BizHawk.Client.DiscoHawk/BizHawk.Client.DiscoHawk.csproj @@ -3,7 +3,7 @@ discohawk.ico $(DefineConstants);WINDOWS - $(ProjectDir)../../output + $(ProjectDir)bin Exe net48 @@ -82,4 +82,8 @@ --> + + + +