From d290c1098ee7f61ca1498ddce54378253d26a977 Mon Sep 17 00:00:00 2001 From: Paul Betts Date: Sun, 3 Aug 2014 11:23:09 +0200 Subject: [PATCH] Build the project as part of MakeRelease --- MakeRelease.ps1 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/MakeRelease.ps1 b/MakeRelease.ps1 index 210e12f0a..d3f95986c 100644 --- a/MakeRelease.ps1 +++ b/MakeRelease.ps1 @@ -9,6 +9,12 @@ if ($SlnFileExists -eq $False) { exit -1 } +$MSBuildLocation = "C:\Program Files (x86)\MSBuild\12.0\bin" + +& ".\.nuget\NuGet.exe" restore .\Akavache.sln +& "$MSBuildLocation\MSBuild.exe" /t:Rebuild /p:Configuration=Release /p:Platform="Any CPU" /maxcpucount:1 .\Akavache.sln + + ### ### Build the Release directory ###