From 9be3bdb8a5e2e2ca0d9baf97e46f58b339f7d552 Mon Sep 17 00:00:00 2001 From: Sebastiaan Janssen Date: Fri, 14 Nov 2014 17:16:33 +0100 Subject: [PATCH] Makes sure that the very first build on a fresh machine works immediately (previously you'd get an error saying that some NuGet packages were restored and you need to run the build again). --- build/Build.bat | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build/Build.bat b/build/Build.bat index ed29b25d22..5bf6f90cba 100644 --- a/build/Build.bat +++ b/build/Build.bat @@ -17,6 +17,8 @@ SET nuGetFolder=%CD%\..\src\packages\ ..\src\.nuget\NuGet.exe sources Remove -Name MyGetUmbracoCore ..\src\.nuget\NuGet.exe sources Add -Name MyGetUmbracoCore -Source https://www.myget.org/F/umbracocore/api/v2/ ..\src\.nuget\NuGet.exe install ..\src\Umbraco.Web.UI\packages.config -OutputDirectory %nuGetFolder% +..\src\.nuget\NuGet.exe install ..\src\umbraco.businesslogic\packages.config -OutputDirectory %nuGetFolder% +..\src\.nuget\NuGet.exe install ..\src\Umbraco.Core\packages.config -OutputDirectory %nuGetFolder% ECHO Removing the belle build folder to make sure everything is clean as a whistle RD ..\src\Umbraco.Web.UI.Client\build /Q /S