dotnet-installer/scripts/dotnet-restore.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
81 B
Batchfile

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