From 4b3f7034b2a03d7eb92bfbdd606fef7c7a30fa1d Mon Sep 17 00:00:00 2001 From: Gustas <37534529+PunkPun@users.noreply.github.com> Date: Sun, 19 Feb 2023 17:33:03 +0200 Subject: [PATCH] Silence rule "Use span-based 'string.Concat'" --- .editorconfig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.editorconfig b/.editorconfig index 9ecc063373..c3124ccf27 100644 --- a/.editorconfig +++ b/.editorconfig @@ -240,6 +240,9 @@ dotnet_diagnostic.CA1827.severity = warning # Use Length/Count property instead of Enumerable.Count method. dotnet_diagnostic.CA1829.severity = warning +# Use span-based 'string.Concat' (incompatible with mono builds). +dotnet_diagnostic.CA1845.severity = none + # Use string.Contains(char) instead of string.Contains(string) with single characters. dotnet_diagnostic.CA1847.severity = warning