diff --git a/vsintegration/src/FSharp.ProjectSystem.Base/ConfigProvider.cs b/vsintegration/src/FSharp.ProjectSystem.Base/ConfigProvider.cs index 99b4793a91..e2d42b97ef 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()); }