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

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordotnet-bot <dotnet-bot@microsoft.com>2019-11-14 03:26:19 +0300
committerdotnet-bot <dotnet-bot@microsoft.com>2019-11-14 03:26:19 +0300
commit381372f6f12884caee5bb90f52649040827e19cc (patch)
treeb8566ffcc1c4c2daa3cdbf1eebbfb8ac14a7718c /build.cmd
Initial runtime repository structure
Diffstat (limited to 'build.cmd')
-rw-r--r--build.cmd15
1 files changed, 15 insertions, 0 deletions
diff --git a/build.cmd b/build.cmd
new file mode 100644
index 00000000000..d8a22ef464f
--- /dev/null
+++ b/build.cmd
@@ -0,0 +1,15 @@
+@echo off
+
+if "%~1"=="-h" goto help
+if "%~1"=="-help" goto help
+if "%~1"=="-?" goto help
+if "%~1"=="/?" goto help
+
+powershell -ExecutionPolicy ByPass -NoProfile -File "%~dp0eng\build.ps1" %*
+goto end
+
+:help
+powershell -ExecutionPolicy ByPass -NoProfile -Command "& { . '%~dp0eng\build.ps1'; Get-Help }"
+
+:end
+exit /b %ERRORLEVEL%