Skip to content

Commit

Permalink
Add amd64 when processor arch is x64 for msbuild exe detection (#671)
Browse files Browse the repository at this point in the history
  • Loading branch information
mruxmohan4 authored Mar 7, 2025
1 parent 38918ad commit 4bcdba8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Shared/DevelopmentEnvironment.cs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public static DevelopmentEnvironment LoadCurrentDevelopmentEnvironment(IEnvironm

return new DevelopmentEnvironment
{
MSBuildExe = new FileInfo(Path.Combine(msbuildToolsPath!, "MSBuild.exe")),
MSBuildExe = GetPathToMSBuildExe(new FileInfo(Path.Combine(msbuildToolsPath!, "MSBuild.exe"))),
IsCorext = true,
VisualStudio = VisualStudioConfiguration.GetLaunchableInstances()
.Where(i => !i.IsBuildTools && i.HasMSBuild && i.InstallationVersion.Major == visualStudioVersion.Major)
Expand Down

0 comments on commit 4bcdba8

Please sign in to comment.