Skip to content
This repository was archived by the owner on Sep 4, 2024. It is now read-only.

Commit 9bfc12a

Browse files
author
davidebbo
committed
Go back to msbuild in framework dir until we have newer F#
1 parent fd2a98b commit 9bfc12a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Kudu.Core/Infrastructure/PathUtility.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@ internal static string ResolveNpmJsPath()
108108

109109
internal static string ResolveMSBuildPath()
110110
{
111-
string programFiles = SystemEnvironment.GetFolderPath(SystemEnvironment.SpecialFolder.ProgramFilesX86);
112-
return Path.Combine(programFiles, @"MSBuild", "14.0", "Bin", "MSBuild.exe");
111+
string windir = SystemEnvironment.GetFolderPath(SystemEnvironment.SpecialFolder.Windows);
112+
return Path.Combine(windir, @"Microsoft.NET", "Framework", "v4.0.30319", "MSBuild.exe");
113113
}
114114

115115
internal static string ResolveVsTestPath()

0 commit comments

Comments
 (0)