@@ -25,15 +25,13 @@ end_of_line = lf
25
25
insert_final_newline = false
26
26
27
27
# ### .NET Coding Conventions ####
28
- [* .{cs,vb} ]
29
28
30
29
# Organize usings
31
30
dotnet_separate_import_directive_groups = true
32
31
dotnet_sort_system_directives_first = true
33
- file_header_template = # this. and Me. preferences
34
-
35
-
32
+ file_header_template = unset
36
33
34
+ # this. and Me. preferences
37
35
dotnet_style_qualification_for_event = false :silent
38
36
dotnet_style_qualification_for_field = false :silent
39
37
dotnet_style_qualification_for_method = false :silent
@@ -79,7 +77,6 @@ dotnet_code_quality_unused_parameters = all:suggestion
79
77
dotnet_remove_unnecessary_suppression_exclusions = none
80
78
81
79
# ### C# Coding Conventions ####
82
- [* .cs ]
83
80
84
81
# var preferences
85
82
csharp_style_var_elsewhere = false :silent
@@ -176,7 +173,6 @@ csharp_preserve_single_line_blocks = true
176
173
csharp_preserve_single_line_statements = true
177
174
178
175
# ### Naming styles ####
179
- [* .{cs,vb} ]
180
176
181
177
# Naming rules
182
178
@@ -230,19 +226,19 @@ dotnet_naming_rule.private_static_fields_should_be_s_camelcase.style = s_camelca
230
226
231
227
dotnet_naming_rule.public_constant_fields_should_be_pascalcase.severity = suggestion
232
228
dotnet_naming_rule.public_constant_fields_should_be_pascalcase.symbols = public_constant_fields
233
- dotnet_naming_rule.public_constant_fields_should_be_pascalcase.style = pascalcase
229
+ dotnet_naming_rule.public_constant_fields_should_be_pascalcase.style = all_upper
234
230
235
231
dotnet_naming_rule.private_constant_fields_should_be_pascalcase.severity = suggestion
236
232
dotnet_naming_rule.private_constant_fields_should_be_pascalcase.symbols = private_constant_fields
237
- dotnet_naming_rule.private_constant_fields_should_be_pascalcase.style = pascalcase
233
+ dotnet_naming_rule.private_constant_fields_should_be_pascalcase.style = all_upper
238
234
239
235
dotnet_naming_rule.public_static_readonly_fields_should_be_pascalcase.severity = suggestion
240
236
dotnet_naming_rule.public_static_readonly_fields_should_be_pascalcase.symbols = public_static_readonly_fields
241
- dotnet_naming_rule.public_static_readonly_fields_should_be_pascalcase.style = pascalcase
237
+ dotnet_naming_rule.public_static_readonly_fields_should_be_pascalcase.style = all_upper
242
238
243
239
dotnet_naming_rule.private_static_readonly_fields_should_be_pascalcase.severity = suggestion
244
240
dotnet_naming_rule.private_static_readonly_fields_should_be_pascalcase.symbols = private_static_readonly_fields
245
- dotnet_naming_rule.private_static_readonly_fields_should_be_pascalcase.style = pascalcase
241
+ dotnet_naming_rule.private_static_readonly_fields_should_be_pascalcase.style = all_upper
246
242
247
243
dotnet_naming_rule.enums_should_be_pascalcase.severity = suggestion
248
244
dotnet_naming_rule.enums_should_be_pascalcase.symbols = enums
@@ -366,3 +362,7 @@ dotnet_naming_style.s_camelcase.required_suffix =
366
362
dotnet_naming_style.s_camelcase.word_separator =
367
363
dotnet_naming_style.s_camelcase.capitalization = camel_case
368
364
365
+ dotnet_naming_style.all_upper.required_prefix =
366
+ dotnet_naming_style.all_upper.required_suffix =
367
+ dotnet_naming_style.all_upper.word_separator = _
368
+ dotnet_naming_style.all_upper.capitalization = all_upper
0 commit comments