From: Paul Durrant Date: Tue, 30 Apr 2019 14:14:34 +0000 (+0100) Subject: Build for Windows 8 in non-SDV builds in build.ps1 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=c8db8d689a30aef2921319b666f26968a772cca6;p=people%2Fpauldu%2Fxenbus.git Build for Windows 8 in non-SDV builds in build.ps1 Also remove automatic symstore Signed-off-by: Paul Durrant --- diff --git a/build.ps1 b/build.ps1 index 8911908..f154aee 100644 --- a/build.ps1 +++ b/build.ps1 @@ -20,7 +20,7 @@ Function Build { $visualstudioversion = $Env:VisualStudioVersion $solutiondir = @{ "14.0" = "vs2015"; "15.0" = "vs2017"; } - $configurationbase = @{ "14.0" = "Windows 10"; "15.0" = "Windows 10"; } + $configurationbase = @{ "14.0" = "Windows 8"; "15.0" = "Windows 8"; } $params = @{ SolutionDir = $solutiondir[$visualstudioversion]; @@ -29,11 +29,6 @@ Function Build { Type = $Type } & ".\msbuild.ps1" @params - - $params = @{ - Arch = $Arch; - } - & ".\symstore.ps1" @params } Function SdvBuild {