Skip to content
This repository was archived by the owner on Jul 12, 2022. It is now read-only.

Commit 878c464

Browse files
committed
Merge pull request #136 from lgolding/master
build.cmd should always check for NuGet package updates
2 parents 52bdcfc + 8fb449c commit 878c464

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

build.cmd

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,7 @@ IF NOT EXIST %LocalAppData%\NuGet md %LocalAppData%\NuGet
3232
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest 'https://www.nuget.org/nuget.exe' -OutFile '%CACHED_NUGET%'"
3333

3434
:restore
35-
IF EXIST "%~dp0src\packages" goto build
35+
IF NOT EXIST src\packages md src\packages
3636
%CACHED_NUGET% restore %SOLUTION_PATH%
3737

38-
:build
39-
4038
%BUILD_TOOLS_PATH% %SOLUTION_PATH% /p:OutDir="%~dp0bin" /nologo /m /v:m /flp:verbosity=normal %*

0 commit comments

Comments
 (0)