From f5a63c6bb101c3d1cd96c4895f0f9bc3ed8e61a3 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 5 Nov 2025 10:18:41 +0000 Subject: [PATCH 1/2] Initial plan From 6ec7988760bddf564df5ff4af6f1ad82331707b2 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 5 Nov 2025 10:31:39 +0000 Subject: [PATCH 2/2] Fix misleading indentation in ConfigProvider.cs line 264 Co-authored-by: T-Gro <46543583+T-Gro@users.noreply.github.com> --- vsintegration/src/FSharp.ProjectSystem.Base/ConfigProvider.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vsintegration/src/FSharp.ProjectSystem.Base/ConfigProvider.cs b/vsintegration/src/FSharp.ProjectSystem.Base/ConfigProvider.cs index 99b4793a914..e2d42b97efa 100644 --- a/vsintegration/src/FSharp.ProjectSystem.Base/ConfigProvider.cs +++ b/vsintegration/src/FSharp.ProjectSystem.Base/ConfigProvider.cs @@ -261,7 +261,7 @@ private void AddOutputPath(Microsoft.Build.Construction.ProjectPropertyGroupElem string outputBasePath = this.ProjectMgr.OutputBaseRelativePath; if (outputBasePath.EndsWith(Path.DirectorySeparatorChar.ToString(), StringComparison.Ordinal)) outputBasePath = Path.GetDirectoryName(outputBasePath); - newConfig.AddProperty("OutputPath", Path.Combine(outputBasePath, configName) + Path.DirectorySeparatorChar.ToString()); + newConfig.AddProperty("OutputPath", Path.Combine(outputBasePath, configName) + Path.DirectorySeparatorChar.ToString()); }