-
Notifications
You must be signed in to change notification settings - Fork 380
Open
Description
Follow-up to #7531
I looked at a few binlogs from a desktop msbuild invocation today and was surprised that we still launch the x86 version of msbuild.exe by default.
Looking at
Lines 469 to 473 in b7be18a
| $local:Prefer64bit = if (Get-Member -InputObject $vsRequirements -Name 'Prefer64bit') { $vsRequirements.Prefer64bit } else { $false } | |
| if ($local:Prefer64bit -and (Test-Path(Join-Path $local:BinFolder "amd64"))) { | |
| $global:_MSBuildExe = Join-Path $local:BinFolder "amd64\msbuild.exe" | |
| } else { | |
| $global:_MSBuildExe = Join-Path $local:BinFolder "msbuild.exe" |
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels