@@ -57,7 +57,11 @@ param(
57
57
58
58
[Parameter (Mandatory = $false )]
59
59
[switch ]
60
- $VerboseMsbuild
60
+ $VerboseMsbuild ,
61
+
62
+ [Parameter (Mandatory = $false )]
63
+ [switch ]
64
+ $ARM64
61
65
)
62
66
63
67
$ErrorActionPreference = ' Stop'
@@ -210,24 +214,33 @@ if (!$SkipBuild)
210
214
Remove-Item - Force - Recurse " $repoPath \obj\"
211
215
}
212
216
213
- # NuGet restore disregards platform/configuration
214
217
# dotnet restore defaults to Debug|Any CPU, which requires the /p:platform specification in order to replicate NuGet restore behavior.
215
- $restoreArgsInit = " restore $repoPath \InstrumentationEngine.sln --configfile $repoPath \NuGet.config"
216
- $restoreArgs = @ (
217
- " $restoreArgsInit /p:platform=`" x86`" "
218
- " $restoreArgsInit /p:platform=`" x64`" "
219
- " $restoreArgsInit /p:platform=`" Any CPU`" "
220
- )
221
- Invoke-ExpressionHelper - Executable " dotnet" - Arguments $restoreArgs - Activity ' dotnet Restore Solutions'
218
+ $dotnetRestoreArgs = " restore `" $repoPath \InstrumentationEngine.sln`" --configfile `" $repoPath \NuGet.config`" /p:platform=`" Any CPU`" "
219
+ if ($ARM64 )
220
+ {
221
+ $dotnetRestoreArgs = " $dotnetRestoreArgs /p:IncludeARM64='True'"
222
+ }
223
+
224
+ Invoke-ExpressionHelper - Executable " dotnet" - Arguments $dotnetRestoreArgs - Activity ' dotnet Restore Solutions'
225
+
226
+ # NuGet restore disregards platform/configuration
227
+ $nugetRestoreArgs = " restore `" $repoPath \NativeNugetRestore.sln`" -configfile `" $repoPath \NuGet.config`" "
228
+ Invoke-ExpressionHelper - Executable " nuget" - Arguments $nugetRestoreArgs - Activity ' nuget Restore Solutions'
222
229
}
223
230
224
231
# Build InstrumentationEngine.sln
225
232
$buildArgsInit = " $repoPath \InstrumentationEngine.sln /p:configuration=`" $configuration `" /p:SignType=$SignType /p:BuildVersion=$BuildVersion /clp:$ ( $clParams ) "
226
- $buildArgs = @ (
233
+ $buildArgs = [ System.Collections.ArrayList ] @ (
227
234
" $buildArgsInit /p:platform=`" x86`" "
228
235
" $buildArgsInit /p:platform=`" x64`" "
229
236
" $buildArgsInit /p:platform=`" Any CPU`" /m"
230
237
)
238
+
239
+ if ($ARM64 )
240
+ {
241
+ $buildArgs.Add (" $buildArgsInit /p:platform=`" ARM64`" /m" )
242
+ }
243
+
231
244
Invoke-ExpressionHelper - Executable " $msbuild " - Arguments $buildArgs - Activity ' Build InstrumentationEngine.sln'
232
245
}
233
246
@@ -247,21 +260,33 @@ if (!$SkipPackaging)
247
260
248
261
# NuGet restore disregards platform/configuration
249
262
# dotnet restore defaults to Debug|Any CPU, which requires the /p:platform specification in order to replicate NuGet restore behavior.
250
- $restoreArgsInit = " restore $repoPath \src\InstrumentationEngine.Packages.sln --configfile $repoPath \NuGet.config"
251
- $restoreArgs = @ (
263
+ $restoreArgsInit = " restore `" $repoPath \src\InstrumentationEngine.Packages.sln`" --configfile $repoPath \NuGet.config"
264
+ $restoreArgs = [ System.Collections.ArrayList ] @ (
252
265
" $restoreArgsInit /p:platform=`" x86`" "
253
266
" $restoreArgsInit /p:platform=`" x64`" "
254
267
" $restoreArgsInit /p:platform=`" Any CPU`" "
255
268
)
269
+
270
+ if ($ARM64 )
271
+ {
272
+ $restoreArgs.Add (" $restoreArgsInit /p:platform=`" ARM64`" " )
273
+ }
274
+
256
275
Invoke-ExpressionHelper - Executable " dotnet" - Arguments $restoreArgs - Activity ' dotnet Restore Solutions'
257
276
258
277
# Build InstrumentationEngine.Packages.sln
259
- $buildArgsInit = " $repoPath \src\InstrumentationEngine.Packages.sln /p:configuration=`" $configuration `" /p:SignType=$SignType /p:BuildVersion=$BuildVersion /clp:$ ( $clParams ) /m"
260
- $buildArgs = @ (
278
+ $buildArgsInit = " `" $repoPath \src\InstrumentationEngine.Packages.sln`" /p:configuration=`" $configuration `" /p:SignType=$SignType /p:BuildVersion=$BuildVersion /clp:$ ( $clParams ) /m"
279
+ $buildArgs = [ System.Collections.ArrayList ] @ (
261
280
" $buildArgsInit /p:platform=`" x86`" "
262
281
" $buildArgsInit /p:platform=`" x64`" "
263
282
" $buildArgsInit /p:platform=`" Any CPU`" "
264
283
)
284
+
285
+ if ($ARM64 )
286
+ {
287
+ $buildArgs.Add (" $buildArgsInit /p:platform=`" ARM64`" " )
288
+ }
289
+
265
290
Invoke-ExpressionHelper - Executable " $msbuild " - Arguments $buildArgs - Activity ' Build InstrumentationEngine.Packages.sln'
266
291
}
267
292
0 commit comments