From 66efa2a59f231b5e96ec6acbac3caaafa9c4de6f Mon Sep 17 00:00:00 2001 From: David Kallesen Date: Thu, 27 Jun 2024 00:44:22 +0200 Subject: [PATCH] fix: Remove 2 spaces --- .../Content/Generators/GenerateContentForSolutionFile.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Atc.CodeGeneration.CSharp/Content/Generators/GenerateContentForSolutionFile.cs b/src/Atc.CodeGeneration.CSharp/Content/Generators/GenerateContentForSolutionFile.cs index 321a66f4..10382719 100644 --- a/src/Atc.CodeGeneration.CSharp/Content/Generators/GenerateContentForSolutionFile.cs +++ b/src/Atc.CodeGeneration.CSharp/Content/Generators/GenerateContentForSolutionFile.cs @@ -28,8 +28,8 @@ public string Generate() sb.AppendLine("Global"); sb.AppendLine(4, "GlobalSection(SolutionConfigurationPlatforms) = preSolution"); - sb.AppendLine(8, "Debug |Any CPU = Debug|Any CPU"); - sb.AppendLine(8, "Release |Any CPU = Release|Any CPU"); + sb.AppendLine(8, "Debug|Any CPU = Debug|Any CPU"); + sb.AppendLine(8, "Release|Any CPU = Release|Any CPU"); sb.AppendLine(4, "EndGlobalSection"); sb.AppendLine(4, "GlobalSection(ProjectConfigurationPlatforms) = postSolution");