Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pull] master from madskristensen:master #1

Open
wants to merge 30 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
58804ff
Fixed an erroneous decrement which was meant to be removed before sub…
rbleattler Nov 12, 2019
749026c
Fix NETSDK1071 for Microsoft.AspNetCore.App (#121)
am11 Nov 21, 2019
4a62138
Migration to .NET Core 3.1 LTS (#122)
ManfredLange Dec 9, 2019
e99e165
Fix issue with pagination (#126)
xnodeoncode Dec 27, 2019
76e2615
Reset upstream defaults (#127)
xnodeoncode Dec 30, 2019
f492956
Added asp-route-id="" attribute to the new post like which clears the…
xnodeoncode Jan 2, 2020
8f031bf
Refactored PR 125, reducing the number of calls to GetPosts() by filt…
xnodeoncode Jan 2, 2020
c331032
Added list view property to blog settings (#130)
xnodeoncode Jan 14, 2020
82ab3bd
Cleaned and updated (#133)
wforney Feb 25, 2020
1fb2db2
A bit of housekeeping (#134)
wforney Mar 2, 2020
16305d8
closes #135 (#138)
fduman Mar 11, 2020
0b80d96
Fix listview setting's key (#139)
fduman Mar 11, 2020
3c67ccc
Fix for UTC dates turn to local dates on reload (#140)
fduman Mar 11, 2020
5c5a33d
Allow editing excerpt from Live Writer. (#146)
marcoskirchner Aug 26, 2020
561e5b3
Add setting to display comments (#157)
KevBat Jan 15, 2021
438da95
Fix bug if slug left empty then will be treated as null (#162)
KevBat Mar 1, 2021
867871a
Update packages (#163)
martindybal Mar 8, 2021
7d292d1
Revert "Update packages (#163)" (#164)
madskristensen Mar 8, 2021
27c109a
Fix pagination (#165)
KevBat Mar 22, 2021
6ceeeeb
To inform anybody about the current state link to comment added (#167)
surfmuggle Oct 18, 2021
3a49385
Add support for tags (#168)
marcoskirchner Nov 9, 2021
b911eea
Fix XML endpoints in RobotsController. (#170)
marcoskirchner Nov 10, 2021
77ce190
update to .net6; update NuGet package references to latest versions, …
dynamoRando Nov 18, 2021
7e9e22f
Remove google plus share button (#173)
mareklanduch Dec 3, 2021
c27c5f3
Create FUNDING.yml
madskristensen Dec 20, 2021
b022a09
Fix startup.cs and update reference for .net 7 (#182)
RobertUK Oct 6, 2022
13cbaa0
Upgrade nuget packages related to .NET 7 (#183)
Nov 17, 2022
b5d430d
Add setting to force www prefix in address (#184)
mareklanduch Jan 31, 2023
d42e772
same slung/url issue (#194)
damlaYasarr Sep 15, 2023
fefae92
Updated: Nuget Packages (#196)
aminmesbahi Oct 16, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
141 changes: 141 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,141 @@
[*]
end_of_line = crlf

[*.xml]
indent_style = space

[*.{cshtml,razor}]
charset = utf-8
end_of_line = crlf
indent_style = tab
indent_size = tab
insert_final_newline = true
tab_width = 4
trim_trailing_whitespace = true
max_line_length = 100

[*.cs]
charset = utf-8
end_of_line = crlf
indent_style = space
indent_size = tab
insert_final_newline = true
tab_width = 4
trim_trailing_whitespace = true
max_line_length = 100
dotnet_separate_import_directive_groups = true
dotnet_sort_system_directives_first = false
dotnet_style_coalesce_expression = true:suggestion
dotnet_style_collection_initializer = true:suggestion
dotnet_style_explicit_tuple_names = true:suggestion
dotnet_style_null_propagation = true:suggestion
dotnet_style_object_initializer = true:suggestion
dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity:suggestion
dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:suggestion
dotnet_style_parentheses_in_other_operators = always_for_clarity:suggestion
dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity:suggestion
dotnet_style_predefined_type_for_locals_parameters_members = true:suggestion
dotnet_style_predefined_type_for_member_access = true:suggestion
dotnet_style_prefer_auto_properties = true:suggestion
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:suggestion
dotnet_style_prefer_inferred_tuple_names = true:suggestion
dotnet_style_prefer_is_null_check_over_reference_equality_method = true:suggestion
dotnet_style_qualification_for_event = true:suggestion
dotnet_style_qualification_for_field = true:suggestion
dotnet_style_qualification_for_method = true:suggestion
dotnet_style_qualification_for_property = true:suggestion
dotnet_style_readonly_field = true:suggestion
dotnet_style_require_accessibility_modifiers = always:warning
csharp_indent_case_contents = true
csharp_indent_case_contents_when_block = true
csharp_indent_labels = flush_left
csharp_indent_switch_labels = true
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
csharp_prefer_braces = true:warning
csharp_prefer_simple_default_expression = true:suggestion
csharp_style_deconstructed_variable_declaration = true:suggestion
csharp_preserve_single_line_blocks = true
csharp_preserve_single_line_statements = true
csharp_space_after_cast = false
csharp_space_after_colon_in_inheritance_clause = true
csharp_space_after_keywords_in_control_flow_statements = true
csharp_space_around_binary_operators = before_and_after
csharp_space_before_colon_in_inheritance_clause = true
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_parameter_list_parentheses = false
csharp_space_between_parentheses = false
csharp_style_conditional_delegate_call = true:suggestion
csharp_style_expression_bodied_accessors = when_on_single_line:suggestion
csharp_style_expression_bodied_constructors = when_on_single_line:suggestion
csharp_style_expression_bodied_indexers = when_on_single_line:suggestion
csharp_style_expression_bodied_methods = when_on_single_line:suggestion
csharp_style_expression_bodied_operators = when_on_single_line:suggestion
csharp_style_expression_bodied_properties = when_on_single_line:suggestion
csharp_style_inlined_variable_declaration = true:suggestion
csharp_style_pattern_local_over_anonymous_function = true:suggestion
csharp_style_pattern_matching_over_as_with_null_check = true:suggestion
csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion
csharp_style_throw_expression = true:suggestion
csharp_style_var_elsewhere = true:suggestion
csharp_style_var_for_built_in_types = true:suggestion
csharp_style_var_when_type_is_apparent = true:suggestion
csharp_using_directive_placement = inside_namespace:suggestion

[*.{cs,vb}]
#### 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

# 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.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.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.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.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
Loading