Skip to content

Commit a021185

Browse files
committed
Fix build
1 parent 6dfc9fe commit a021185

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

Benchmarks/.editorconfig

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,8 @@ dotnet_diagnostic.SA1601.severity = none
1717
# Justification: Comments turned off
1818
# https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1602.md
1919
dotnet_diagnostic.SA1602.severity = none
20+
21+
# IDE0005: Remove all unused usings
22+
# Justification: Bug in Roslyn compiler is causing error on projects with generating docs disabled.
23+
# https://github.com/dotnet/roslyn/issues/41640
24+
dotnet_diagnostic.IDE0005.severity = none

Tests/.editorconfig

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ dotnet_diagnostic.SA1601.severity = none
1818
# https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1602.md
1919
dotnet_diagnostic.SA1602.severity = none
2020

21+
# IDE0005: Remove all unused usings
22+
# Justification: Bug in Roslyn compiler is causing error on projects with generating docs disabled.
23+
# https://github.com/dotnet/roslyn/issues/41640
24+
dotnet_diagnostic.IDE0005.severity = none
25+
2126
##########################################
2227
# Custom
2328
##########################################

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"sdk": {
33
"allowPrerelease": false,
44
"rollForward": "latestMajor",
5-
"version": "7.0.302"
5+
"version": "7.0.401"
66
}
77
}

0 commit comments

Comments
 (0)