Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ generated_code = true
# XML project files
[*.{slnx,csproj,vbproj,vcxproj,vcxproj.filters,proj,projitems,shproj,nativeproj,locproj}]
indent_size = 2
max_line_length = 160

# Xml build files
[*.builds]
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,5 @@ jobs:
uses: dailydevops/pipelines/.github/workflows/build-dotnet-single.yml@55d5f712c8386ebe135c4cd682750d826323a0a4 # 2.3.181
with:
dotnetVersion: ${{ vars.NE_DOTNET_TARGETFRAMEWORKS }}
dotnetQuality: ${{ vars.NE_DOTNET_QUALITY }}
solution: ./CodeBuilder.slnx
secrets: inherit
2 changes: 1 addition & 1 deletion src/NetEvolve.CodeBuilder/CodeBuilderBase.ToString.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ public partial record CodeBuilderBase
/// <remarks>
/// This method returns the content of the internal <see cref="System.Text.StringBuilder"/>.
/// </remarks>
public override sealed string ToString() => _builder.ToString();
public sealed override string ToString() => _builder.ToString();
}
Loading