Skip to content

Commit 2d08fc4

Browse files
authored
Fix misleading indentation in ConfigProvider.AddOutputPath (#19054)
1 parent cb7d101 commit 2d08fc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vsintegration/src/FSharp.ProjectSystem.Base/ConfigProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ private void AddOutputPath(Microsoft.Build.Construction.ProjectPropertyGroupElem
261261
string outputBasePath = this.ProjectMgr.OutputBaseRelativePath;
262262
if (outputBasePath.EndsWith(Path.DirectorySeparatorChar.ToString(), StringComparison.Ordinal))
263263
outputBasePath = Path.GetDirectoryName(outputBasePath);
264-
newConfig.AddProperty("OutputPath", Path.Combine(outputBasePath, configName) + Path.DirectorySeparatorChar.ToString());
264+
newConfig.AddProperty("OutputPath", Path.Combine(outputBasePath, configName) + Path.DirectorySeparatorChar.ToString());
265265

266266
}
267267

0 commit comments

Comments
 (0)