File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Benchmarks/ClientBenchmarkApp Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -112,6 +112,8 @@ dotnet_diagnostic.IDE0046.severity = suggestion
112
112
dotnet_style_prefer_compound_assignment = true :warning
113
113
dotnet_style_prefer_simplified_interpolation = true :warning
114
114
dotnet_style_prefer_simplified_boolean_expressions = true :warning
115
+ dotnet_diagnostic.IDE0028.severity = suggestion
116
+ dotnet_diagnostic.IDE0290.severity = suggestion
115
117
# Null-checking preferences
116
118
dotnet_style_coalesce_expression = true :warning
117
119
dotnet_style_null_propagation = true :warning
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ namespace ClientBenchmarkApp;
16
16
[ SimpleJob ( RunStrategy . Monitoring , iterationCount : 100 , id : "MonitoringJob" ) ]
17
17
public class ClientBenchmarks : IDisposable
18
18
{
19
- private readonly string smallPayload = new string ( /*lang=json,strict*/ "{\" interference\" : \" 1029384\" }" ) ;
19
+ private readonly string smallPayload = "{\" interference\" : \" 1029384\" }" ;
20
20
21
21
private readonly string payload256k ;
22
22
You can’t perform that action at this time.
0 commit comments