dotnet-installer/scripts/dotnet-compile.cmd
David Fowler 550dd7f062 Some small tweaks to make development easier
- Added scripts directory to path when using dotnet tool
- Added dotnet-compile and dotnet-restore
2015-10-06 03:10:26 -07:00

8 lines
No EOL
79 B
Batchfile

@Echo OFF
SETLOCAL
SET ERRORLEVEL=
dnu build %*
exit /b %ERRORLEVEL%
ENDLOCAL