Fix the build

This commit is contained in:
Martin Kemp
2014-08-26 23:52:49 +01:00
parent 72c045dc2d
commit de8d2d22f6
8 changed files with 23 additions and 94 deletions

View File

@ -37,8 +37,11 @@ Param(
# Path to the vendor configuration source file
[string]$sourcesPath = "..\vendor\sources.json",
# Vendor folder locaton
[string]$saveTo = "..\vendor\"
# Vendor folder location
[string]$saveTo = "..\vendor\",
# Launcher folder location
[string]$launcher = "..\launcher"
)
. "$PSScriptRoot\utils.ps1"
@ -68,4 +71,9 @@ foreach ($s in $sources) {
}
Pop-Location
Write-Verbose "All good and done!"
Push-Location -Path $launcher
msbuild CmderLauncher.vcxproj /p:configuration=Release
Pop-Location
Write-Verbose "All good and done!"