mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
Added install-VS2019.bat.
This commit is contained in:
parent
70128bb09b
commit
2a60d3b378
1 changed files with 26 additions and 0 deletions
26
install-VS2019.bat
Normal file
26
install-VS2019.bat
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
@echo off
|
||||
|
||||
if not exist "%ProgramFiles(x86)%" (
|
||||
set "ProgramFiles(x86)=%ProgramFiles%"
|
||||
)
|
||||
|
||||
set "VSWhere=%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe"
|
||||
|
||||
:MSBuild
|
||||
echo Looking for MSBuild
|
||||
for /f "usebackq delims=" %%i in (`^""%VSWhere%" -latest -prerelease -version "[16.0,17.0)" -products * -requires "Microsoft.Component.MSBuild" -property "installationPath"^"`) do (
|
||||
set InstallDir=%%i
|
||||
)
|
||||
|
||||
set "MSBuild=%InstallDir%\MSBuild\Current\Bin\MSBuild.exe"
|
||||
|
||||
if not exist "%MSBuild%" (
|
||||
echo MSBuild not found. Please make sure Visual Studio 16.0+ is installed.
|
||||
pause
|
||||
goto:eof
|
||||
)
|
||||
|
||||
echo Building Builder.sln
|
||||
"%MSBuild%" Builder.sln /nologo /maxcpucount /nodeReuse:false /verbosity:minimal /t:Restore;Build
|
||||
|
||||
start "Cosmos Builder" "source\Cosmos.Build.Builder\bin\Debug\net471\Cosmos.Build.Builder.exe" "-VSPATH=%InstallDir%" %*
|
||||
Loading…
Reference in a new issue