dotnet-installer/scripts/dnxhost/dotnet-compile.cmd
2015-10-15 12:18:45 -07:00

11 lines
201 B
Batchfile

@Echo OFF
SETLOCAL
SET ERRORLEVEL=
REM makes testing easier for now
set PATH=%PATH%;%~dp0
dnx %DOTNET_OPTIONS% -p %~dp0..\..\src\Microsoft.DotNet.Tools.Compiler run %*
exit /b %ERRORLEVEL%
ENDLOCAL