Skip to content

Commit

Permalink
Add dotnet restore packages to build script
Browse files Browse the repository at this point in the history
  • Loading branch information
Grzegorz Rychlik authored and Grzegorz Rychlik committed Mar 9, 2020
1 parent 304866c commit 5cdeebf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CreateBuild.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ if ""=="%~1" (

ECHO.
ECHO Building x64 binaries...
%BuildTool% /nologo /verbosity:quiet /consoleloggerparameters:summary "Src" "/t:GatewayConsoleExe;NodeRelayConsoleExe;NodeRelayDll;CebuLoader" "/p:Configuration=Release" "/p:Platform=x64" || GOTO :ERROR
%BuildTool% /nologo /verbosity:quiet /consoleloggerparameters:summary "Src" "/t:restore" "/t:GatewayConsoleExe;NodeRelayConsoleExe;NodeRelayDll;CebuLoader" "/p:Configuration=Release" "/p:Platform=x64" || GOTO :ERROR

ECHO.
ECHO Building x86 binaries...
%BuildTool% /nologo /verbosity:quiet /consoleloggerparameters:summary "Src" "/t:GatewayConsoleExe;NodeRelayConsoleExe;NodeRelayDll;CebuLoader" "/p:Configuration=Release" "/p:Platform=x86" || GOTO :ERROR
%BuildTool% /nologo /verbosity:quiet /consoleloggerparameters:summary "Src" "/t:restore" "/t:GatewayConsoleExe;NodeRelayConsoleExe;NodeRelayDll;CebuLoader" "/p:Configuration=Release" "/p:Platform=x86" || GOTO :ERROR

ECHO.
ECHO Copying binaries...
Expand Down

0 comments on commit 5cdeebf

Please sign in to comment.