File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -345,6 +345,10 @@ Remove-Item variable:global:_DotNetInstallDir -ea Ignore
345
345
Remove-Item variable:global:_ToolsetBuildProj - ea Ignore
346
346
Remove-Item variable:global:_MSBuildExe - ea Ignore
347
347
348
+ # tools.ps1 expects the remaining arguments to be available via the $properties string array variable
349
+ # TODO: Remove when https://github.com/dotnet/source-build/issues/4337 is implemented.
350
+ [string []] $properties = $MSBuildArguments
351
+
348
352
# Import Arcade
349
353
. " $PSScriptRoot /common/tools.ps1"
350
354
Original file line number Diff line number Diff line change @@ -338,6 +338,10 @@ if [ "$(uname)" = "Darwin" ]; then
338
338
ulimit -n 10000
339
339
fi
340
340
341
+ # tools.sh expects the remaining arguments to be available via the $properties string array variable
342
+ # TODO: Remove when https://github.com/dotnet/source-build/issues/4337 is implemented.
343
+ properties=$msbuild_args
344
+
341
345
# Import Arcade
342
346
. " $DIR /common/tools.sh"
343
347
You can’t perform that action at this time.
0 commit comments