2016-05-26 01:21:05 +03:00
|
|
|
@set project=..\test\Flurl.Test.NETCore\
|
|
|
|
|
2016-05-26 02:22:39 +03:00
|
|
|
@call dotnet --info
|
2016-05-26 01:21:05 +03:00
|
|
|
|
|
|
|
call dotnet restore --verbosity Error %project%
|
|
|
|
@if ERRORLEVEL 1 (
|
|
|
|
echo Error! Restoring dependicies failed.
|
|
|
|
exit /b 1
|
|
|
|
) else (
|
|
|
|
echo Restoring dependicies was successful.
|
|
|
|
)
|
|
|
|
|
2016-05-20 02:23:58 +03:00
|
|
|
call dotnet run -c Release -p %project%
|