Visual Studio Settings
This commit is contained in:
parent
66a47413c5
commit
0fd781ca33
336
Visual Studio Settings/.editorconfig
Normal file
336
Visual Studio Settings/.editorconfig
Normal file
@ -0,0 +1,336 @@
|
|||||||
|
# Remove the line below if you want to inherit .editorconfig settings from higher directories
|
||||||
|
root = true
|
||||||
|
|
||||||
|
# C# files
|
||||||
|
[*.cs]
|
||||||
|
|
||||||
|
#### Core EditorConfig Options ####
|
||||||
|
|
||||||
|
# Indentation and spacing
|
||||||
|
indent_size = 4
|
||||||
|
indent_style = space
|
||||||
|
tab_width = 4
|
||||||
|
|
||||||
|
# New line preferences
|
||||||
|
end_of_line = crlf
|
||||||
|
insert_final_newline = false
|
||||||
|
|
||||||
|
#### .NET Coding Conventions ####
|
||||||
|
|
||||||
|
# Organize usings
|
||||||
|
dotnet_separate_import_directive_groups = false
|
||||||
|
dotnet_sort_system_directives_first = false
|
||||||
|
file_header_template = unset
|
||||||
|
|
||||||
|
# this. and Me. preferences
|
||||||
|
dotnet_style_qualification_for_event = false:error
|
||||||
|
dotnet_style_qualification_for_field = false
|
||||||
|
dotnet_style_qualification_for_method = false:error
|
||||||
|
dotnet_style_qualification_for_property = false:error
|
||||||
|
|
||||||
|
# Language keywords vs BCL types preferences
|
||||||
|
dotnet_style_predefined_type_for_locals_parameters_members = true
|
||||||
|
dotnet_style_predefined_type_for_member_access = true
|
||||||
|
|
||||||
|
# Parentheses preferences
|
||||||
|
dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity
|
||||||
|
dotnet_style_parentheses_in_other_binary_operators = always_for_clarity
|
||||||
|
dotnet_style_parentheses_in_other_operators = never_if_unnecessary
|
||||||
|
dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity
|
||||||
|
|
||||||
|
# Modifier preferences
|
||||||
|
dotnet_style_require_accessibility_modifiers = for_non_interface_members
|
||||||
|
|
||||||
|
# Expression-level preferences
|
||||||
|
dotnet_style_coalesce_expression = true
|
||||||
|
dotnet_style_collection_initializer = true
|
||||||
|
dotnet_style_explicit_tuple_names = true
|
||||||
|
dotnet_style_namespace_match_folder = true
|
||||||
|
dotnet_style_null_propagation = true
|
||||||
|
dotnet_style_object_initializer = true
|
||||||
|
dotnet_style_operator_placement_when_wrapping = beginning_of_line
|
||||||
|
dotnet_style_prefer_auto_properties = true
|
||||||
|
dotnet_style_prefer_compound_assignment = true
|
||||||
|
dotnet_style_prefer_conditional_expression_over_assignment = true
|
||||||
|
dotnet_style_prefer_conditional_expression_over_return = true
|
||||||
|
dotnet_style_prefer_inferred_anonymous_type_member_names = true
|
||||||
|
dotnet_style_prefer_inferred_tuple_names = true
|
||||||
|
dotnet_style_prefer_is_null_check_over_reference_equality_method = true
|
||||||
|
dotnet_style_prefer_simplified_boolean_expressions = true
|
||||||
|
dotnet_style_prefer_simplified_interpolation = true
|
||||||
|
|
||||||
|
# Field preferences
|
||||||
|
dotnet_style_readonly_field = true
|
||||||
|
|
||||||
|
# Parameter preferences
|
||||||
|
dotnet_code_quality_unused_parameters = all
|
||||||
|
|
||||||
|
# Suppression preferences
|
||||||
|
dotnet_remove_unnecessary_suppression_exclusions = none
|
||||||
|
|
||||||
|
# New line preferences
|
||||||
|
dotnet_style_allow_multiple_blank_lines_experimental = false
|
||||||
|
dotnet_style_allow_statement_immediately_after_block_experimental = true
|
||||||
|
|
||||||
|
#### C# Coding Conventions ####
|
||||||
|
|
||||||
|
# var preferences
|
||||||
|
csharp_style_var_elsewhere = false
|
||||||
|
csharp_style_var_for_built_in_types = false
|
||||||
|
csharp_style_var_when_type_is_apparent = false
|
||||||
|
|
||||||
|
# Expression-bodied members
|
||||||
|
csharp_style_expression_bodied_accessors = true
|
||||||
|
csharp_style_expression_bodied_constructors = false
|
||||||
|
csharp_style_expression_bodied_indexers = true
|
||||||
|
csharp_style_expression_bodied_lambdas = true
|
||||||
|
csharp_style_expression_bodied_local_functions = false
|
||||||
|
csharp_style_expression_bodied_methods = false
|
||||||
|
csharp_style_expression_bodied_operators = false
|
||||||
|
csharp_style_expression_bodied_properties = true
|
||||||
|
|
||||||
|
# Pattern matching preferences
|
||||||
|
csharp_style_pattern_matching_over_as_with_null_check = true
|
||||||
|
csharp_style_pattern_matching_over_is_with_cast_check = true
|
||||||
|
csharp_style_prefer_not_pattern = true
|
||||||
|
csharp_style_prefer_pattern_matching = true
|
||||||
|
csharp_style_prefer_switch_expression = true
|
||||||
|
|
||||||
|
# Null-checking preferences
|
||||||
|
csharp_style_conditional_delegate_call = true
|
||||||
|
|
||||||
|
# Modifier preferences
|
||||||
|
csharp_prefer_static_local_function = true
|
||||||
|
csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async
|
||||||
|
|
||||||
|
# Code-block preferences
|
||||||
|
csharp_prefer_braces = true
|
||||||
|
csharp_prefer_simple_using_statement = true:silent
|
||||||
|
csharp_style_namespace_declarations = file_scoped
|
||||||
|
|
||||||
|
# Expression-level preferences
|
||||||
|
csharp_prefer_simple_default_expression = true
|
||||||
|
csharp_style_deconstructed_variable_declaration = false
|
||||||
|
csharp_style_implicit_object_creation_when_type_is_apparent = true
|
||||||
|
csharp_style_inlined_variable_declaration = false
|
||||||
|
csharp_style_pattern_local_over_anonymous_function = true
|
||||||
|
csharp_style_prefer_index_operator = true
|
||||||
|
csharp_style_prefer_null_check_over_type_check = true
|
||||||
|
csharp_style_prefer_range_operator = true
|
||||||
|
csharp_style_throw_expression = true
|
||||||
|
csharp_style_unused_value_assignment_preference = discard_variable
|
||||||
|
csharp_style_unused_value_expression_statement_preference = discard_variable
|
||||||
|
|
||||||
|
# 'using' directive preferences
|
||||||
|
csharp_using_directive_placement = outside_namespace
|
||||||
|
|
||||||
|
# New line preferences
|
||||||
|
csharp_style_allow_blank_line_after_colon_in_constructor_initializer_experimental = true
|
||||||
|
csharp_style_allow_blank_lines_between_consecutive_braces_experimental = false
|
||||||
|
csharp_style_allow_embedded_statements_on_same_line_experimental = true
|
||||||
|
|
||||||
|
#### C# Formatting Rules ####
|
||||||
|
|
||||||
|
# New line preferences
|
||||||
|
csharp_new_line_before_catch = true
|
||||||
|
csharp_new_line_before_else = true
|
||||||
|
csharp_new_line_before_finally = true
|
||||||
|
csharp_new_line_before_members_in_anonymous_types = true
|
||||||
|
csharp_new_line_before_members_in_object_initializers = true
|
||||||
|
csharp_new_line_before_open_brace = all
|
||||||
|
csharp_new_line_between_query_expression_clauses = true
|
||||||
|
|
||||||
|
# Indentation preferences
|
||||||
|
csharp_indent_block_contents = true
|
||||||
|
csharp_indent_braces = false
|
||||||
|
csharp_indent_case_contents = true
|
||||||
|
csharp_indent_case_contents_when_block = true
|
||||||
|
csharp_indent_labels = one_less_than_current
|
||||||
|
csharp_indent_switch_labels = true
|
||||||
|
|
||||||
|
# Space preferences
|
||||||
|
csharp_space_after_cast = false
|
||||||
|
csharp_space_after_colon_in_inheritance_clause = true
|
||||||
|
csharp_space_after_comma = true
|
||||||
|
csharp_space_after_dot = false
|
||||||
|
csharp_space_after_keywords_in_control_flow_statements = true
|
||||||
|
csharp_space_after_semicolon_in_for_statement = true
|
||||||
|
csharp_space_around_binary_operators = before_and_after
|
||||||
|
csharp_space_around_declaration_statements = false
|
||||||
|
csharp_space_before_colon_in_inheritance_clause = true
|
||||||
|
csharp_space_before_comma = false
|
||||||
|
csharp_space_before_dot = false
|
||||||
|
csharp_space_before_open_square_brackets = false
|
||||||
|
csharp_space_before_semicolon_in_for_statement = false
|
||||||
|
csharp_space_between_empty_square_brackets = false
|
||||||
|
csharp_space_between_method_call_empty_parameter_list_parentheses = false
|
||||||
|
csharp_space_between_method_call_name_and_opening_parenthesis = false
|
||||||
|
csharp_space_between_method_call_parameter_list_parentheses = false
|
||||||
|
csharp_space_between_method_declaration_empty_parameter_list_parentheses = false
|
||||||
|
csharp_space_between_method_declaration_name_and_open_parenthesis = false
|
||||||
|
csharp_space_between_method_declaration_parameter_list_parentheses = false
|
||||||
|
csharp_space_between_parentheses = false
|
||||||
|
csharp_space_between_square_brackets = false
|
||||||
|
|
||||||
|
# Wrapping preferences
|
||||||
|
csharp_preserve_single_line_blocks = true
|
||||||
|
csharp_preserve_single_line_statements = false
|
||||||
|
|
||||||
|
#### Naming styles ####
|
||||||
|
|
||||||
|
# Naming rules
|
||||||
|
|
||||||
|
dotnet_naming_rule.interface_should_be_begins_with_i.severity = warning
|
||||||
|
dotnet_naming_rule.interface_should_be_begins_with_i.symbols = interface
|
||||||
|
dotnet_naming_rule.interface_should_be_begins_with_i.style = begins_with_i
|
||||||
|
|
||||||
|
dotnet_naming_rule.types_should_be_pascal_case.severity = warning
|
||||||
|
dotnet_naming_rule.types_should_be_pascal_case.symbols = types
|
||||||
|
dotnet_naming_rule.types_should_be_pascal_case.style = pascal_case
|
||||||
|
|
||||||
|
dotnet_naming_rule.private_or_internal_field_should_be_private_of_internal_field.severity = warning
|
||||||
|
dotnet_naming_rule.private_or_internal_field_should_be_private_of_internal_field.symbols = private_or_internal_field
|
||||||
|
dotnet_naming_rule.private_or_internal_field_should_be_private_of_internal_field.style = private_of_internal_field
|
||||||
|
|
||||||
|
dotnet_naming_rule.enum_should_be_pascal_case.severity = warning
|
||||||
|
dotnet_naming_rule.enum_should_be_pascal_case.symbols = enum
|
||||||
|
dotnet_naming_rule.enum_should_be_pascal_case.style = pascal_case
|
||||||
|
|
||||||
|
dotnet_naming_rule.public_or_protected_field_should_be_private_of_internal_field.severity = warning
|
||||||
|
dotnet_naming_rule.public_or_protected_field_should_be_private_of_internal_field.symbols = public_or_protected_field
|
||||||
|
dotnet_naming_rule.public_or_protected_field_should_be_private_of_internal_field.style = private_of_internal_field
|
||||||
|
|
||||||
|
dotnet_naming_rule.class_should_be_pascal_case.severity = warning
|
||||||
|
dotnet_naming_rule.class_should_be_pascal_case.symbols = class
|
||||||
|
dotnet_naming_rule.class_should_be_pascal_case.style = pascal_case
|
||||||
|
|
||||||
|
dotnet_naming_rule.method_should_be_pascal_case.severity = warning
|
||||||
|
dotnet_naming_rule.method_should_be_pascal_case.symbols = method
|
||||||
|
dotnet_naming_rule.method_should_be_pascal_case.style = pascal_case
|
||||||
|
|
||||||
|
dotnet_naming_rule.private_or_internal_static_field_should_be_private_of_internal_field.severity = warning
|
||||||
|
dotnet_naming_rule.private_or_internal_static_field_should_be_private_of_internal_field.symbols = private_or_internal_static_field
|
||||||
|
dotnet_naming_rule.private_or_internal_static_field_should_be_private_of_internal_field.style = private_of_internal_field
|
||||||
|
|
||||||
|
dotnet_naming_rule.static_field_should_be_pascal_case.severity = warning
|
||||||
|
dotnet_naming_rule.static_field_should_be_pascal_case.symbols = static_field
|
||||||
|
dotnet_naming_rule.static_field_should_be_pascal_case.style = pascal_case
|
||||||
|
|
||||||
|
dotnet_naming_rule.property_should_be_pascal_case.severity = warning
|
||||||
|
dotnet_naming_rule.property_should_be_pascal_case.symbols = property
|
||||||
|
dotnet_naming_rule.property_should_be_pascal_case.style = pascal_case
|
||||||
|
|
||||||
|
dotnet_naming_rule.static_method_should_be_pascal_case.severity = warning
|
||||||
|
dotnet_naming_rule.static_method_should_be_pascal_case.symbols = static_method
|
||||||
|
dotnet_naming_rule.static_method_should_be_pascal_case.style = pascal_case
|
||||||
|
|
||||||
|
dotnet_naming_rule.abstract_method_should_be_pascal_case.severity = warning
|
||||||
|
dotnet_naming_rule.abstract_method_should_be_pascal_case.symbols = abstract_method
|
||||||
|
dotnet_naming_rule.abstract_method_should_be_pascal_case.style = pascal_case
|
||||||
|
|
||||||
|
dotnet_naming_rule.private_method_should_be_pascal_case.severity = warning
|
||||||
|
dotnet_naming_rule.private_method_should_be_pascal_case.symbols = private_method
|
||||||
|
dotnet_naming_rule.private_method_should_be_pascal_case.style = pascal_case
|
||||||
|
|
||||||
|
dotnet_naming_rule.event_should_be_pascal_case.severity = warning
|
||||||
|
dotnet_naming_rule.event_should_be_pascal_case.symbols = event
|
||||||
|
dotnet_naming_rule.event_should_be_pascal_case.style = pascal_case
|
||||||
|
|
||||||
|
dotnet_naming_rule.delegate_should_be_pascal_case.severity = warning
|
||||||
|
dotnet_naming_rule.delegate_should_be_pascal_case.symbols = delegate
|
||||||
|
dotnet_naming_rule.delegate_should_be_pascal_case.style = pascal_case
|
||||||
|
|
||||||
|
dotnet_naming_rule.struct_should_be_pascal_case.severity = warning
|
||||||
|
dotnet_naming_rule.struct_should_be_pascal_case.symbols = struct
|
||||||
|
dotnet_naming_rule.struct_should_be_pascal_case.style = pascal_case
|
||||||
|
|
||||||
|
dotnet_naming_rule.non_field_members_should_be_private_of_internal_field.severity = warning
|
||||||
|
dotnet_naming_rule.non_field_members_should_be_private_of_internal_field.symbols = non_field_members
|
||||||
|
dotnet_naming_rule.non_field_members_should_be_private_of_internal_field.style = private_of_internal_field
|
||||||
|
|
||||||
|
# Symbol specifications
|
||||||
|
|
||||||
|
dotnet_naming_symbols.class.applicable_kinds = class
|
||||||
|
dotnet_naming_symbols.class.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||||
|
dotnet_naming_symbols.class.required_modifiers =
|
||||||
|
|
||||||
|
dotnet_naming_symbols.interface.applicable_kinds = interface
|
||||||
|
dotnet_naming_symbols.interface.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||||
|
dotnet_naming_symbols.interface.required_modifiers =
|
||||||
|
|
||||||
|
dotnet_naming_symbols.struct.applicable_kinds = struct
|
||||||
|
dotnet_naming_symbols.struct.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||||
|
dotnet_naming_symbols.struct.required_modifiers =
|
||||||
|
|
||||||
|
dotnet_naming_symbols.enum.applicable_kinds = enum
|
||||||
|
dotnet_naming_symbols.enum.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||||
|
dotnet_naming_symbols.enum.required_modifiers =
|
||||||
|
|
||||||
|
dotnet_naming_symbols.delegate.applicable_kinds = delegate
|
||||||
|
dotnet_naming_symbols.delegate.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||||
|
dotnet_naming_symbols.delegate.required_modifiers =
|
||||||
|
|
||||||
|
dotnet_naming_symbols.event.applicable_kinds = event
|
||||||
|
dotnet_naming_symbols.event.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||||
|
dotnet_naming_symbols.event.required_modifiers =
|
||||||
|
|
||||||
|
dotnet_naming_symbols.method.applicable_kinds = method
|
||||||
|
dotnet_naming_symbols.method.applicable_accessibilities = public
|
||||||
|
dotnet_naming_symbols.method.required_modifiers =
|
||||||
|
|
||||||
|
dotnet_naming_symbols.private_method.applicable_kinds = method
|
||||||
|
dotnet_naming_symbols.private_method.applicable_accessibilities = private
|
||||||
|
dotnet_naming_symbols.private_method.required_modifiers =
|
||||||
|
|
||||||
|
dotnet_naming_symbols.abstract_method.applicable_kinds = method
|
||||||
|
dotnet_naming_symbols.abstract_method.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||||
|
dotnet_naming_symbols.abstract_method.required_modifiers = abstract
|
||||||
|
|
||||||
|
dotnet_naming_symbols.static_method.applicable_kinds = method
|
||||||
|
dotnet_naming_symbols.static_method.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||||
|
dotnet_naming_symbols.static_method.required_modifiers = static
|
||||||
|
|
||||||
|
dotnet_naming_symbols.property.applicable_kinds = property
|
||||||
|
dotnet_naming_symbols.property.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||||
|
dotnet_naming_symbols.property.required_modifiers =
|
||||||
|
|
||||||
|
dotnet_naming_symbols.public_or_protected_field.applicable_kinds = field
|
||||||
|
dotnet_naming_symbols.public_or_protected_field.applicable_accessibilities = public, protected
|
||||||
|
dotnet_naming_symbols.public_or_protected_field.required_modifiers =
|
||||||
|
|
||||||
|
dotnet_naming_symbols.static_field.applicable_kinds = field
|
||||||
|
dotnet_naming_symbols.static_field.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||||
|
dotnet_naming_symbols.static_field.required_modifiers = static
|
||||||
|
|
||||||
|
dotnet_naming_symbols.private_or_internal_field.applicable_kinds = field
|
||||||
|
dotnet_naming_symbols.private_or_internal_field.applicable_accessibilities = internal, private, private_protected
|
||||||
|
dotnet_naming_symbols.private_or_internal_field.required_modifiers =
|
||||||
|
|
||||||
|
dotnet_naming_symbols.private_or_internal_static_field.applicable_kinds = field
|
||||||
|
dotnet_naming_symbols.private_or_internal_static_field.applicable_accessibilities = internal, private, private_protected
|
||||||
|
dotnet_naming_symbols.private_or_internal_static_field.required_modifiers = static
|
||||||
|
|
||||||
|
dotnet_naming_symbols.types.applicable_kinds = class, struct, interface, enum
|
||||||
|
dotnet_naming_symbols.types.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||||
|
dotnet_naming_symbols.types.required_modifiers =
|
||||||
|
|
||||||
|
dotnet_naming_symbols.non_field_members.applicable_kinds = property, event, method
|
||||||
|
dotnet_naming_symbols.non_field_members.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||||
|
dotnet_naming_symbols.non_field_members.required_modifiers =
|
||||||
|
|
||||||
|
# Naming styles
|
||||||
|
|
||||||
|
dotnet_naming_style.pascal_case.required_prefix =
|
||||||
|
dotnet_naming_style.pascal_case.required_suffix =
|
||||||
|
dotnet_naming_style.pascal_case.word_separator =
|
||||||
|
dotnet_naming_style.pascal_case.capitalization = pascal_case
|
||||||
|
|
||||||
|
dotnet_naming_style.begins_with_i.required_prefix = I
|
||||||
|
dotnet_naming_style.begins_with_i.required_suffix =
|
||||||
|
dotnet_naming_style.begins_with_i.word_separator =
|
||||||
|
dotnet_naming_style.begins_with_i.capitalization = pascal_case
|
||||||
|
|
||||||
|
dotnet_naming_style.private_of_internal_field.required_prefix = _
|
||||||
|
dotnet_naming_style.private_of_internal_field.required_suffix =
|
||||||
|
dotnet_naming_style.private_of_internal_field.word_separator =
|
||||||
|
dotnet_naming_style.private_of_internal_field.capitalization = pascal_case
|
472
Visual Studio Settings/AsWarning.vssettings.xml
Normal file
472
Visual Studio Settings/AsWarning.vssettings.xml
Normal file
@ -0,0 +1,472 @@
|
|||||||
|
<UserSettings>
|
||||||
|
<ApplicationIdentity version="17.0"/>
|
||||||
|
<ToolsOptions>
|
||||||
|
<ToolsOptionsCategory name="TextEditor" RegisteredName="TextEditor">
|
||||||
|
<ToolsOptionsSubCategory name="AllLanguages" RegisteredName="AllLanguages" PackageName="Text Management Package"/>
|
||||||
|
<ToolsOptionsSubCategory name="CSharp" RegisteredName="CSharp" PackageName="Text Management Package">
|
||||||
|
<PropertyValue name="TabSize">4</PropertyValue>
|
||||||
|
<PropertyValue name="ShowChanges">true</PropertyValue>
|
||||||
|
<PropertyValue name="AutoListMembers">true</PropertyValue>
|
||||||
|
<PropertyValue name="ShowPreview">true</PropertyValue>
|
||||||
|
<PropertyValue name="ShowMarks">true</PropertyValue>
|
||||||
|
<PropertyValue name="IndentStyle">2</PropertyValue>
|
||||||
|
<PropertyValue name="ShowCaretPosition">true</PropertyValue>
|
||||||
|
<PropertyValue name="HideAdvancedMembers">true</PropertyValue>
|
||||||
|
<PropertyValue name="ShowNavigationBar">true</PropertyValue>
|
||||||
|
<PropertyValue name="UseMapMode">true</PropertyValue>
|
||||||
|
<PropertyValue name="VirtualSpace">false</PropertyValue>
|
||||||
|
<PropertyValue name="ShowAnnotations">true</PropertyValue>
|
||||||
|
<PropertyValue name="ShowVerticalScrollBar">true</PropertyValue>
|
||||||
|
<PropertyValue name="InsertTabs">false</PropertyValue>
|
||||||
|
<PropertyValue name="WordWrapGlyphs">false</PropertyValue>
|
||||||
|
<PropertyValue name="EnableLeftClickForURLs">true</PropertyValue>
|
||||||
|
<PropertyValue name="ShowErrors">true</PropertyValue>
|
||||||
|
<PropertyValue name="OverviewWidth">58</PropertyValue>
|
||||||
|
<PropertyValue name="ShowLineNumbers">true</PropertyValue>
|
||||||
|
<PropertyValue name="WordWrap">false</PropertyValue>
|
||||||
|
<PropertyValue name="IndentSize">4</PropertyValue>
|
||||||
|
<PropertyValue name="BraceCompletion">true</PropertyValue>
|
||||||
|
<PropertyValue name="ShowHorizontalScrollBar">true</PropertyValue>
|
||||||
|
<PropertyValue name="CutCopyBlankLines">true</PropertyValue>
|
||||||
|
<PropertyValue name="AutoListParams">true</PropertyValue>
|
||||||
|
</ToolsOptionsSubCategory>
|
||||||
|
<ToolsOptionsSubCategory name="CSharp-Specific" RegisteredName="CSharp-Specific" PackageName="CSharpPackage">
|
||||||
|
<PropertyValue name="Style_RemoveUnnecessarySuppressionExclusions">0</PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferExpressionBodiedConstructors"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="false" DiagnosticSeverity="Hidden" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferPatternMatching"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Hidden" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_UseVarWhenDeclaringLocals">0</PropertyValue>
|
||||||
|
<PropertyValue name="Formatting_TriggerOnPaste">1</PropertyValue>
|
||||||
|
<PropertyValue name="Space_AroundBinaryOperator">0</PropertyValue>
|
||||||
|
<PropertyValue name="NewLines_QueryExpression_EachClause">1</PropertyValue>
|
||||||
|
<PropertyValue name="Style_AllowMultipleBlankLines"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="false" DiagnosticSeverity="Hidden" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_UseImplicitTypeWhereApparent"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="false" DiagnosticSeverity="Hidden" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferInferredTupleNames"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Info" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_QualifyMethodAccess"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="false" DiagnosticSeverity="Error" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferIntrinsicPredefinedTypeKeywordInDeclaration_CodeStyle"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Hidden" /></PropertyValue>
|
||||||
|
<PropertyValue name="SkipAnalyzersForImplicitlyTriggeredBuilds">1</PropertyValue>
|
||||||
|
<PropertyValue name="OfferRemoveUnusedReferences">1</PropertyValue>
|
||||||
|
<PropertyValue name="AutoInsertAsteriskForNewLinesOfBlockComments">1</PropertyValue>
|
||||||
|
<PropertyValue name="Fading_FadeOutUnusedImports">1</PropertyValue>
|
||||||
|
<PropertyValue name="ExtractMethod_DoNotPutOutOrRefOnStruct">1</PropertyValue>
|
||||||
|
<PropertyValue name="ShowItemsFromUnimportedNamespaces">-1</PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferCompoundAssignment"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Info" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferExpressionBodiedAccessors"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Hidden" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferExpressionBodiedOperators"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="false" DiagnosticSeverity="Hidden" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferCoalesceExpression"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Info" /></PropertyValue>
|
||||||
|
<PropertyValue name="HighlightReferences">1</PropertyValue>
|
||||||
|
<PropertyValue name="NewLines_Braces_Method">1</PropertyValue>
|
||||||
|
<PropertyValue name="AddImport_SuggestForTypesInReferenceAssemblies">1</PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferredModifierOrder"><CodeStyleOption SerializationVersion="1" Type="String" Value="public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async" DiagnosticSeverity="Hidden" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_RequireAccessibilityModifiers"><CodeStyleOption SerializationVersion="1" Type="Int32" Value="2" DiagnosticSeverity="Hidden" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferObjectInitializer_FadeOutCode">0</PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferPatternMatchingOverIsWithCastCheck"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Info" /></PropertyValue>
|
||||||
|
<PropertyValue name="EnableHighlightRelatedKeywords">1</PropertyValue>
|
||||||
|
<PropertyValue name="Indent_CaseLabels">1</PropertyValue>
|
||||||
|
<PropertyValue name="ExtractMethod_AllowBestEffort">1</PropertyValue>
|
||||||
|
<PropertyValue name="InsertNewlineOnEnterWithWholeWord">0</PropertyValue>
|
||||||
|
<PropertyValue name="Formatting_TriggerOnBlockCompletion">1</PropertyValue>
|
||||||
|
<PropertyValue name="Style_UnusedValueAssignment"><CodeStyleOption SerializationVersion="1" Type="Int32" Value="2" DiagnosticSeverity="Info" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferInlinedVariableDeclaration"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="false" DiagnosticSeverity="Info" /></PropertyValue>
|
||||||
|
<PropertyValue name="NavigateToDecompiledSources">1</PropertyValue>
|
||||||
|
<PropertyValue name="Space_WithinOtherParentheses">0</PropertyValue>
|
||||||
|
<PropertyValue name="NewLines_Braces_ControlFlow">1</PropertyValue>
|
||||||
|
<PropertyValue name="NewLines_Braces_AnonymousMethod">1</PropertyValue>
|
||||||
|
<PropertyValue name="Fading_FadeOutUnreachableCode">1</PropertyValue>
|
||||||
|
<PropertyValue name="HighlightMatchingPortionsOfCompletionListItems">1</PropertyValue>
|
||||||
|
<PropertyValue name="BringUpOnIdentifier">1</PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferConditionalExpressionOverReturn"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Hidden" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferExplicitTupleNames"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Info" /></PropertyValue>
|
||||||
|
<PropertyValue name="AutomaticallyCompleteStatementOnSemicolon">1</PropertyValue>
|
||||||
|
<PropertyValue name="AddImportsOnPaste">-1</PropertyValue>
|
||||||
|
<PropertyValue name="DisplayLineSeparators">0</PropertyValue>
|
||||||
|
<PropertyValue name="Wrapping_KeepStatementsOnSingleLine">0</PropertyValue>
|
||||||
|
<PropertyValue name="Space_AfterBasesColon">1</PropertyValue>
|
||||||
|
<PropertyValue name="Indent_Braces">0</PropertyValue>
|
||||||
|
<PropertyValue name="EnterKeyBehavior">0</PropertyValue>
|
||||||
|
<PropertyValue name="AddImport_SuggestForTypesInNuGetPackages">1</PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferIndexOperator"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Info" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferDeconstructedVariableDeclaration"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="false" DiagnosticSeverity="Info" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferPatternMatchingOverAsWithNullCheck"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Info" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferConditionalDelegateCall"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Info" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_UseImplicitTypeForIntrinsicTypes"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="false" DiagnosticSeverity="Hidden" /></PropertyValue>
|
||||||
|
<PropertyValue name="WarnOnBuildErrors">0</PropertyValue>
|
||||||
|
<PropertyValue name="SortUsings_PlaceSystemFirst">0</PropertyValue>
|
||||||
|
<PropertyValue name="Wrapping_IgnoreSpacesAroundVariableDeclaration">0</PropertyValue>
|
||||||
|
<PropertyValue name="Space_WithinMethodCallParentheses">0</PropertyValue>
|
||||||
|
<PropertyValue name="Space_AfterCast">0</PropertyValue>
|
||||||
|
<PropertyValue name="Style_ImplicitObjectCreationWhenTypeIsApparent"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Info" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferLocalOverAnonymousFunction"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Info" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferNamespaceAndFolderMatchStructure"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Info" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferSimplifiedInterpolation"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Info" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_QualifyEventAccess"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="false" DiagnosticSeverity="Error" /></PropertyValue>
|
||||||
|
<PropertyValue name="ShowSnippets">0</PropertyValue>
|
||||||
|
<PropertyValue name="ShowKeywords">0</PropertyValue>
|
||||||
|
<PropertyValue name="Style_NamingPreferences"><NamingPreferencesInfo SerializationVersion="5">
|
||||||
|
<SymbolSpecifications>
|
||||||
|
<SymbolSpecification ID="5c545a62-b14d-460a-88d8-e936c0a39316" Name="Class">
|
||||||
|
<ApplicableSymbolKindList>
|
||||||
|
<TypeKind>Class</TypeKind>
|
||||||
|
</ApplicableSymbolKindList>
|
||||||
|
<ApplicableAccessibilityList>
|
||||||
|
<AccessibilityKind>Public</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Internal</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Private</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Protected</AccessibilityKind>
|
||||||
|
<AccessibilityKind>ProtectedOrInternal</AccessibilityKind>
|
||||||
|
<AccessibilityKind>ProtectedAndInternal</AccessibilityKind>
|
||||||
|
</ApplicableAccessibilityList>
|
||||||
|
<RequiredModifierList />
|
||||||
|
</SymbolSpecification>
|
||||||
|
<SymbolSpecification ID="23d856b4-5089-4405-83ce-749aada99153" Name="Interface">
|
||||||
|
<ApplicableSymbolKindList>
|
||||||
|
<TypeKind>Interface</TypeKind>
|
||||||
|
</ApplicableSymbolKindList>
|
||||||
|
<ApplicableAccessibilityList>
|
||||||
|
<AccessibilityKind>Public</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Internal</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Private</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Protected</AccessibilityKind>
|
||||||
|
<AccessibilityKind>ProtectedOrInternal</AccessibilityKind>
|
||||||
|
<AccessibilityKind>ProtectedAndInternal</AccessibilityKind>
|
||||||
|
</ApplicableAccessibilityList>
|
||||||
|
<RequiredModifierList />
|
||||||
|
</SymbolSpecification>
|
||||||
|
<SymbolSpecification ID="d1796e78-ff66-463f-8576-eb46416060c0" Name="Struct">
|
||||||
|
<ApplicableSymbolKindList>
|
||||||
|
<TypeKind>Struct</TypeKind>
|
||||||
|
</ApplicableSymbolKindList>
|
||||||
|
<ApplicableAccessibilityList>
|
||||||
|
<AccessibilityKind>Public</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Internal</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Private</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Protected</AccessibilityKind>
|
||||||
|
<AccessibilityKind>ProtectedOrInternal</AccessibilityKind>
|
||||||
|
<AccessibilityKind>ProtectedAndInternal</AccessibilityKind>
|
||||||
|
</ApplicableAccessibilityList>
|
||||||
|
<RequiredModifierList />
|
||||||
|
</SymbolSpecification>
|
||||||
|
<SymbolSpecification ID="d8af8dc6-1ade-441d-9947-8946922e198a" Name="Enum">
|
||||||
|
<ApplicableSymbolKindList>
|
||||||
|
<TypeKind>Enum</TypeKind>
|
||||||
|
</ApplicableSymbolKindList>
|
||||||
|
<ApplicableAccessibilityList>
|
||||||
|
<AccessibilityKind>Public</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Internal</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Private</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Protected</AccessibilityKind>
|
||||||
|
<AccessibilityKind>ProtectedOrInternal</AccessibilityKind>
|
||||||
|
<AccessibilityKind>ProtectedAndInternal</AccessibilityKind>
|
||||||
|
</ApplicableAccessibilityList>
|
||||||
|
<RequiredModifierList />
|
||||||
|
</SymbolSpecification>
|
||||||
|
<SymbolSpecification ID="408a3347-b908-4b54-a954-1355e64c1de3" Name="Delegate">
|
||||||
|
<ApplicableSymbolKindList>
|
||||||
|
<TypeKind>Delegate</TypeKind>
|
||||||
|
</ApplicableSymbolKindList>
|
||||||
|
<ApplicableAccessibilityList>
|
||||||
|
<AccessibilityKind>Public</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Internal</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Private</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Protected</AccessibilityKind>
|
||||||
|
<AccessibilityKind>ProtectedOrInternal</AccessibilityKind>
|
||||||
|
<AccessibilityKind>ProtectedAndInternal</AccessibilityKind>
|
||||||
|
</ApplicableAccessibilityList>
|
||||||
|
<RequiredModifierList />
|
||||||
|
</SymbolSpecification>
|
||||||
|
<SymbolSpecification ID="830657f6-e7e5-4830-b328-f109d3b6c165" Name="Event">
|
||||||
|
<ApplicableSymbolKindList>
|
||||||
|
<SymbolKind>Event</SymbolKind>
|
||||||
|
</ApplicableSymbolKindList>
|
||||||
|
<ApplicableAccessibilityList>
|
||||||
|
<AccessibilityKind>Public</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Internal</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Private</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Protected</AccessibilityKind>
|
||||||
|
<AccessibilityKind>ProtectedOrInternal</AccessibilityKind>
|
||||||
|
<AccessibilityKind>ProtectedAndInternal</AccessibilityKind>
|
||||||
|
</ApplicableAccessibilityList>
|
||||||
|
<RequiredModifierList />
|
||||||
|
</SymbolSpecification>
|
||||||
|
<SymbolSpecification ID="390caed4-f0a9-42bb-adbb-b44c4a302a22" Name="Method">
|
||||||
|
<ApplicableSymbolKindList>
|
||||||
|
<MethodKind>Ordinary</MethodKind>
|
||||||
|
</ApplicableSymbolKindList>
|
||||||
|
<ApplicableAccessibilityList>
|
||||||
|
<AccessibilityKind>Public</AccessibilityKind>
|
||||||
|
</ApplicableAccessibilityList>
|
||||||
|
<RequiredModifierList />
|
||||||
|
</SymbolSpecification>
|
||||||
|
<SymbolSpecification ID="af410767-f189-47c6-b140-aeccf1ff242e" Name="Private Method">
|
||||||
|
<ApplicableSymbolKindList>
|
||||||
|
<MethodKind>Ordinary</MethodKind>
|
||||||
|
</ApplicableSymbolKindList>
|
||||||
|
<ApplicableAccessibilityList>
|
||||||
|
<AccessibilityKind>Private</AccessibilityKind>
|
||||||
|
</ApplicableAccessibilityList>
|
||||||
|
<RequiredModifierList />
|
||||||
|
</SymbolSpecification>
|
||||||
|
<SymbolSpecification ID="8076757e-6a4a-47f1-9b4b-ae8a3284e987" Name="Abstract Method">
|
||||||
|
<ApplicableSymbolKindList>
|
||||||
|
<MethodKind>Ordinary</MethodKind>
|
||||||
|
</ApplicableSymbolKindList>
|
||||||
|
<ApplicableAccessibilityList>
|
||||||
|
<AccessibilityKind>Public</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Internal</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Private</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Protected</AccessibilityKind>
|
||||||
|
<AccessibilityKind>ProtectedOrInternal</AccessibilityKind>
|
||||||
|
<AccessibilityKind>ProtectedAndInternal</AccessibilityKind>
|
||||||
|
</ApplicableAccessibilityList>
|
||||||
|
<RequiredModifierList>
|
||||||
|
<ModifierKind>IsAbstract</ModifierKind>
|
||||||
|
</RequiredModifierList>
|
||||||
|
</SymbolSpecification>
|
||||||
|
<SymbolSpecification ID="16133061-a8e7-4392-92c3-1d93cd54c218" Name="Static Method">
|
||||||
|
<ApplicableSymbolKindList>
|
||||||
|
<MethodKind>Ordinary</MethodKind>
|
||||||
|
</ApplicableSymbolKindList>
|
||||||
|
<ApplicableAccessibilityList>
|
||||||
|
<AccessibilityKind>Public</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Internal</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Private</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Protected</AccessibilityKind>
|
||||||
|
<AccessibilityKind>ProtectedOrInternal</AccessibilityKind>
|
||||||
|
<AccessibilityKind>ProtectedAndInternal</AccessibilityKind>
|
||||||
|
</ApplicableAccessibilityList>
|
||||||
|
<RequiredModifierList>
|
||||||
|
<ModifierKind>IsStatic</ModifierKind>
|
||||||
|
</RequiredModifierList>
|
||||||
|
</SymbolSpecification>
|
||||||
|
<SymbolSpecification ID="da6a2919-5aa6-4ad1-a24d-576776ed3974" Name="Property">
|
||||||
|
<ApplicableSymbolKindList>
|
||||||
|
<SymbolKind>Property</SymbolKind>
|
||||||
|
</ApplicableSymbolKindList>
|
||||||
|
<ApplicableAccessibilityList>
|
||||||
|
<AccessibilityKind>Public</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Internal</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Private</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Protected</AccessibilityKind>
|
||||||
|
<AccessibilityKind>ProtectedOrInternal</AccessibilityKind>
|
||||||
|
<AccessibilityKind>ProtectedAndInternal</AccessibilityKind>
|
||||||
|
</ApplicableAccessibilityList>
|
||||||
|
<RequiredModifierList />
|
||||||
|
</SymbolSpecification>
|
||||||
|
<SymbolSpecification ID="b24a91ce-3501-4799-b6df-baf044156c83" Name="Public or Protected Field">
|
||||||
|
<ApplicableSymbolKindList>
|
||||||
|
<SymbolKind>Field</SymbolKind>
|
||||||
|
</ApplicableSymbolKindList>
|
||||||
|
<ApplicableAccessibilityList>
|
||||||
|
<AccessibilityKind>Public</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Protected</AccessibilityKind>
|
||||||
|
</ApplicableAccessibilityList>
|
||||||
|
<RequiredModifierList />
|
||||||
|
</SymbolSpecification>
|
||||||
|
<SymbolSpecification ID="70af42cb-1741-4027-969c-9edc4877d965" Name="Static Field">
|
||||||
|
<ApplicableSymbolKindList>
|
||||||
|
<SymbolKind>Field</SymbolKind>
|
||||||
|
</ApplicableSymbolKindList>
|
||||||
|
<ApplicableAccessibilityList>
|
||||||
|
<AccessibilityKind>Public</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Internal</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Private</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Protected</AccessibilityKind>
|
||||||
|
<AccessibilityKind>ProtectedOrInternal</AccessibilityKind>
|
||||||
|
<AccessibilityKind>ProtectedAndInternal</AccessibilityKind>
|
||||||
|
</ApplicableAccessibilityList>
|
||||||
|
<RequiredModifierList>
|
||||||
|
<ModifierKind>IsStatic</ModifierKind>
|
||||||
|
</RequiredModifierList>
|
||||||
|
</SymbolSpecification>
|
||||||
|
<SymbolSpecification ID="10790aa6-0a0b-432d-a52d-d252ca92302b" Name="Private or Internal Field">
|
||||||
|
<ApplicableSymbolKindList>
|
||||||
|
<SymbolKind>Field</SymbolKind>
|
||||||
|
</ApplicableSymbolKindList>
|
||||||
|
<ApplicableAccessibilityList>
|
||||||
|
<AccessibilityKind>Internal</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Private</AccessibilityKind>
|
||||||
|
<AccessibilityKind>ProtectedAndInternal</AccessibilityKind>
|
||||||
|
</ApplicableAccessibilityList>
|
||||||
|
<RequiredModifierList />
|
||||||
|
</SymbolSpecification>
|
||||||
|
<SymbolSpecification ID="ac995be4-88de-4771-9dcc-a456a7c02d89" Name="Private or Internal Static Field">
|
||||||
|
<ApplicableSymbolKindList>
|
||||||
|
<SymbolKind>Field</SymbolKind>
|
||||||
|
</ApplicableSymbolKindList>
|
||||||
|
<ApplicableAccessibilityList>
|
||||||
|
<AccessibilityKind>Internal</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Private</AccessibilityKind>
|
||||||
|
<AccessibilityKind>ProtectedAndInternal</AccessibilityKind>
|
||||||
|
</ApplicableAccessibilityList>
|
||||||
|
<RequiredModifierList>
|
||||||
|
<ModifierKind>IsStatic</ModifierKind>
|
||||||
|
</RequiredModifierList>
|
||||||
|
</SymbolSpecification>
|
||||||
|
<SymbolSpecification ID="2c07f5bf-bc81-4c2b-82b4-ae9b3ffd0ba4" Name="Types">
|
||||||
|
<ApplicableSymbolKindList>
|
||||||
|
<TypeKind>Class</TypeKind>
|
||||||
|
<TypeKind>Struct</TypeKind>
|
||||||
|
<TypeKind>Interface</TypeKind>
|
||||||
|
<TypeKind>Enum</TypeKind>
|
||||||
|
</ApplicableSymbolKindList>
|
||||||
|
<ApplicableAccessibilityList>
|
||||||
|
<AccessibilityKind>Public</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Internal</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Private</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Protected</AccessibilityKind>
|
||||||
|
<AccessibilityKind>ProtectedOrInternal</AccessibilityKind>
|
||||||
|
<AccessibilityKind>ProtectedAndInternal</AccessibilityKind>
|
||||||
|
</ApplicableAccessibilityList>
|
||||||
|
<RequiredModifierList />
|
||||||
|
</SymbolSpecification>
|
||||||
|
<SymbolSpecification ID="5f3ddba1-279f-486c-801e-5c097c36dd85" Name="Non-Field Members">
|
||||||
|
<ApplicableSymbolKindList>
|
||||||
|
<SymbolKind>Property</SymbolKind>
|
||||||
|
<SymbolKind>Event</SymbolKind>
|
||||||
|
<MethodKind>Ordinary</MethodKind>
|
||||||
|
</ApplicableSymbolKindList>
|
||||||
|
<ApplicableAccessibilityList>
|
||||||
|
<AccessibilityKind>Public</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Internal</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Private</AccessibilityKind>
|
||||||
|
<AccessibilityKind>Protected</AccessibilityKind>
|
||||||
|
<AccessibilityKind>ProtectedOrInternal</AccessibilityKind>
|
||||||
|
<AccessibilityKind>ProtectedAndInternal</AccessibilityKind>
|
||||||
|
</ApplicableAccessibilityList>
|
||||||
|
<RequiredModifierList />
|
||||||
|
</SymbolSpecification>
|
||||||
|
</SymbolSpecifications>
|
||||||
|
<NamingStyles>
|
||||||
|
<NamingStyle ID="87e7c501-9948-4b53-b1eb-a6cbe918feee" Name="Pascal Case" Prefix="" Suffix="" WordSeparator="" CapitalizationScheme="PascalCase" />
|
||||||
|
<NamingStyle ID="1ecc5eb6-b5fc-49a5-a9f1-a980f3e48c92" Name="Begins with I" Prefix="I" Suffix="" WordSeparator="" CapitalizationScheme="PascalCase" />
|
||||||
|
<NamingStyle ID="e990f1fe-0d28-4414-b9f3-1fd6e2c03ec7" Name="Private of Internal Field" Prefix="_" Suffix="" WordSeparator="" CapitalizationScheme="PascalCase" />
|
||||||
|
</NamingStyles>
|
||||||
|
<NamingRules>
|
||||||
|
<SerializableNamingRule SymbolSpecificationID="23d856b4-5089-4405-83ce-749aada99153" NamingStyleID="1ecc5eb6-b5fc-49a5-a9f1-a980f3e48c92" EnforcementLevel="Warning" />
|
||||||
|
<SerializableNamingRule SymbolSpecificationID="2c07f5bf-bc81-4c2b-82b4-ae9b3ffd0ba4" NamingStyleID="87e7c501-9948-4b53-b1eb-a6cbe918feee" EnforcementLevel="Warning" />
|
||||||
|
<SerializableNamingRule SymbolSpecificationID="10790aa6-0a0b-432d-a52d-d252ca92302b" NamingStyleID="e990f1fe-0d28-4414-b9f3-1fd6e2c03ec7" EnforcementLevel="Warning" />
|
||||||
|
<SerializableNamingRule SymbolSpecificationID="d8af8dc6-1ade-441d-9947-8946922e198a" NamingStyleID="87e7c501-9948-4b53-b1eb-a6cbe918feee" EnforcementLevel="Warning" />
|
||||||
|
<SerializableNamingRule SymbolSpecificationID="b24a91ce-3501-4799-b6df-baf044156c83" NamingStyleID="e990f1fe-0d28-4414-b9f3-1fd6e2c03ec7" EnforcementLevel="Warning" />
|
||||||
|
<SerializableNamingRule SymbolSpecificationID="5c545a62-b14d-460a-88d8-e936c0a39316" NamingStyleID="87e7c501-9948-4b53-b1eb-a6cbe918feee" EnforcementLevel="Warning" />
|
||||||
|
<SerializableNamingRule SymbolSpecificationID="390caed4-f0a9-42bb-adbb-b44c4a302a22" NamingStyleID="87e7c501-9948-4b53-b1eb-a6cbe918feee" EnforcementLevel="Warning" />
|
||||||
|
<SerializableNamingRule SymbolSpecificationID="ac995be4-88de-4771-9dcc-a456a7c02d89" NamingStyleID="e990f1fe-0d28-4414-b9f3-1fd6e2c03ec7" EnforcementLevel="Warning" />
|
||||||
|
<SerializableNamingRule SymbolSpecificationID="70af42cb-1741-4027-969c-9edc4877d965" NamingStyleID="87e7c501-9948-4b53-b1eb-a6cbe918feee" EnforcementLevel="Warning" />
|
||||||
|
<SerializableNamingRule SymbolSpecificationID="da6a2919-5aa6-4ad1-a24d-576776ed3974" NamingStyleID="87e7c501-9948-4b53-b1eb-a6cbe918feee" EnforcementLevel="Warning" />
|
||||||
|
<SerializableNamingRule SymbolSpecificationID="16133061-a8e7-4392-92c3-1d93cd54c218" NamingStyleID="87e7c501-9948-4b53-b1eb-a6cbe918feee" EnforcementLevel="Warning" />
|
||||||
|
<SerializableNamingRule SymbolSpecificationID="8076757e-6a4a-47f1-9b4b-ae8a3284e987" NamingStyleID="87e7c501-9948-4b53-b1eb-a6cbe918feee" EnforcementLevel="Warning" />
|
||||||
|
<SerializableNamingRule SymbolSpecificationID="af410767-f189-47c6-b140-aeccf1ff242e" NamingStyleID="87e7c501-9948-4b53-b1eb-a6cbe918feee" EnforcementLevel="Warning" />
|
||||||
|
<SerializableNamingRule SymbolSpecificationID="830657f6-e7e5-4830-b328-f109d3b6c165" NamingStyleID="87e7c501-9948-4b53-b1eb-a6cbe918feee" EnforcementLevel="Warning" />
|
||||||
|
<SerializableNamingRule SymbolSpecificationID="408a3347-b908-4b54-a954-1355e64c1de3" NamingStyleID="87e7c501-9948-4b53-b1eb-a6cbe918feee" EnforcementLevel="Warning" />
|
||||||
|
<SerializableNamingRule SymbolSpecificationID="d1796e78-ff66-463f-8576-eb46416060c0" NamingStyleID="87e7c501-9948-4b53-b1eb-a6cbe918feee" EnforcementLevel="Warning" />
|
||||||
|
<SerializableNamingRule SymbolSpecificationID="5f3ddba1-279f-486c-801e-5c097c36dd85" NamingStyleID="e990f1fe-0d28-4414-b9f3-1fd6e2c03ec7" EnforcementLevel="Warning" />
|
||||||
|
</NamingRules>
|
||||||
|
</NamingPreferencesInfo></PropertyValue>
|
||||||
|
<PropertyValue name="SortUsings_SeparateImportDirectiveGroups">0</PropertyValue>
|
||||||
|
<PropertyValue name="Style_NamespaceDeclarations"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Hidden" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferredUsingDirectivePlacement"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Hidden" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferNotPattern"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Info" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferConditionalExpressionOverAssignment"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Hidden" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferExpressionBodiedLambdas"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Hidden" /></PropertyValue>
|
||||||
|
<PropertyValue name="CSharpClosedFileDiagnostics">0</PropertyValue>
|
||||||
|
<PropertyValue name="ClosedFileDiagnostics">0</PropertyValue>
|
||||||
|
<PropertyValue name="AutoFormattingOnTyping">1</PropertyValue>
|
||||||
|
<PropertyValue name="Formatting_TriggerOnStatementCompletion">1</PropertyValue>
|
||||||
|
<PropertyValue name="Space_WithinExpressionParentheses">0</PropertyValue>
|
||||||
|
<PropertyValue name="Space_InControlFlowConstruct">1</PropertyValue>
|
||||||
|
<PropertyValue name="NewLines_Keywords_Catch">1</PropertyValue>
|
||||||
|
<PropertyValue name="NewLines_Braces_ObjectInitializer">1</PropertyValue>
|
||||||
|
<PropertyValue name="NewLines_AnonymousTypeInitializer_EachMember">1</PropertyValue>
|
||||||
|
<PropertyValue name="Style_AllowBlankLineAfterColonInConstructorInitializer"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Hidden" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_UnusedValueExpressionStatement"><CodeStyleOption SerializationVersion="1" Type="Int32" Value="2" DiagnosticSeverity="Hidden" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_AllowStatementImmediatelyAfterBlock"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Hidden" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferAutoProperties"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Hidden" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferBraces"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Hidden" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferExpressionBodiedLocalFunctions"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="false" DiagnosticSeverity="Hidden" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferIntrinsicPredefinedTypeKeywordInMemberAccess_CodeStyle"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Hidden" /></PropertyValue>
|
||||||
|
<PropertyValue name="Space_BetweenEmptyMethodDeclarationParentheses">0</PropertyValue>
|
||||||
|
<PropertyValue name="NewLines_Keywords_Finally">1</PropertyValue>
|
||||||
|
<PropertyValue name="Indent_UnindentLabels">1</PropertyValue>
|
||||||
|
<PropertyValue name="Style_AllowBlankLinesBetweenConsecutiveBraces"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="false" DiagnosticSeverity="Hidden" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferReadonly"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Info" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferNullPropagation"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Info" /></PropertyValue>
|
||||||
|
<PropertyValue name="NewLines_ObjectInitializer_EachMember">1</PropertyValue>
|
||||||
|
<PropertyValue name="NewLines_Keywords_Else">1</PropertyValue>
|
||||||
|
<PropertyValue name="Style_AllowEmbeddedStatementsOnSameLine"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Hidden" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferSimpleUsingStatement"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Hidden" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferSimpleDefaultExpression"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Info" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferSystemHashCode"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Hidden" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferCollectionInitializer_FadeOutCode">0</PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferExpressionBodiedIndexers"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Hidden" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferInferredAnonymousTypeMemberNames"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Info" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferObjectInitializer"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Info" /></PropertyValue>
|
||||||
|
<PropertyValue name="UseEnhancedColors">-2</PropertyValue>
|
||||||
|
<PropertyValue name="Space_WithinMethodDeclarationParentheses">0</PropertyValue>
|
||||||
|
<PropertyValue name="Space_BetweenEmptyMethodCallParentheses">0</PropertyValue>
|
||||||
|
<PropertyValue name="Space_BeforeSemicolonsInForStatement">0</PropertyValue>
|
||||||
|
<PropertyValue name="Space_BeforeComma">0</PropertyValue>
|
||||||
|
<PropertyValue name="Space_AfterMethodCallName">0</PropertyValue>
|
||||||
|
<PropertyValue name="Space_AfterComma">1</PropertyValue>
|
||||||
|
<PropertyValue name="NewLines_Braces_Property">1</PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferIsNullCheckOverReferenceEqualityMethod"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Info" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferCollectionInitializer"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Info" /></PropertyValue>
|
||||||
|
<PropertyValue name="RenameTrackingPreview">1</PropertyValue>
|
||||||
|
<PropertyValue name="Wrapping_IgnoreSpacesAroundBinaryOperators">0</PropertyValue>
|
||||||
|
<PropertyValue name="Space_BeforeBasesColon">1</PropertyValue>
|
||||||
|
<PropertyValue name="Space_AfterMethodDeclarationName">0</PropertyValue>
|
||||||
|
<PropertyValue name="Space_AfterDot">0</PropertyValue>
|
||||||
|
<PropertyValue name="AutoComment">1</PropertyValue>
|
||||||
|
<PropertyValue name="EnableArgumentCompletionSnippets">-1</PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferSimplifiedBooleanExpressions"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Info" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferExpressionBodiedProperties"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Hidden" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferSwitchExpression"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Info" /></PropertyValue>
|
||||||
|
<PropertyValue name="EnterOutliningModeOnOpen">1</PropertyValue>
|
||||||
|
<PropertyValue name="NewLines_Braces_Type">1</PropertyValue>
|
||||||
|
<PropertyValue name="TriggerInArgumentLists">1</PropertyValue>
|
||||||
|
<PropertyValue name="SnippetsBehavior">0</PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferExpressionBodiedMethods"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="false" DiagnosticSeverity="Hidden" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferThrowExpression"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Info" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_QualifyPropertyAccess"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="false" DiagnosticSeverity="Error" /></PropertyValue>
|
||||||
|
<PropertyValue name="Space_WithinSquares">0</PropertyValue>
|
||||||
|
<PropertyValue name="NewLines_Braces_Accessor">1</PropertyValue>
|
||||||
|
<PropertyValue name="NewLines_Braces_LambdaExpressionBody">1</PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferStaticLocalFunction"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Info" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferRangeOperator"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Info" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_PreferNullCheckOverTypeCheck"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="true" DiagnosticSeverity="Info" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_UseImplicitTypeWherePossible"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="false" DiagnosticSeverity="Hidden" /></PropertyValue>
|
||||||
|
<PropertyValue name="Style_QualifyFieldAccess"><CodeStyleOption SerializationVersion="1" Type="Boolean" Value="false" DiagnosticSeverity="Hidden" /></PropertyValue>
|
||||||
|
<PropertyValue name="Space_WithinCastParentheses">0</PropertyValue>
|
||||||
|
<PropertyValue name="Space_AfterSemicolonsInForStatement">1</PropertyValue>
|
||||||
|
<PropertyValue name="NewLines_Braces_AnonymousTypeInitializer">1</PropertyValue>
|
||||||
|
<PropertyValue name="Indent_FlushLabelsLeft">1</PropertyValue>
|
||||||
|
<PropertyValue name="Indent_CaseContents">1</PropertyValue>
|
||||||
|
<PropertyValue name="RenameSmartTagEnabled">1</PropertyValue>
|
||||||
|
<PropertyValue name="Refactoring_Verification_Enabled">0</PropertyValue>
|
||||||
|
<PropertyValue name="Wrapping_PreserveSingleLine">1</PropertyValue>
|
||||||
|
<PropertyValue name="Space_BetweenEmptySquares">0</PropertyValue>
|
||||||
|
<PropertyValue name="Space_BeforeOpenSquare">0</PropertyValue>
|
||||||
|
<PropertyValue name="Space_BeforeDot">0</PropertyValue>
|
||||||
|
<PropertyValue name="Indent_CaseContentsWhenBlock">1</PropertyValue>
|
||||||
|
<PropertyValue name="Indent_BlockContents">1</PropertyValue>
|
||||||
|
<PropertyValue name="ShowCompletionItemFilters">1</PropertyValue>
|
||||||
|
</ToolsOptionsSubCategory>
|
||||||
|
</ToolsOptionsCategory>
|
||||||
|
</ToolsOptions>
|
||||||
|
<Category name="Text Editor_Advanced" Category="{efd55f3d-23c1-4a1d-a58b-77295611c7d4}" Package="{e269b994-ef71-4ce0-8bcd-581c217372e8}" RegisteredName="Text Editor_Advanced" PackageName="Microsoft.VisualStudio.Editor.Implementation.EditorPackage">
|
||||||
|
<PropertyValue name="Diff/View/HighlightMode">1</PropertyValue>
|
||||||
|
<PropertyValue name="Diff/View/ShowDiffOverviewMargin">false</PropertyValue>
|
||||||
|
<PropertyValue name="ResponsiveCompletion">true</PropertyValue>
|
||||||
|
<PropertyValue name="WordBasedSuggestions">true</PropertyValue>
|
||||||
|
<PropertyValue name="DefaultCompletionMode">0</PropertyValue>
|
||||||
|
<PropertyValue name="DisplaceCaretLineOption">true</PropertyValue>
|
||||||
|
<PropertyValue name="UseBoxSelectionOption">false</PropertyValue>
|
||||||
|
<PropertyValue name="AdaptiveFormatting">true</PropertyValue>
|
||||||
|
<PropertyValue name="EnableRtfCopy">true</PropertyValue>
|
||||||
|
<PropertyValue name="MaxRtfCopyLength">10240</PropertyValue>
|
||||||
|
<PropertyValue name="UseAccurateClassificationForRtfCopy">false</PropertyValue>
|
||||||
|
<PropertyValue name="EnableTypingLatencyGuard">true</PropertyValue>
|
||||||
|
<PropertyValue name="UserCustomMaximumTypingLatency">-1</PropertyValue>
|
||||||
|
<PropertyValue name="EditorVerticalScrollSensitivity">3</PropertyValue>
|
||||||
|
<PropertyValue name="EditorHorizontalScrollSensitivity">1</PropertyValue>
|
||||||
|
<PropertyValue name="TextView/TextFormattingMode">0</PropertyValue>
|
||||||
|
<PropertyValue name="TextView/TextRenderingMode">0</PropertyValue>
|
||||||
|
</Category>
|
||||||
|
</UserSettings>
|
Loading…
x
Reference in New Issue
Block a user