@@ -21,16 +21,6 @@ The build script target to run.
21
21
The build configuration to use.
22
22
. PARAMETER Verbosity
23
23
Specifies the amount of information to be displayed.
24
- . PARAMETER ShowDescription
25
- Shows description about tasks.
26
- . PARAMETER DryRun
27
- Performs a dry run.
28
- . PARAMETER Experimental
29
- Uses the nightly builds of the Roslyn script engine.
30
- . PARAMETER Mono
31
- Uses the Mono Compiler rather than the Roslyn script engine.
32
- . PARAMETER SkipToolPackageRestore
33
- Skips restoring of packages.
34
24
. PARAMETER UseDotNetTest
35
25
Run tests against the .NET SDK build of OmniSharp
36
26
. PARAMETER ScriptArgs
@@ -43,50 +33,38 @@ https://cakebuild.net
43
33
44
34
[CmdletBinding ()]
45
35
Param (
46
- [parameter (position = 0 )]
36
+ [parameter (position = 0 )]
47
37
[string ]$Target = " Default" ,
48
38
[string ]$Script = " build.cake" ,
49
39
[string ]$Configuration ,
50
40
[ValidateSet (" Quiet" , " Minimal" , " Normal" , " Verbose" , " Diagnostic" )]
51
41
[string ]$Verbosity ,
52
- [switch ]$ShowDescription ,
53
- [Alias (" WhatIf" , " Noop" )]
54
- [switch ]$DryRun ,
55
- [switch ]$Experimental ,
56
- [switch ]$Mono ,
57
- [switch ]$SkipToolPackageRestore ,
58
42
[switch ]$UseDotNetTest ,
59
- [Parameter (Position = 0 , Mandatory = $false , ValueFromRemainingArguments = $true )]
43
+ [Parameter (Position = 0 , Mandatory = $false , ValueFromRemainingArguments = $true )]
60
44
[string []]$ScriptArgs
61
45
)
62
46
63
47
[Reflection.Assembly ]::LoadWithPartialName(" System.Security" ) | Out-Null
64
- function MD5HashFile ([string ] $filePath )
65
- {
66
- if ([string ]::IsNullOrEmpty($filePath ) -or ! (Test-Path $filePath - PathType Leaf))
67
- {
48
+ function MD5HashFile ([string ] $filePath ) {
49
+ if ([string ]::IsNullOrEmpty($filePath ) -or ! (Test-Path $filePath - PathType Leaf)) {
68
50
return $null
69
51
}
70
52
71
53
[System.IO.Stream ] $file = $null ;
72
54
[System.Security.Cryptography.MD5 ] $md5 = $null ;
73
- try
74
- {
55
+ try {
75
56
$md5 = [System.Security.Cryptography.MD5 ]::Create()
76
57
$file = [System.IO.File ]::OpenRead($filePath )
77
58
return [System.BitConverter ]::ToString($md5.ComputeHash ($file ))
78
59
}
79
- finally
80
- {
81
- if ($file -ne $null )
82
- {
60
+ finally {
61
+ if ($file -ne $null ) {
83
62
$file.Dispose ()
84
63
}
85
64
}
86
65
}
87
66
88
- function GetProxyEnabledWebClient
89
- {
67
+ function GetProxyEnabledWebClient {
90
68
$wc = New-Object System.Net.WebClient
91
69
$proxy = [System.Net.WebRequest ]::GetSystemWebProxy()
92
70
$proxy.Credentials = [System.Net.CredentialCache ]::DefaultCredentials
@@ -96,19 +74,15 @@ function GetProxyEnabledWebClient
96
74
97
75
Write-Host " Preparing to run build script..."
98
76
99
- if (! $PSScriptRoot ){
77
+ if (! $PSScriptRoot ) {
100
78
$PSScriptRoot = Split-Path $MyInvocation.MyCommand.Path - Parent
101
79
}
102
80
103
81
$TOOLS_DIR = Join-Path $PSScriptRoot " tools"
104
- $ADDINS_DIR = Join-Path $TOOLS_DIR " Addins"
105
- $MODULES_DIR = Join-Path $TOOLS_DIR " Modules"
106
82
$NUGET_EXE = Join-Path $TOOLS_DIR " nuget.exe"
107
83
$NUGET_URL = " https://dist.nuget.org/win-x86-commandline/latest/nuget.exe"
108
84
$PACKAGES_CONFIG = Join-Path $TOOLS_DIR " packages.config"
109
85
$PACKAGES_CONFIG_MD5 = Join-Path $TOOLS_DIR " packages.config.md5sum"
110
- $ADDINS_PACKAGES_CONFIG = Join-Path $ADDINS_DIR " packages.config"
111
- $MODULES_PACKAGES_CONFIG = Join-Path $MODULES_DIR " packages.config"
112
86
113
87
# Make sure tools folder exists
114
88
if ((Test-Path $PSScriptRoot ) -and ! (Test-Path $TOOLS_DIR )) {
@@ -121,7 +95,9 @@ if (!(Test-Path $PACKAGES_CONFIG)) {
121
95
Write-Verbose - Message " Downloading packages.config..."
122
96
try {
123
97
$wc = GetProxyEnabledWebClient
124
- $wc.DownloadFile (" https://cakebuild.net/download/bootstrapper/packages" , $PACKAGES_CONFIG ) } catch {
98
+ $wc.DownloadFile (" https://cakebuild.net/download/bootstrapper/packages" , $PACKAGES_CONFIG )
99
+ }
100
+ catch {
125
101
Throw " Could not download packages.config."
126
102
}
127
103
}
@@ -143,25 +119,26 @@ if (!(Test-Path $NUGET_EXE)) {
143
119
try {
144
120
$wc = GetProxyEnabledWebClient
145
121
$wc.DownloadFile ($NUGET_URL , $NUGET_EXE )
146
- } catch {
122
+ }
123
+ catch {
147
124
Throw " Could not download NuGet.exe."
148
125
}
149
126
}
150
127
151
128
# Save nuget.exe path to environment to be available to child processed
152
129
$ENV: NUGET_EXE = $NUGET_EXE
153
130
154
- # Restore tools from NuGet?
155
- if ( -Not $SkipToolPackageRestore .IsPresent ) {
131
+ # Restore tools from NuGet
132
+ if ( Test-Path $PACKAGES_CONFIG ) {
156
133
Push-Location
157
134
Set-Location $TOOLS_DIR
158
135
159
136
# Check for changes in packages.config and remove installed tools if true.
160
137
[string ] $md5Hash = MD5HashFile($PACKAGES_CONFIG )
161
- if ((! (Test-Path $PACKAGES_CONFIG_MD5 )) -Or
162
- ($md5Hash -ne (Get-Content $PACKAGES_CONFIG_MD5 ))) {
138
+ if ((! (Test-Path $PACKAGES_CONFIG_MD5 )) -Or
139
+ ($md5Hash -ne (Get-Content $PACKAGES_CONFIG_MD5 ))) {
163
140
Write-Verbose - Message " Missing or changed package.config hash..."
164
- Remove-Item * - Recurse - Exclude packages.config, nuget.exe
141
+ Remove-Item * - Recurse - Exclude packages.config, nuget.exe
165
142
}
166
143
167
144
Write-Verbose - Message " Restoring tools from NuGet..."
@@ -170,60 +147,21 @@ if(-Not $SkipToolPackageRestore.IsPresent) {
170
147
if ($LASTEXITCODE -ne 0 ) {
171
148
Throw " An error occurred while restoring NuGet tools."
172
149
}
173
- else
174
- {
150
+ else {
175
151
$md5Hash | Out-File $PACKAGES_CONFIG_MD5 - Encoding " ASCII"
176
152
}
177
153
Write-Verbose - Message ($NuGetOutput | out-string )
178
154
179
155
Pop-Location
180
156
}
181
157
182
- # Restore addins from NuGet
183
- if (Test-Path $ADDINS_PACKAGES_CONFIG ) {
184
- Push-Location
185
- Set-Location $ADDINS_DIR
186
-
187
- Write-Verbose - Message " Restoring addins from NuGet..."
188
- $NuGetOutput = Invoke-Expression " &`" $NUGET_EXE `" install -ExcludeVersion -OutputDirectory `" $ADDINS_DIR `" "
189
-
190
- if ($LASTEXITCODE -ne 0 ) {
191
- Throw " An error occurred while restoring NuGet addins."
192
- }
193
-
194
- Write-Verbose - Message ($NuGetOutput | out-string )
195
-
196
- Pop-Location
197
- }
198
-
199
- # Restore modules from NuGet
200
- if (Test-Path $MODULES_PACKAGES_CONFIG ) {
201
- Push-Location
202
- Set-Location $MODULES_DIR
203
-
204
- Write-Verbose - Message " Restoring modules from NuGet..."
205
- $NuGetOutput = Invoke-Expression " &`" $NUGET_EXE `" install -ExcludeVersion -OutputDirectory `" $MODULES_DIR `" "
206
-
207
- if ($LASTEXITCODE -ne 0 ) {
208
- Throw " An error occurred while restoring NuGet modules."
209
- }
210
-
211
- Write-Verbose - Message ($NuGetOutput | out-string )
212
-
213
- Pop-Location
214
- }
215
-
216
158
dotnet tool restore
217
159
218
160
# Build Cake arguments
219
161
$cakeArguments = @ (" $Script " );
220
162
if ($Target ) { $cakeArguments += " --target=$Target " }
221
163
if ($Configuration ) { $cakeArguments += " --configuration=$Configuration " }
222
164
if ($Verbosity ) { $cakeArguments += " --verbosity=$Verbosity " }
223
- if ($ShowDescription ) { $cakeArguments += " --showdescription" }
224
- if ($DryRun ) { $cakeArguments += " --dryrun" }
225
- if ($Experimental ) { $cakeArguments += " --experimental" }
226
- if ($Mono ) { $cakeArguments += " --mono" }
227
165
if ($UseDotNetTest ) { $cakeArguments += " --use-dotnet-test" }
228
166
$cakeArguments += $ScriptArgs
229
167
0 commit comments