someone also needs to update the batch files themselves, and the README
This commit is contained in:
parent
3c8a1a5286
commit
714fd0fddc
|
@ -15,12 +15,12 @@ cd %WORKDIR%
|
||||||
git clone --depth=1 --single-branch --branch master http://github.com/TASVideos/BizHawk.git .
|
git clone --depth=1 --single-branch --branch master http://github.com/TASVideos/BizHawk.git .
|
||||||
|
|
||||||
rem use updated build scripts
|
rem use updated build scripts
|
||||||
copy /y ..\BuildAndPackage_Release.bat dist
|
copy /y ..\QuickTestBuildAndPackage_Release.bat dist
|
||||||
copy /y ..\BuildAndPackage.bat dist
|
copy /y ..\QuickTestBuildAndPackage.bat dist
|
||||||
|
|
||||||
rem build the branch
|
rem build the branch
|
||||||
cd dist
|
cd dist
|
||||||
call BuildAndPackage_Release.bat
|
call QuickTestBuildAndPackage_Release.bat
|
||||||
|
|
||||||
rem make sure we save the output!
|
rem make sure we save the output!
|
||||||
move BizHawk.zip ..\..\%OUTFILE%
|
move BizHawk.zip ..\..\%OUTFILE%
|
||||||
|
|
|
@ -15,12 +15,12 @@ cd %WORKDIR%
|
||||||
git clone --depth=1 --single-branch --branch release http://github.com/TASVideos/BizHawk.git .
|
git clone --depth=1 --single-branch --branch release http://github.com/TASVideos/BizHawk.git .
|
||||||
|
|
||||||
rem use updated build scripts
|
rem use updated build scripts
|
||||||
copy /y ..\BuildAndPackage_Release.bat dist
|
copy /y ..\QuickTestBuildAndPackage_Release.bat dist
|
||||||
copy /y ..\BuildAndPackage.bat dist
|
copy /y ..\QuickTestBuildAndPackage.bat dist
|
||||||
|
|
||||||
rem build the branch
|
rem build the branch
|
||||||
cd dist
|
cd dist
|
||||||
call BuildAndPackage_Release.bat
|
call QuickTestBuildAndPackage_Release.bat
|
||||||
|
|
||||||
rem make sure we save the output!
|
rem make sure we save the output!
|
||||||
move BizHawk.zip ..\..\%OUTFILE%
|
move BizHawk.zip ..\..\%OUTFILE%
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
start fart "..\Version\VersionInfo.cs" "DeveloperBuild = false" "DeveloperBuild = true"
|
start fart "..\Version\VersionInfo.cs" "DeveloperBuild = false" "DeveloperBuild = true"
|
||||||
call BuildAndPackage BizHawk-Developer.zip
|
call QuickTestBuildAndPackage BizHawk-Developer.zip
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
start fart "..\Version\VersionInfo.cs" "DeveloperBuild = true" "DeveloperBuild = false"
|
start fart "..\Version\VersionInfo.cs" "DeveloperBuild = true" "DeveloperBuild = false"
|
||||||
call BuildAndPackage.bat
|
call QuickTestBuildAndPackage.bat
|
||||||
start fart "..\Version\VersionInfo.cs" "DeveloperBuild = false" "DeveloperBuild = true"
|
start fart "..\Version\VersionInfo.cs" "DeveloperBuild = false" "DeveloperBuild = true"
|
||||||
|
|
|
@ -159,7 +159,7 @@ git clone https://github.com/TASVideos/BizHawk.git BizHawk_master
|
||||||
# or ssh: git clone git@github.com:TASVideos/BizHawk.git BizHawk_master
|
# or ssh: git clone git@github.com:TASVideos/BizHawk.git BizHawk_master
|
||||||
```
|
```
|
||||||
|
|
||||||
Once it's downloaded and extracted, go into the repo's `Dist` folder and run `BuildAndPackage_Release.bat`. This is the same process used by AppVeyor.
|
Once it's downloaded and extracted, go into the repo's `Dist` folder and run `QuickTestBuildAndPackage_Release.bat`. This is the same process used by AppVeyor.
|
||||||
|
|
||||||
For anything more complicated than just building, you'll need an IDE like [VS Community 2019](https://visualstudio.microsoft.com/vs/community), currently the best free C# IDE (you may prefer Rider, VS Code, or something else). To build with VS, open `BizHawk.sln` and use the toolbar to choose `Release | Any CPU | BizHawk.Client.EmuHawk` and click the Start button. See [*Compiling* at TASVideos](http://tasvideos.org/Bizhawk/Compiling.html) for more detailed instructions (warning: somewhat outdated).
|
For anything more complicated than just building, you'll need an IDE like [VS Community 2019](https://visualstudio.microsoft.com/vs/community), currently the best free C# IDE (you may prefer Rider, VS Code, or something else). To build with VS, open `BizHawk.sln` and use the toolbar to choose `Release | Any CPU | BizHawk.Client.EmuHawk` and click the Start button. See [*Compiling* at TASVideos](http://tasvideos.org/Bizhawk/Compiling.html) for more detailed instructions (warning: somewhat outdated).
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue