Compare commits
7
Commits
751982beff
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
348be92a45 | ||
|
|
171b640230 | ||
|
|
cd2605efe3 | ||
|
|
72ba3cc5e6 | ||
|
|
25e6c093bc | ||
|
|
855641a272 | ||
|
|
34acef713d |
+457
@@ -0,0 +1,457 @@
|
|||||||
|
root = true
|
||||||
|
# Remove the line below if you want to inherit .editorconfig settings from higher directories
|
||||||
|
|
||||||
|
# C# files
|
||||||
|
[*.cs]
|
||||||
|
guidelines = 120
|
||||||
|
#### 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 = true
|
||||||
|
|
||||||
|
# this. and Me. preferences
|
||||||
|
dotnet_style_qualification_for_event = false:suggestion
|
||||||
|
dotnet_style_qualification_for_field = false:suggestion
|
||||||
|
dotnet_style_qualification_for_method = false:suggestion
|
||||||
|
dotnet_style_qualification_for_property = false:suggestion
|
||||||
|
|
||||||
|
# Language keywords vs BCL types preferences
|
||||||
|
dotnet_style_predefined_type_for_locals_parameters_members = true:suggestion
|
||||||
|
dotnet_style_predefined_type_for_member_access = true:suggestion
|
||||||
|
|
||||||
|
# Parentheses preferences
|
||||||
|
dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity:none
|
||||||
|
dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:none
|
||||||
|
dotnet_style_parentheses_in_other_operators = never_if_unnecessary
|
||||||
|
dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity:none
|
||||||
|
|
||||||
|
# Modifier preferences
|
||||||
|
dotnet_style_require_accessibility_modifiers = for_non_interface_members:suggestion
|
||||||
|
|
||||||
|
# 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:suggestion
|
||||||
|
dotnet_style_prefer_conditional_expression_over_return = true:suggestion
|
||||||
|
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:suggestion
|
||||||
|
dotnet_style_allow_statement_immediately_after_block_experimental = true:suggestion
|
||||||
|
|
||||||
|
#### C# Coding Conventions ####
|
||||||
|
|
||||||
|
# var preferences
|
||||||
|
csharp_style_var_elsewhere = true:suggestion
|
||||||
|
csharp_style_var_for_built_in_types = true:suggestion
|
||||||
|
csharp_style_var_when_type_is_apparent = true:suggestion
|
||||||
|
|
||||||
|
# Expression-bodied members
|
||||||
|
csharp_style_expression_bodied_indexers = true:silent
|
||||||
|
csharp_style_expression_bodied_lambdas = true:silent
|
||||||
|
csharp_style_expression_bodied_local_functions = false:silent
|
||||||
|
csharp_style_expression_bodied_operators = false:silent
|
||||||
|
|
||||||
|
# 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_extended_property_pattern = 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:suggestion
|
||||||
|
csharp_style_prefer_parameter_null_checking = true:suggestion
|
||||||
|
|
||||||
|
# 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, file, required:suggestion
|
||||||
|
|
||||||
|
# Code-block preferences
|
||||||
|
csharp_prefer_simple_using_statement = true:suggestion
|
||||||
|
csharp_style_namespace_declarations = block_scoped:none
|
||||||
|
csharp_style_prefer_method_group_conversion = true:silent
|
||||||
|
|
||||||
|
# Expression-level preferences
|
||||||
|
csharp_prefer_simple_default_expression = true:suggestion
|
||||||
|
csharp_style_deconstructed_variable_declaration = true:suggestion
|
||||||
|
csharp_style_implicit_object_creation_when_type_is_apparent = true:suggestion
|
||||||
|
csharp_style_inlined_variable_declaration = true:suggestion
|
||||||
|
csharp_style_prefer_index_operator = true:suggestion
|
||||||
|
csharp_style_prefer_local_over_anonymous_function = true:suggestion
|
||||||
|
csharp_style_prefer_null_check_over_type_check = true:suggestion
|
||||||
|
csharp_style_prefer_range_operator = true:suggestion
|
||||||
|
csharp_style_prefer_tuple_swap = true:suggestion
|
||||||
|
csharp_style_throw_expression = true:suggestion
|
||||||
|
csharp_style_unused_value_assignment_preference = discard_variable:suggestion
|
||||||
|
csharp_style_unused_value_expression_statement_preference = discard_variable:silent
|
||||||
|
|
||||||
|
# 'using' directive preferences
|
||||||
|
csharp_using_directive_placement = outside_namespace:silent
|
||||||
|
|
||||||
|
# New line preferences
|
||||||
|
csharp_style_allow_blank_line_after_colon_in_constructor_initializer_experimental = false
|
||||||
|
csharp_style_allow_blank_lines_between_consecutive_braces_experimental = false:suggestion
|
||||||
|
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 = suggestion
|
||||||
|
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 = suggestion
|
||||||
|
dotnet_naming_rule.types_should_be_pascal_case.symbols = types
|
||||||
|
dotnet_naming_rule.types_should_be_pascal_case.style = pascal_case
|
||||||
|
|
||||||
|
dotnet_naming_rule.non_field_members_should_be_pascal_case.severity = suggestion
|
||||||
|
dotnet_naming_rule.non_field_members_should_be_pascal_case.symbols = non_field_members
|
||||||
|
dotnet_naming_rule.non_field_members_should_be_pascal_case.style = pascal_case
|
||||||
|
|
||||||
|
dotnet_naming_rule.private_or_internal_field_should_be_begin_with__.severity = suggestion
|
||||||
|
dotnet_naming_rule.private_or_internal_field_should_be_begin_with__.symbols = private_or_internal_field
|
||||||
|
dotnet_naming_rule.private_or_internal_field_should_be_begin_with__.style = begin_with__
|
||||||
|
|
||||||
|
# Symbol specifications
|
||||||
|
|
||||||
|
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.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.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.begin_with__.required_prefix = _
|
||||||
|
dotnet_naming_style.begin_with__.required_suffix =
|
||||||
|
dotnet_naming_style.begin_with__.word_separator =
|
||||||
|
dotnet_naming_style.begin_with__.capitalization = camel_case
|
||||||
|
csharp_style_prefer_top_level_statements = true:silent
|
||||||
|
|
||||||
|
# CS8604: Possible null reference argument.
|
||||||
|
dotnet_diagnostic.cs8604.severity = silent
|
||||||
|
|
||||||
|
# CS8600: Converting null literal or possible null value to non-nullable type.
|
||||||
|
dotnet_diagnostic.cs8600.severity = none
|
||||||
|
|
||||||
|
# CS8602: Dereference of a possibly null reference.
|
||||||
|
dotnet_diagnostic.cs8602.severity = none
|
||||||
|
|
||||||
|
# CS8618: Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable.
|
||||||
|
dotnet_diagnostic.cs8618.severity = silent
|
||||||
|
|
||||||
|
# CS8601: Possible null reference assignment.
|
||||||
|
dotnet_diagnostic.cs8601.severity = none
|
||||||
|
|
||||||
|
# CS8603: Possible null reference return.
|
||||||
|
dotnet_diagnostic.cs8603.severity = none
|
||||||
|
|
||||||
|
# CS8629: Nullable value type may be null.
|
||||||
|
dotnet_diagnostic.cs8629.severity = none
|
||||||
|
|
||||||
|
# Microsoft .NET properties
|
||||||
|
csharp_style_prefer_utf8_string_literals = true:suggestion
|
||||||
|
dotnet_diagnostic.cs1998.severity = none
|
||||||
|
dotnet_naming_rule.constants_rule.import_to_resharper = as_predefined
|
||||||
|
dotnet_naming_rule.constants_rule.severity = suggestion
|
||||||
|
dotnet_naming_rule.constants_rule.style = pascal_case
|
||||||
|
dotnet_naming_rule.constants_rule.symbols = constants_symbols
|
||||||
|
dotnet_naming_rule.event_rule.import_to_resharper = as_predefined
|
||||||
|
dotnet_naming_rule.event_rule.severity = suggestion
|
||||||
|
dotnet_naming_rule.event_rule.style = pascal_case
|
||||||
|
dotnet_naming_rule.event_rule.symbols = event_symbols
|
||||||
|
dotnet_naming_rule.interfaces_rule.import_to_resharper = as_predefined
|
||||||
|
dotnet_naming_rule.interfaces_rule.severity = suggestion
|
||||||
|
dotnet_naming_rule.interfaces_rule.style = begins_with_i
|
||||||
|
dotnet_naming_rule.interfaces_rule.symbols = interfaces_symbols
|
||||||
|
dotnet_naming_rule.interface_should_be_begins_with_i.import_to_resharper = True
|
||||||
|
dotnet_naming_rule.interface_should_be_begins_with_i.resharper_description = interface_should_be_begins_with_i
|
||||||
|
dotnet_naming_rule.interface_should_be_begins_with_i.resharper_guid = d1a35a59-54b6-4eb1-82b7-67f875b23c0c
|
||||||
|
dotnet_naming_rule.method_rule.import_to_resharper = as_predefined
|
||||||
|
dotnet_naming_rule.method_rule.severity = suggestion
|
||||||
|
dotnet_naming_rule.method_rule.style = pascal_case
|
||||||
|
dotnet_naming_rule.method_rule.symbols = method_symbols
|
||||||
|
dotnet_naming_rule.non_field_members_should_be_pascal_case.import_to_resharper = True
|
||||||
|
dotnet_naming_rule.non_field_members_should_be_pascal_case.resharper_description = non_field_members_should_be_pascal_case
|
||||||
|
dotnet_naming_rule.non_field_members_should_be_pascal_case.resharper_guid = 11418e80-51f1-4325-9c01-5dbcb9c28228
|
||||||
|
dotnet_naming_rule.private_constants_rule.import_to_resharper = as_predefined
|
||||||
|
dotnet_naming_rule.private_constants_rule.severity = suggestion
|
||||||
|
dotnet_naming_rule.private_constants_rule.style = begin_with__
|
||||||
|
dotnet_naming_rule.private_constants_rule.symbols = private_constants_symbols
|
||||||
|
dotnet_naming_rule.private_instance_fields_rule.import_to_resharper = as_predefined
|
||||||
|
dotnet_naming_rule.private_instance_fields_rule.severity = suggestion
|
||||||
|
dotnet_naming_rule.private_instance_fields_rule.style = begin_with__
|
||||||
|
dotnet_naming_rule.private_instance_fields_rule.symbols = private_instance_fields_symbols
|
||||||
|
dotnet_naming_rule.private_or_internal_field_should_be_begin_with__.import_to_resharper = True
|
||||||
|
dotnet_naming_rule.private_or_internal_field_should_be_begin_with__.resharper_description = private_or_internal_field_should_be_begin_with__
|
||||||
|
dotnet_naming_rule.private_or_internal_field_should_be_begin_with__.resharper_guid = 85e97fef-250b-44d7-ad93-7439855ae555
|
||||||
|
dotnet_naming_rule.private_static_fields_rule.import_to_resharper = as_predefined
|
||||||
|
dotnet_naming_rule.private_static_fields_rule.severity = suggestion
|
||||||
|
dotnet_naming_rule.private_static_fields_rule.style = begin_with__
|
||||||
|
dotnet_naming_rule.private_static_fields_rule.symbols = private_static_fields_symbols
|
||||||
|
dotnet_naming_rule.private_static_readonly_rule.import_to_resharper = as_predefined
|
||||||
|
dotnet_naming_rule.private_static_readonly_rule.severity = suggestion
|
||||||
|
dotnet_naming_rule.private_static_readonly_rule.style = begin_with__
|
||||||
|
dotnet_naming_rule.private_static_readonly_rule.symbols = private_static_readonly_symbols
|
||||||
|
dotnet_naming_rule.property_rule.import_to_resharper = as_predefined
|
||||||
|
dotnet_naming_rule.property_rule.severity = suggestion
|
||||||
|
dotnet_naming_rule.property_rule.style = pascal_case
|
||||||
|
dotnet_naming_rule.property_rule.symbols = property_symbols
|
||||||
|
dotnet_naming_rule.public_fields_rule.import_to_resharper = as_predefined
|
||||||
|
dotnet_naming_rule.public_fields_rule.severity = suggestion
|
||||||
|
dotnet_naming_rule.public_fields_rule.style = pascal_case
|
||||||
|
dotnet_naming_rule.public_fields_rule.symbols = public_fields_symbols
|
||||||
|
dotnet_naming_rule.static_readonly_rule.import_to_resharper = as_predefined
|
||||||
|
dotnet_naming_rule.static_readonly_rule.severity = suggestion
|
||||||
|
dotnet_naming_rule.static_readonly_rule.style = pascal_case
|
||||||
|
dotnet_naming_rule.static_readonly_rule.symbols = static_readonly_symbols
|
||||||
|
dotnet_naming_rule.types_and_namespaces_rule.import_to_resharper = as_predefined
|
||||||
|
dotnet_naming_rule.types_and_namespaces_rule.severity = suggestion
|
||||||
|
dotnet_naming_rule.types_and_namespaces_rule.style = pascal_case
|
||||||
|
dotnet_naming_rule.types_and_namespaces_rule.symbols = types_and_namespaces_symbols
|
||||||
|
dotnet_naming_rule.types_should_be_pascal_case.import_to_resharper = True
|
||||||
|
dotnet_naming_rule.types_should_be_pascal_case.resharper_description = types_should_be_pascal_case
|
||||||
|
dotnet_naming_rule.types_should_be_pascal_case.resharper_guid = 3541ad64-4c0e-469c-b768-161388336498
|
||||||
|
dotnet_naming_rule.unity_serialized_field_rule.import_to_resharper = True
|
||||||
|
dotnet_naming_rule.unity_serialized_field_rule.resharper_description = Unity serialized field
|
||||||
|
dotnet_naming_rule.unity_serialized_field_rule.resharper_guid = 5f0fdb63-c892-4d2c-9324-15c80b22a7ef
|
||||||
|
dotnet_naming_rule.unity_serialized_field_rule.severity = suggestion
|
||||||
|
dotnet_naming_rule.unity_serialized_field_rule.style = lower_camel_case_style
|
||||||
|
dotnet_naming_rule.unity_serialized_field_rule.symbols = unity_serialized_field_symbols
|
||||||
|
dotnet_naming_style.lower_camel_case_style.capitalization = camel_case
|
||||||
|
dotnet_naming_symbols.constants_symbols.applicable_accessibilities = public,internal,protected,protected_internal,private_protected
|
||||||
|
dotnet_naming_symbols.constants_symbols.applicable_kinds = field
|
||||||
|
dotnet_naming_symbols.constants_symbols.required_modifiers = const
|
||||||
|
dotnet_naming_symbols.event_symbols.applicable_accessibilities = *
|
||||||
|
dotnet_naming_symbols.event_symbols.applicable_kinds = event
|
||||||
|
dotnet_naming_symbols.interfaces_symbols.applicable_accessibilities = *
|
||||||
|
dotnet_naming_symbols.interfaces_symbols.applicable_kinds = interface
|
||||||
|
dotnet_naming_symbols.method_symbols.applicable_accessibilities = *
|
||||||
|
dotnet_naming_symbols.method_symbols.applicable_kinds = method
|
||||||
|
dotnet_naming_symbols.private_constants_symbols.applicable_accessibilities = private
|
||||||
|
dotnet_naming_symbols.private_constants_symbols.applicable_kinds = field
|
||||||
|
dotnet_naming_symbols.private_constants_symbols.required_modifiers = const
|
||||||
|
dotnet_naming_symbols.private_instance_fields_symbols.applicable_accessibilities = private
|
||||||
|
dotnet_naming_symbols.private_instance_fields_symbols.applicable_kinds = field
|
||||||
|
dotnet_naming_symbols.private_static_fields_symbols.applicable_accessibilities = private
|
||||||
|
dotnet_naming_symbols.private_static_fields_symbols.applicable_kinds = field
|
||||||
|
dotnet_naming_symbols.private_static_fields_symbols.required_modifiers = static
|
||||||
|
dotnet_naming_symbols.private_static_readonly_symbols.applicable_accessibilities = private
|
||||||
|
dotnet_naming_symbols.private_static_readonly_symbols.applicable_kinds = field
|
||||||
|
dotnet_naming_symbols.private_static_readonly_symbols.required_modifiers = static,readonly
|
||||||
|
dotnet_naming_symbols.property_symbols.applicable_accessibilities = *
|
||||||
|
dotnet_naming_symbols.property_symbols.applicable_kinds = property
|
||||||
|
dotnet_naming_symbols.public_fields_symbols.applicable_accessibilities = public,internal,protected,protected_internal,private_protected
|
||||||
|
dotnet_naming_symbols.public_fields_symbols.applicable_kinds = field
|
||||||
|
dotnet_naming_symbols.static_readonly_symbols.applicable_accessibilities = public,internal,protected,protected_internal,private_protected
|
||||||
|
dotnet_naming_symbols.static_readonly_symbols.applicable_kinds = field
|
||||||
|
dotnet_naming_symbols.static_readonly_symbols.required_modifiers = static,readonly
|
||||||
|
dotnet_naming_symbols.types_and_namespaces_symbols.applicable_accessibilities = *
|
||||||
|
dotnet_naming_symbols.types_and_namespaces_symbols.applicable_kinds = namespace,class,struct,enum,delegate
|
||||||
|
dotnet_naming_symbols.unity_serialized_field_symbols.applicable_accessibilities = *
|
||||||
|
dotnet_naming_symbols.unity_serialized_field_symbols.applicable_kinds =
|
||||||
|
dotnet_naming_symbols.unity_serialized_field_symbols.resharper_applicable_kinds = unity_serialised_field
|
||||||
|
dotnet_naming_symbols.unity_serialized_field_symbols.resharper_required_modifiers = instance
|
||||||
|
|
||||||
|
# ReSharper properties
|
||||||
|
resharper_blank_lines_after_block_statements = 0
|
||||||
|
resharper_blank_lines_after_start_comment = 0
|
||||||
|
resharper_blank_lines_around_auto_property = 0
|
||||||
|
resharper_blank_lines_around_single_line_type = 0
|
||||||
|
resharper_braces_for_for = required
|
||||||
|
resharper_braces_for_foreach = required
|
||||||
|
resharper_braces_for_ifelse = required
|
||||||
|
resharper_braces_for_while = required
|
||||||
|
resharper_braces_redundant = false
|
||||||
|
resharper_csharp_blank_lines_around_field = 0
|
||||||
|
resharper_csharp_blank_lines_around_invocable = 0
|
||||||
|
resharper_csharp_blank_lines_around_region = 0
|
||||||
|
resharper_csharp_blank_lines_around_type = 0
|
||||||
|
resharper_csharp_blank_lines_inside_region = 0
|
||||||
|
resharper_csharp_empty_block_style = together_same_line
|
||||||
|
resharper_csharp_keep_blank_lines_in_code = 100
|
||||||
|
resharper_csharp_max_line_length = 175
|
||||||
|
resharper_csharp_naming_rule.constants = AaBb
|
||||||
|
resharper_csharp_naming_rule.event = AaBb
|
||||||
|
resharper_csharp_naming_rule.interfaces = I + AaBb
|
||||||
|
resharper_csharp_naming_rule.method = AaBb
|
||||||
|
resharper_csharp_naming_rule.private_constants = _ + aaBb
|
||||||
|
resharper_csharp_naming_rule.private_instance_fields = _ + aaBb
|
||||||
|
resharper_csharp_naming_rule.private_static_fields = _ + aaBb
|
||||||
|
resharper_csharp_naming_rule.private_static_readonly = _ + aaBb
|
||||||
|
resharper_csharp_naming_rule.property = AaBb
|
||||||
|
resharper_csharp_naming_rule.public_fields = AaBb
|
||||||
|
resharper_csharp_naming_rule.static_readonly = AaBb
|
||||||
|
resharper_csharp_naming_rule.types_and_namespaces = AaBb
|
||||||
|
resharper_csharp_remove_blank_lines_near_braces_in_code = false
|
||||||
|
resharper_csharp_remove_blank_lines_near_braces_in_declarations = false
|
||||||
|
resharper_csharp_wrap_before_binary_opsign = true
|
||||||
|
resharper_enforce_line_ending_style = true
|
||||||
|
resharper_place_accessorholder_attribute_on_same_line = false
|
||||||
|
resharper_place_expr_method_on_single_line = false
|
||||||
|
resharper_place_expr_property_on_single_line = true
|
||||||
|
resharper_place_simple_embedded_statement_on_same_line = true
|
||||||
|
resharper_prefer_explicit_discard_declaration = true
|
||||||
|
resharper_space_within_single_line_array_initializer_braces = false
|
||||||
|
resharper_use_heuristics_for_body_style = false
|
||||||
|
resharper_use_indent_from_vs = false
|
||||||
|
|
||||||
|
# ReSharper inspection severities
|
||||||
|
resharper_arrange_accessor_owner_body_highlighting = none
|
||||||
|
resharper_arrange_object_creation_when_type_not_evident_highlighting = none
|
||||||
|
resharper_arrange_redundant_parentheses_highlighting = hint
|
||||||
|
resharper_arrange_this_qualifier_highlighting = hint
|
||||||
|
resharper_arrange_type_member_modifiers_highlighting = hint
|
||||||
|
resharper_arrange_type_modifiers_highlighting = hint
|
||||||
|
resharper_built_in_type_reference_style_for_member_access_highlighting = hint
|
||||||
|
resharper_built_in_type_reference_style_highlighting = hint
|
||||||
|
resharper_inconsistent_naming_highlighting = suggestion
|
||||||
|
resharper_member_can_be_made_static_local_highlighting = none
|
||||||
|
resharper_missing_alt_attribute_in_img_tag_highlighting = none
|
||||||
|
resharper_redundant_base_qualifier_highlighting = warning
|
||||||
|
resharper_suggest_var_or_type_built_in_types_highlighting = hint
|
||||||
|
resharper_suggest_var_or_type_elsewhere_highlighting = hint
|
||||||
|
resharper_suggest_var_or_type_simple_types_highlighting = hint
|
||||||
|
resharper_web_config_module_not_resolved_highlighting = warning
|
||||||
|
resharper_web_config_type_not_resolved_highlighting = warning
|
||||||
|
resharper_web_config_wrong_module_highlighting = warning
|
||||||
|
csharp_prefer_braces = true:silent
|
||||||
|
csharp_style_expression_bodied_methods = false:silent
|
||||||
|
csharp_style_expression_bodied_constructors = false:silent
|
||||||
|
csharp_style_expression_bodied_properties = true:silent
|
||||||
|
csharp_style_expression_bodied_accessors = true:silent
|
||||||
|
|
||||||
|
[*.{cs,vb}]
|
||||||
|
dotnet_style_operator_placement_when_wrapping = beginning_of_line
|
||||||
|
tab_width = 4
|
||||||
|
indent_size = 4
|
||||||
|
end_of_line = crlf
|
||||||
|
dotnet_style_coalesce_expression = true:suggestion
|
||||||
|
dotnet_style_null_propagation = true:suggestion
|
||||||
|
dotnet_style_prefer_is_null_check_over_reference_equality_method = true:suggestion
|
||||||
|
dotnet_style_prefer_auto_properties = true:silent
|
||||||
|
dotnet_style_object_initializer = true:suggestion
|
||||||
|
dotnet_style_collection_initializer = true:suggestion
|
||||||
|
dotnet_style_prefer_simplified_boolean_expressions = true:suggestion
|
||||||
|
dotnet_style_prefer_conditional_expression_over_assignment = true:suggestion
|
||||||
|
dotnet_style_prefer_conditional_expression_over_return = true:suggestion
|
||||||
|
dotnet_style_explicit_tuple_names = true:suggestion
|
||||||
|
dotnet_style_prefer_inferred_tuple_names = true:suggestion
|
||||||
|
dotnet_style_prefer_inferred_anonymous_type_member_names = true:suggestion
|
||||||
|
dotnet_style_prefer_compound_assignment = true:suggestion
|
||||||
|
dotnet_style_prefer_simplified_interpolation = true:suggestion
|
||||||
|
dotnet_style_namespace_match_folder = true:suggestion
|
||||||
|
dotnet_diagnostic.ca2208.severity = silent
|
||||||
|
dotnet_diagnostic.ca1822.severity = silent
|
||||||
|
dotnet_diagnostic.cs1998.severity = silent
|
||||||
|
dotnet_code_quality_unused_parameters = all:suggestion
|
||||||
|
|
||||||
|
# CA1824: Mark assemblies with NeutralResourcesLanguageAttribute
|
||||||
|
dotnet_diagnostic.ca1824.severity = none
|
||||||
|
|
||||||
|
[*.{appxmanifest,asax,ascx,aspx,axaml,build,c,c++,cc,cginc,compute,cp,cpp,cs,cshtml,cu,cuh,cxx,dtd,feature,fs,fsi,fsscript,fsx,fx,fxh,h,hh,hlsl,hlsli,hlslinc,hpp,hxx,inc,inl,ino,ipp,ixx,master,ml,mli,mpp,mq4,mq5,mqh,nuspec,paml,razor,resw,resx,shader,skin,tpp,usf,ush,vb,xaml,xamlx,xoml,xsd}]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 4
|
||||||
|
tab_width = 4
|
||||||
@@ -16,7 +16,7 @@ namespace TURN.Services.Chess.Controllers
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return HttpContext.Request.Query.TryGetValue("apikey", out Microsoft.Extensions.Primitives.StringValues value)
|
return HttpContext.Request.Query.TryGetValue("apikey", out var value)
|
||||||
? value.ToString() == Environment.GetEnvironmentVariable("AUTH_API_KEY")
|
? value.ToString() == Environment.GetEnvironmentVariable("AUTH_API_KEY")
|
||||||
? new JwtSecurityTokenHandler().WriteToken(CreateToken(user))
|
? new JwtSecurityTokenHandler().WriteToken(CreateToken(user))
|
||||||
: StatusCode(403, "Wrong api key.")
|
: StatusCode(403, "Wrong api key.")
|
||||||
@@ -30,7 +30,7 @@ namespace TURN.Services.Chess.Controllers
|
|||||||
|
|
||||||
private SecurityToken CreateToken(string user)
|
private SecurityToken CreateToken(string user)
|
||||||
{
|
{
|
||||||
List<Claim> claims = new()
|
var claims = new List<Claim>()
|
||||||
{
|
{
|
||||||
new Claim(ClaimTypes.Name, user),
|
new Claim(ClaimTypes.Name, user),
|
||||||
new Claim(ClaimTypes.Role, "admin")
|
new Claim(ClaimTypes.Role, "admin")
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
using Microsoft.AspNetCore.Authentication.JwtBearer;
|
using Microsoft.AspNetCore.Authentication.JwtBearer;
|
||||||
using Microsoft.AspNetCore.Authorization;
|
using Microsoft.AspNetCore.Authorization;
|
||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using NLog;
|
||||||
using TURN.Services.Chess.DBModel;
|
using TURN.Services.Chess.DBModel;
|
||||||
|
|
||||||
namespace TURN.Services.Chess.Controllers
|
namespace TURN.Services.Chess.Controllers
|
||||||
@@ -14,10 +15,12 @@ namespace TURN.Services.Chess.Controllers
|
|||||||
public const string AuthSchemes = JwtBearerDefaults.AuthenticationScheme;
|
public const string AuthSchemes = JwtBearerDefaults.AuthenticationScheme;
|
||||||
|
|
||||||
private readonly ModelBaseContext _db;
|
private readonly ModelBaseContext _db;
|
||||||
|
private readonly Logger _logger;
|
||||||
|
|
||||||
public TurnController(ModelBaseContext db)
|
public TurnController(ModelBaseContext db, Logger logger)
|
||||||
{
|
{
|
||||||
_db = db;
|
_db = db;
|
||||||
|
_logger = logger;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -28,12 +31,13 @@ namespace TURN.Services.Chess.Controllers
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
ChessGame game = new();
|
var game = new ChessGame();
|
||||||
|
|
||||||
return Ok(param);
|
return Ok(param);
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
_logger.Error(ex);
|
||||||
return StatusCode(500, $"Internal server error: {ex.Message}");
|
return StatusCode(500, $"Internal server error: {ex.Message}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -46,22 +50,26 @@ namespace TURN.Services.Chess.Controllers
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
ChessGame game = new();
|
var game = new ChessGame();
|
||||||
|
|
||||||
Game obj = new()
|
Game obj = new()
|
||||||
{
|
{
|
||||||
BlackUserName = blackUser,
|
BlackUserName = blackUser,
|
||||||
WhiteUserName = whiteUser,
|
WhiteUserName = whiteUser,
|
||||||
StartDate = DateTime.Now.ToString()
|
StartDate = DateTimeOffset.Now.ToUnixTimeSeconds().ToString()
|
||||||
};
|
};
|
||||||
|
|
||||||
_ = _db.Add(obj);
|
_ = _db.Add(obj);
|
||||||
_ = _db.SaveChanges();
|
_ = _db.SaveChanges();
|
||||||
|
|
||||||
return Ok($"Game {obj.GameId} started.");
|
var mes = $"Game {obj.GameId} started.";
|
||||||
|
_logger.Info(mes);
|
||||||
|
|
||||||
|
return Ok(mes);
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
_logger.Error(ex);
|
||||||
return StatusCode(500, $"Internal server error: {ex.Message}");
|
return StatusCode(500, $"Internal server error: {ex.Message}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,7 +17,17 @@ namespace TURN.Services.Chess.DBModel
|
|||||||
|
|
||||||
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
|
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
|
||||||
{
|
{
|
||||||
_ = optionsBuilder.UseNpgsql("Server=localhost;Port=5432;Database=TURNChess;UserId=postgres;Password=example;");
|
try
|
||||||
|
{
|
||||||
|
_ = !string.IsNullOrEmpty(Environment.GetEnvironmentVariable("DB"))
|
||||||
|
? optionsBuilder.UseNpgsql(Environment.GetEnvironmentVariable("DB"))
|
||||||
|
: optionsBuilder.UseNpgsql("Server=localhost;Port=5432;Database=TURNChess;UserId=postgres;" +
|
||||||
|
"Password=example;");
|
||||||
|
}
|
||||||
|
catch (Exception)
|
||||||
|
{
|
||||||
|
_ = optionsBuilder.UseNpgsql("Server=localhost;Port=5432;Database=TURNChess;UserId=postgres;Password=example;");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||||
|
|||||||
@@ -0,0 +1,53 @@
|
|||||||
|
// <auto-generated />
|
||||||
|
using System;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
||||||
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
||||||
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
||||||
|
using TURN.Services.Chess.DBModel;
|
||||||
|
|
||||||
|
#nullable disable
|
||||||
|
|
||||||
|
namespace TURN.Services.Chess.Migrations
|
||||||
|
{
|
||||||
|
[DbContext(typeof(ModelBaseContext))]
|
||||||
|
[Migration("20230625160918_Init")]
|
||||||
|
partial class Init
|
||||||
|
{
|
||||||
|
/// <inheritdoc />
|
||||||
|
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
||||||
|
{
|
||||||
|
#pragma warning disable 612, 618
|
||||||
|
modelBuilder
|
||||||
|
.HasAnnotation("ProductVersion", "7.0.8")
|
||||||
|
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
||||||
|
|
||||||
|
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
|
||||||
|
|
||||||
|
modelBuilder.Entity("TURN.Services.Chess.DBModel.Game", b =>
|
||||||
|
{
|
||||||
|
b.Property<long?>("GameId")
|
||||||
|
.ValueGeneratedOnAdd()
|
||||||
|
.HasColumnType("bigint")
|
||||||
|
.HasColumnName("GameId");
|
||||||
|
|
||||||
|
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<long?>("GameId"));
|
||||||
|
|
||||||
|
b.Property<string>("BlackUserName")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.Property<string>("StartDate")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.Property<string>("WhiteUserName")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.HasKey("GameId");
|
||||||
|
|
||||||
|
b.ToTable("Games");
|
||||||
|
});
|
||||||
|
#pragma warning restore 612, 618
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,37 @@
|
|||||||
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
||||||
|
|
||||||
|
#nullable disable
|
||||||
|
|
||||||
|
namespace TURN.Services.Chess.Migrations
|
||||||
|
{
|
||||||
|
/// <inheritdoc />
|
||||||
|
public partial class Init : Migration
|
||||||
|
{
|
||||||
|
/// <inheritdoc />
|
||||||
|
protected override void Up(MigrationBuilder migrationBuilder)
|
||||||
|
{
|
||||||
|
_ = migrationBuilder.CreateTable(
|
||||||
|
name: "Games",
|
||||||
|
columns: table => new
|
||||||
|
{
|
||||||
|
GameId = table.Column<long>(type: "bigint", nullable: false)
|
||||||
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
||||||
|
BlackUserName = table.Column<string>(type: "varchar", nullable: true),
|
||||||
|
WhiteUserName = table.Column<string>(type: "varchar", nullable: true),
|
||||||
|
StartDate = table.Column<string>(type: "varchar", nullable: true)
|
||||||
|
},
|
||||||
|
constraints: table =>
|
||||||
|
{
|
||||||
|
_ = table.PrimaryKey("PK_Games", x => x.GameId);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
protected override void Down(MigrationBuilder migrationBuilder)
|
||||||
|
{
|
||||||
|
_ = migrationBuilder.DropTable(
|
||||||
|
name: "Games");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,50 @@
|
|||||||
|
// <auto-generated />
|
||||||
|
using System;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
||||||
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
||||||
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
||||||
|
using TURN.Services.Chess.DBModel;
|
||||||
|
|
||||||
|
#nullable disable
|
||||||
|
|
||||||
|
namespace TURN.Services.Chess.Migrations
|
||||||
|
{
|
||||||
|
[DbContext(typeof(ModelBaseContext))]
|
||||||
|
partial class ModelBaseContextModelSnapshot : ModelSnapshot
|
||||||
|
{
|
||||||
|
protected override void BuildModel(ModelBuilder modelBuilder)
|
||||||
|
{
|
||||||
|
#pragma warning disable 612, 618
|
||||||
|
modelBuilder
|
||||||
|
.HasAnnotation("ProductVersion", "7.0.8")
|
||||||
|
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
||||||
|
|
||||||
|
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
|
||||||
|
|
||||||
|
modelBuilder.Entity("TURN.Services.Chess.DBModel.Game", b =>
|
||||||
|
{
|
||||||
|
b.Property<long?>("GameId")
|
||||||
|
.ValueGeneratedOnAdd()
|
||||||
|
.HasColumnType("bigint")
|
||||||
|
.HasColumnName("GameId");
|
||||||
|
|
||||||
|
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<long?>("GameId"));
|
||||||
|
|
||||||
|
b.Property<string>("BlackUserName")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.Property<string>("StartDate")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.Property<string>("WhiteUserName")
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.HasKey("GameId");
|
||||||
|
|
||||||
|
b.ToTable("Games");
|
||||||
|
});
|
||||||
|
#pragma warning restore 612, 618
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -2,12 +2,12 @@ using Microsoft.AspNetCore;
|
|||||||
using TURN.Services.Chess;
|
using TURN.Services.Chess;
|
||||||
using LoggerFactory = TURN.Services.Chess.LoggerFactory;
|
using LoggerFactory = TURN.Services.Chess.LoggerFactory;
|
||||||
|
|
||||||
NLog.Logger logger = LoggerFactory.GetLogger();
|
var logger = LoggerFactory.GetLogger();
|
||||||
logger.Info("Chess app starting.");
|
logger.Info("Chess app starting.");
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
IWebHost host = BuildWebHost(args);
|
var host = BuildWebHost(args);
|
||||||
host.Run();
|
host.Run();
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
@@ -15,7 +15,9 @@ catch (Exception ex)
|
|||||||
logger.Error(ex);
|
logger.Error(ex);
|
||||||
}
|
}
|
||||||
|
|
||||||
IWebHost BuildWebHost(string[] args) => WebHost
|
IWebHost BuildWebHost(string[] args)
|
||||||
|
{
|
||||||
|
return WebHost
|
||||||
.CreateDefaultBuilder(args)
|
.CreateDefaultBuilder(args)
|
||||||
.CaptureStartupErrors(false)
|
.CaptureStartupErrors(false)
|
||||||
.ConfigureServices(services =>
|
.ConfigureServices(services =>
|
||||||
@@ -24,3 +26,4 @@ IWebHost BuildWebHost(string[] args) => WebHost
|
|||||||
})
|
})
|
||||||
.UseStartup<Startup>()
|
.UseStartup<Startup>()
|
||||||
.Build();
|
.Build();
|
||||||
|
}
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"profiles": {
|
||||||
|
"TURN.Services.Chess": {
|
||||||
|
"commandName": "Project",
|
||||||
|
"launchBrowser": true,
|
||||||
|
"environmentVariables": {
|
||||||
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||||
|
},
|
||||||
|
"applicationUrl": "https://localhost:14721;http://localhost:14722"
|
||||||
|
},
|
||||||
|
"Docker": {
|
||||||
|
"commandName": "Docker",
|
||||||
|
"launchBrowser": true,
|
||||||
|
"launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}",
|
||||||
|
"publishAllPorts": true,
|
||||||
|
"useSSL": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,5 +1,4 @@
|
|||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using Microsoft.EntityFrameworkCore;
|
|
||||||
using Microsoft.IdentityModel.Tokens;
|
using Microsoft.IdentityModel.Tokens;
|
||||||
using Microsoft.OpenApi.Models;
|
using Microsoft.OpenApi.Models;
|
||||||
using Newtonsoft.Json.Converters;
|
using Newtonsoft.Json.Converters;
|
||||||
@@ -18,8 +17,7 @@ namespace TURN.Services.Chess
|
|||||||
{
|
{
|
||||||
jsonOptions.SerializerSettings.Converters.Add(new StringEnumConverter());
|
jsonOptions.SerializerSettings.Converters.Add(new StringEnumConverter());
|
||||||
});
|
});
|
||||||
_ = services.AddDbContext<ModelBaseContext>(
|
_ = services.AddDbContext<ModelBaseContext>();
|
||||||
options => options.UseNpgsql(Environment.GetEnvironmentVariable("DB")));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Configure(IApplicationBuilder app)
|
public void Configure(IApplicationBuilder app)
|
||||||
@@ -48,7 +46,7 @@ namespace TURN.Services.Chess
|
|||||||
Title = "TURN.Api.Swagger",
|
Title = "TURN.Api.Swagger",
|
||||||
Version = "v1"
|
Version = "v1"
|
||||||
});
|
});
|
||||||
string xmlFilename = $"{Assembly.GetExecutingAssembly().GetName().Name}.xml";
|
var xmlFilename = $"{Assembly.GetExecutingAssembly().GetName().Name}.xml";
|
||||||
options.IncludeXmlComments(Path.Combine(AppContext.BaseDirectory, xmlFilename));
|
options.IncludeXmlComments(Path.Combine(AppContext.BaseDirectory, xmlFilename));
|
||||||
});
|
});
|
||||||
_ = services.AddSwaggerGenNewtonsoftSupport();
|
_ = services.AddSwaggerGenNewtonsoftSupport();
|
||||||
|
|||||||
Reference in New Issue
Block a user