Skip to content

Commit 3417cc2

Browse files
authored
style: Reformatted solution (#182)
1 parent 1432a86 commit 3417cc2

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

.editorconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ generated_code = true
4444
# XML project files
4545
[*.{slnx,csproj,vbproj,vcxproj,vcxproj.filters,proj,projitems,shproj,nativeproj,locproj}]
4646
indent_size = 2
47+
max_line_length = 160
4748

4849
# Xml build files
4950
[*.builds]

.github/workflows/cicd.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,5 @@ jobs:
3030
uses: dailydevops/pipelines/.github/workflows/build-dotnet-single.yml@55d5f712c8386ebe135c4cd682750d826323a0a4 # 2.3.181
3131
with:
3232
dotnetVersion: ${{ vars.NE_DOTNET_TARGETFRAMEWORKS }}
33-
dotnetQuality: ${{ vars.NE_DOTNET_QUALITY }}
3433
solution: ./CodeBuilder.slnx
3534
secrets: inherit

src/NetEvolve.CodeBuilder/CodeBuilderBase.ToString.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ public partial record CodeBuilderBase
99
/// <remarks>
1010
/// This method returns the content of the internal <see cref="System.Text.StringBuilder"/>.
1111
/// </remarks>
12-
public override sealed string ToString() => _builder.ToString();
12+
public sealed override string ToString() => _builder.ToString();
1313
}

0 commit comments

Comments
 (0)