Skip to content

Commit 3c4ec5f

Browse files
authored
Don't trim trailing space for expected editorconfig
Tests rely on this
1 parent efae8b7 commit 3c4ec5f

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/Cli/dotnet/Commands/Run/CSharpCompilerCommand.cs

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -209,25 +209,25 @@ private void PrepareAuxiliaryFiles(out string rspPath)
209209
build_property.EnableAotAnalyzer = true
210210
build_property.EnableSingleFileAnalyzer = true
211211
build_property.EnableTrimAnalyzer = true
212-
build_property.IncludeAllContentForSelfExtract =
213-
build_property.VerifyReferenceTrimCompatibility =
214-
build_property.VerifyReferenceAotCompatibility =
212+
build_property.IncludeAllContentForSelfExtract =
213+
build_property.VerifyReferenceTrimCompatibility =
214+
build_property.VerifyReferenceAotCompatibility =
215215
build_property.TargetFramework = net{TargetFrameworkVersion}
216216
build_property.TargetFrameworkIdentifier = .NETCoreApp
217217
build_property.TargetFrameworkVersion = v{TargetFrameworkVersion}
218-
build_property.TargetPlatformMinVersion =
219-
build_property.UsingMicrosoftNETSdkWeb =
220-
build_property.ProjectTypeGuids =
221-
build_property.InvariantGlobalization =
222-
build_property.PlatformNeutralAssembly =
223-
build_property.EnforceExtendedAnalyzerRules =
218+
build_property.TargetPlatformMinVersion =
219+
build_property.UsingMicrosoftNETSdkWeb =
220+
build_property.ProjectTypeGuids =
221+
build_property.InvariantGlobalization =
222+
build_property.PlatformNeutralAssembly =
223+
build_property.EnforceExtendedAnalyzerRules =
224224
build_property._SupportedPlatformList = Linux,macOS,Windows
225225
build_property.RootNamespace = {fileNameWithoutExtension}
226226
build_property.ProjectDir = {fileDirectory}{Path.DirectorySeparatorChar}
227-
build_property.EnableComHosting =
227+
build_property.EnableComHosting =
228228
build_property.EnableGeneratedComInterfaceComImportInterop = false
229229
build_property.EffectiveAnalysisLevelStyle = {TargetFrameworkVersion}
230-
build_property.EnableCodeStyleSeverity =
230+
build_property.EnableCodeStyleSeverity =
231231
232232
""");
233233
}

0 commit comments

Comments
 (0)