someone also needs to update the batch files themselves, and the README

This commit is contained in:
zeromus 2020-09-16 06:50:59 -04:00
parent 3c8a1a5286
commit 714fd0fddc
5 changed files with 9 additions and 9 deletions

View File

@ -15,12 +15,12 @@ cd %WORKDIR%
git clone --depth=1 --single-branch --branch master http://github.com/TASVideos/BizHawk.git .
rem use updated build scripts
copy /y ..\BuildAndPackage_Release.bat dist
copy /y ..\BuildAndPackage.bat dist
copy /y ..\QuickTestBuildAndPackage_Release.bat dist
copy /y ..\QuickTestBuildAndPackage.bat dist
rem build the branch
cd dist
call BuildAndPackage_Release.bat
call QuickTestBuildAndPackage_Release.bat
rem make sure we save the output!
move BizHawk.zip ..\..\%OUTFILE%

View File

@ -15,12 +15,12 @@ cd %WORKDIR%
git clone --depth=1 --single-branch --branch release http://github.com/TASVideos/BizHawk.git .
rem use updated build scripts
copy /y ..\BuildAndPackage_Release.bat dist
copy /y ..\BuildAndPackage.bat dist
copy /y ..\QuickTestBuildAndPackage_Release.bat dist
copy /y ..\QuickTestBuildAndPackage.bat dist
rem build the branch
cd dist
call BuildAndPackage_Release.bat
call QuickTestBuildAndPackage_Release.bat
rem make sure we save the output!
move BizHawk.zip ..\..\%OUTFILE%

View File

@ -1,2 +1,2 @@
start fart "..\Version\VersionInfo.cs" "DeveloperBuild = false" "DeveloperBuild = true"
call BuildAndPackage BizHawk-Developer.zip
call QuickTestBuildAndPackage BizHawk-Developer.zip

View File

@ -1,3 +1,3 @@
start fart "..\Version\VersionInfo.cs" "DeveloperBuild = true" "DeveloperBuild = false"
call BuildAndPackage.bat
call QuickTestBuildAndPackage.bat
start fart "..\Version\VersionInfo.cs" "DeveloperBuild = false" "DeveloperBuild = true"

View File

@ -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
```
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).