dotnet-installer/scripts/dotnet.cmd
David Fowler 92f20068e7 Execute the known commands
- Added dotnet.sh and dotnet.cmd for testing
- Still uses dnx and dnu for bootstrapping
2015-10-06 02:19:27 -07:00

8 lines
No EOL
130 B
Batchfile

@Echo OFF
SETLOCAL
SET ERRORLEVEL=
dnx %DOTNET_OPTIONS% -p %~dp0..\src\Microsoft.DotNet.Cli run %*
exit /b %ERRORLEVEL%
ENDLOCAL