Skip to content

Instantly share code, notes, and snippets.

@Dragod
Last active July 24, 2019 09:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Dragod/449ca6f9c6782d90966f1949285501d3 to your computer and use it in GitHub Desktop.
Save Dragod/449ca6f9c6782d90966f1949285501d3 to your computer and use it in GitHub Desktop.
Build unity with msbuild tools 2019, run IISExpress and open localhost on firefox. If it doesn't work please check folders path inside the batch. Visual Studio is not required to run this.
@ECHO OFF
CD /D "C:\gitrepos\sd-unity-4-0"
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\Tools\VsDevCmd.bat"
msbuild
start firefox -devTools http://localhost:49797/index.aspx
CD /D "C:\Program Files (x86)\IIS Express"
iisexpress /path:C:\gitrepos\sd-unity-4-0\ /port:49797 /clr:v4.0
CMD
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment