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
3 changes: 2 additions & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
<GlobalPackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.302" />
<GlobalPackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.301" />
<GlobalPackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="18.7.23" />
<GlobalPackageReference Include="NetEvolve.Defaults" Version="2.6.95" />
<GlobalPackageReference Include="NetEvolve.Analyzer" Version="0.16.16" />
<GlobalPackageReference Include="NetEvolve.Defaults" Version="2.8.0" />
<GlobalPackageReference Include="Roslynator.Analyzers" Version="4.15.0" />
<GlobalPackageReference Include="Roslynator.Formatting.Analyzers" Version="4.15.0" />
<GlobalPackageReference Include="Roslynator.CodeAnalysis.Analyzers" Version="4.15.0" />
Expand Down
4 changes: 2 additions & 2 deletions src/NetEvolve.CodeBuilder/CSharpCodeBuilder.Append.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace NetEvolve.CodeBuilder;
namespace NetEvolve.CodeBuilder;

using System;

Expand Down Expand Up @@ -249,7 +249,7 @@ public CSharpCodeBuilder Append(string? value, int startIndex, int count)
/// <param name="value">The string to append.</param>
/// <returns>The current <see cref="CSharpCodeBuilder"/> instance to allow for method chaining.</returns>
/// <remarks>
/// <c>null</c>, an empty string, or <c>"\0"</c> are ignored; the method returns without appending.
/// <see langword="null"/>, an empty string, or <c>"\0"</c> are ignored; the method returns without appending.
/// The following single-character strings receive special treatment:
/// <list type="bullet">
/// <item><description><c>"\n"</c>, <c>"\r"</c>, or <c>"\r\n"</c> — treated as a line terminator; equivalent to calling <see cref="AppendLine()"/>.</description></item>
Expand Down