-
Notifications
You must be signed in to change notification settings - Fork 26
/
build.ps1
184 lines (158 loc) · 5.66 KB
/
build.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
##
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
##
##
# Builds the source code and generates application package.
# You can also open the solution file in Visual Studio 2017 and build.
##
param
(
# Configuration to build.
[ValidateSet('Debug', 'Release')]
[string]$Configuration = "Release",
# Platform to build for.
[ValidateSet('clean', 'rebuild')]
[string]$Target = "rebuild",
# msbuild verbosity level.
[ValidateSet('quiet','minimal', 'normal', 'detailed', 'diagnostic')]
[string]$Verbosity = 'minimal',
# path to msbuild
[string]$MSBuildFullPath,
#CreateNugetPackage
[switch]$CreateNugetPackageOnly,
# AppInsightsKey
[string]$AppInsightsKey = "",
# DelaySign
[bool]$DelaySign
)
$presentWorkingDirectory= Get-Location
$ErrorActionPreference = "Stop"
$PSScriptRoot = Split-Path -Parent -Path $MyInvocation.MyCommand.Definition
$NugetFullPath = join-path $PSScriptRoot "nuget.exe"
$SrcRoot = join-path $PSScriptRoot "src\PatchOrchestrationApplication\PatchOrchestrationApplication"
$PackageConfigPath = join-path $PSScriptRoot "src\PatchOrchestrationApplication\PatchOrchestrationApplication\packages.config"
$packagesDirectory = join-path $PSScriptRoot "packages"
$nuprojPackagesConfigPath = join-path $PSScriptRoot "src\PatchOrchestrationApplication\PatchOrchestrationApplication\NugetPackage\packages.config"
$nuprojPath = join-path $PSScriptRoot "src\PatchOrchestrationApplication\PatchOrchestrationApplication\NugetPackage"
$nugetConfigFilePath = join-path $PSScriptRoot "nuget.config"
if ($Target -eq "rebuild") {
$buildTarget = "restore;clean;rebuild;package"
} elseif ($Target -eq "clean") {
$buildTarget = "clean"
}
if($MSBuildFullPath -ne "")
{
if (!(Test-Path $MSBuildFullPath))
{
throw "Unable to find MSBuild at the specified path, run the script again with correct path to msbuild."
}
}
# msbuild path not provided, find msbuild for VS2017
if($MSBuildFullPath -eq "")
{
if (${env:VisualStudioVersion} -eq "15.0" -and ${env:VSINSTALLDIR} -ne "")
{
$MSBuildFullPath = join-path ${env:VSINSTALLDIR} "MSBuild\15.0\Bin\MSBuild.exe"
}
}
if($MSBuildFullPath -eq "")
{
if (Test-Path "env:\ProgramFiles(x86)")
{
$progFilesPath = ${env:ProgramFiles(x86)}
}
elseif (Test-Path "env:\ProgramFiles")
{
$progFilesPath = ${env:ProgramFiles}
}
$VS2017InstallPath = join-path $progFilesPath "Microsoft Visual Studio\2017"
$versions = 'Community', 'Professional', 'Enterprise'
foreach ($version in $versions)
{
$VS2017VersionPath = join-path $VS2017InstallPath $version
$MSBuildFullPath = join-path $VS2017VersionPath "MSBuild\15.0\Bin\MSBuild.exe"
if (Test-Path $MSBuildFullPath)
{
break
}
}
if (!(Test-Path $MSBuildFullPath))
{
Write-Host "Visual Studio 2017 installation not found in ProgramFiles, trying to find install path from registry."
if(Test-Path -Path HKLM:\SOFTWARE\WOW6432Node)
{
$VS2017VersionPath = Get-ItemProperty (Get-ItemProperty -Path HKLM:\SOFTWARE\WOW6432Node\Microsoft\VisualStudio\SxS\VS7 -Name "15.0")."15.0"
}
else
{
$VS2017VersionPath = Get-ItemProperty (Get-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\VisualStudio\SxS\VS7 -Name "15.0")."15.0"
}
$MSBuildFullPath = join-path $VS2017VersionPath "MSBuild\15.0\Bin\MSBuild.exe"
}
}
if (!(Test-Path $MSBuildFullPath))
{
throw "Unable to find MSBuild installed on this machine. Please install Visual Studio 2017 or if its installed at non-default location, provide the full ppath to msbuild using -MSBuildFullPath parameter."
}
if($CreateNugetPackageOnly)
{
$nugetNuProjArgs = @(
"restore",
"$nuprojPackagesConfigPath",
"-PackagesDirectory",
"$packagesDirectory",
"-ConfigFile",
"$nugetConfigFilePath")
& $NugetFullPath $nugetNuProjArgs
if ($lastexitcode -ne 0) {
Set-location -Path $PSScriptRoot
throw ("Failed " + $NugetFullPath + " " + $nugetNuProjArgs)
}
Write-Output "Changing the working directory to $nuprojPath"
Set-location -Path $nuprojPath
$msbuildArgs = @(
"/nr:false",
"/nologo",
"/t:Build",
"/verbosity:$verbosity",
"/property:RequestedVerbosity=$verbosity",
"/property:Configuration=$configuration",
"/property:RestoreConfigFile=$nugetConfigFilePath",
"/property:DelaySign=$DelaySign",
$args)
& $msbuildFullPath $msbuildArgs
}
else {
Set-location -Path $SrcRoot
Write-Host "Source root is $srcRoot"
$nugetArgs = @(
"restore",
"$PackageConfigPath",
"-PackagesDirectory",
"$packagesDirectory",
"-ConfigFile",
"$nugetConfigFilePath")
& $NugetFullPath $nugetArgs
if ($lastexitcode -ne 0) {
Set-location -Path $PSScriptRoot
throw ("Failed " + $NugetFullPath + " " + $nugetArgs)
}
Write-Output "Changing the working directory to $srcRoot"
Set-location -Path $srcRoot
Write-Output "Using msbuild from $msbuildFullPath"
$msbuildArgs = @(
"/nr:false",
"/nologo",
"/t:$buildTarget",
"/verbosity:$verbosity",
"/property:RequestedVerbosity=$verbosity",
"/property:Configuration=$configuration",
"/property:RestoreConfigFile=$nugetConfigFilePath",
"/property:AppInsightsKey=$AppInsightsKey",
"/property:RestorePackagesPath=$packagesDirectory",
"/property:DelaySign=$DelaySign",
$args)
& $msbuildFullPath $msbuildArgs
}
Set-location -Path $presentWorkingDirectory