From 714fd0fddc692ba01073e9f9783c6312c717fada Mon Sep 17 00:00:00 2001 From: zeromus Date: Wed, 16 Sep 2020 06:50:59 -0400 Subject: [PATCH] someone also needs to update the batch files themselves, and the README --- Dist/ForPublishingBuildGithubMasterBranch.bat | 6 +++--- Dist/ForPublishingBuildGithubReleaseBranch.bat | 6 +++--- Dist/QuickTestBuildAndPackage_Developer.bat | 2 +- Dist/QuickTestBuildAndPackage_Release.bat | 2 +- README.md | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Dist/ForPublishingBuildGithubMasterBranch.bat b/Dist/ForPublishingBuildGithubMasterBranch.bat index a6c60620f4..f6a0133528 100644 --- a/Dist/ForPublishingBuildGithubMasterBranch.bat +++ b/Dist/ForPublishingBuildGithubMasterBranch.bat @@ -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% diff --git a/Dist/ForPublishingBuildGithubReleaseBranch.bat b/Dist/ForPublishingBuildGithubReleaseBranch.bat index 4bf64cf3c8..60c7d229a0 100644 --- a/Dist/ForPublishingBuildGithubReleaseBranch.bat +++ b/Dist/ForPublishingBuildGithubReleaseBranch.bat @@ -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% diff --git a/Dist/QuickTestBuildAndPackage_Developer.bat b/Dist/QuickTestBuildAndPackage_Developer.bat index f992e23f0c..d1de6ef2eb 100644 --- a/Dist/QuickTestBuildAndPackage_Developer.bat +++ b/Dist/QuickTestBuildAndPackage_Developer.bat @@ -1,2 +1,2 @@ start fart "..\Version\VersionInfo.cs" "DeveloperBuild = false" "DeveloperBuild = true" -call BuildAndPackage BizHawk-Developer.zip +call QuickTestBuildAndPackage BizHawk-Developer.zip diff --git a/Dist/QuickTestBuildAndPackage_Release.bat b/Dist/QuickTestBuildAndPackage_Release.bat index d41a6c47e1..b5ac448dcc 100644 --- a/Dist/QuickTestBuildAndPackage_Release.bat +++ b/Dist/QuickTestBuildAndPackage_Release.bat @@ -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" diff --git a/README.md b/README.md index 7b4fac9937..6829efb081 100644 --- a/README.md +++ b/README.md @@ -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).