We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a999919 + e3662ea commit 1b23bbeCopy full SHA for 1b23bbe
vsintegration/src/FSharp.ProjectSystem.Base/Utilities.cs
@@ -740,7 +740,7 @@ public static Microsoft.Build.Evaluation.Project InitializeMsBuildProject(Micros
740
{
741
var lclGlobalProperties = (null == globalProperties) ? new Dictionary<string, string>() : new Dictionary<string, string>(globalProperties)
742
743
- { "FSharpCompilerPath", Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location) }
+ { "FSharpCompilerPath", Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), "Tools") }
744
};
745
buildProject = buildEngine.LoadProject(fullProjectPath, lclGlobalProperties, null);
746
buildProject.IsBuildEnabled = true;
0 commit comments