550dd7f062
- Added scripts directory to path when using dotnet tool - Added dotnet-compile and dotnet-restore
11 lines
No EOL
186 B
Batchfile
11 lines
No EOL
186 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.Cli run %*
|
|
|
|
exit /b %ERRORLEVEL%
|
|
ENDLOCAL |