Welcome to mirror list, hosted at ThFree Co, Russian Federation.

build.cmd - github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fd4aba34c4c92ce0366b1fda932b936a21fd0ee7 (plain)
1
2
3
4
5
6
7
8
9
@echo off
setlocal

set _args=%*
if "%~1"=="-?" set _args=-help
if "%~1"=="/?" set _args=-help

powershell -ExecutionPolicy ByPass -NoProfile -Command "& '%~dp0eng\build.ps1'" %_args%
exit /b %ERRORLEVEL%