Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign up Fetching contributors…

@ifnot defined _echo@echooff | |
setlocal | |
set"__ProjectDir=%~dp0" | |
:: Clear the 'Platform' env variable for this session, as it's a per-project setting within the build, and | |
:: misleading value (such as 'MCD' in HP PCs) may lead to build breakage (issue: #69). | |
setPlatform= | |
set__ProjectDir= | |
:: Don't resolve runtime, shared framework, or SDK from other locations to ensure build determinism | |
setDOTNET_MULTILEVEL_LOOKUP=0 | |
:: Disable first run since we do not need all ASP.NET packages restored. | |
setDOTNET_SKIP_FIRST_TIME_EXPERIENCE=1 | |
:: Restore the Tools directory | |
call %~dp0init-tools.cmd | |
ifNOT [%ERRORLEVEL%]==[0] ( | |
exit /b1 | |
) | |
pushd %~dp0 | |
echo Running: dotnet %* | |
call"%~dp0\.dotnet\dotnet.exe" %* | |
popd | |
ifNOT [%ERRORLEVEL%]==[0] ( | |
exit /b1 | |
) | |
exit /b0 |