Use batch/shell script to copy DiscoHawk to output as well
This commit is contained in:
parent
50461f17ee
commit
73231a59a9
|
@ -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
|
|
@ -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
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue