We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2eec748 commit 58284d6Copy full SHA for 58284d6
.editorconfig
@@ -557,6 +557,13 @@ dotnet_diagnostic.CA2208.severity = none
557
558
#### Roslyn IDE analyser rules ####
559
560
+# IDE0028: Simplify collection initialization; and
561
+# IDE0305: Simplify collection initialization
562
+#
563
+# Temporarily suppressing collection expression recommendations coming from .NET 8 SDK
564
+dotnet_diagnostic.IDE0028.severity = none
565
+dotnet_diagnostic.IDE0305.severity = none
566
+
567
# IDE0032: Use auto-implemented property
568
#
569
# For performance reasons, we do not always want to enforce the use of
global.json
@@ -1,6 +1,6 @@
1
{
2
"sdk": {
3
"version": "7.0.403",
4
- "rollForward": "disable"
+ "rollForward": "latestMajor"
5
}
6
0 commit comments