Skip to content

Commit f6d76d7

Browse files
github-actions[bot]petesramekPete Sramekdependabot[bot]
authored
Promote develop/1.0 to preview/1.0 (#79)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: Pete Sramek <[email protected]> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Pete Sramek <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 5a614b7 commit f6d76d7

File tree

165 files changed

+9720
-8894
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

165 files changed

+9720
-8894
lines changed

.editorconfig

Lines changed: 272 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,272 @@
1+
# Remove the line below if you want to inherit .editorconfig settings from higher directories
2+
root = true
3+
4+
# All files
5+
[*]
6+
end_of_line = lf
7+
insert_final_newline = true
8+
9+
# C# files
10+
[*.cs]
11+
12+
#### Core EditorConfig Options ####
13+
14+
# Indentation and spacing
15+
indent_size = 4
16+
indent_style = space
17+
tab_width = 4
18+
19+
# New line preferences
20+
end_of_line = crlf
21+
insert_final_newline = false
22+
23+
#### .NET Code Actions ####
24+
25+
# Type members
26+
dotnet_hide_advanced_members = false
27+
dotnet_member_insertion_location = with_other_members_of_the_same_kind
28+
dotnet_property_generation_behavior = prefer_auto_properties
29+
30+
# Symbol search
31+
dotnet_search_reference_assemblies = true
32+
33+
#### .NET Coding Conventions ####
34+
35+
# Organize usings
36+
dotnet_separate_import_directive_groups = false
37+
dotnet_sort_system_directives_first = false
38+
file_header_template = unset
39+
40+
# this. and Me. preferences
41+
dotnet_style_qualification_for_event = false
42+
dotnet_style_qualification_for_field = false
43+
dotnet_style_qualification_for_method = false
44+
dotnet_style_qualification_for_property = false
45+
46+
# Language keywords vs BCL types preferences
47+
dotnet_style_predefined_type_for_locals_parameters_members = true
48+
dotnet_style_predefined_type_for_member_access = true
49+
50+
# Parentheses preferences
51+
dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity
52+
dotnet_style_parentheses_in_other_binary_operators = always_for_clarity
53+
dotnet_style_parentheses_in_other_operators = always_for_clarity
54+
dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity
55+
56+
# Modifier preferences
57+
dotnet_style_require_accessibility_modifiers = for_non_interface_members
58+
59+
# Expression-level preferences
60+
dotnet_prefer_system_hash_code = true
61+
dotnet_style_coalesce_expression = true
62+
dotnet_style_collection_initializer = true
63+
dotnet_style_explicit_tuple_names = true
64+
dotnet_style_namespace_match_folder = true
65+
dotnet_style_null_propagation = true
66+
dotnet_style_object_initializer = true
67+
dotnet_style_operator_placement_when_wrapping = beginning_of_line
68+
dotnet_style_prefer_auto_properties = true
69+
dotnet_style_prefer_collection_expression = when_types_loosely_match
70+
dotnet_style_prefer_compound_assignment = true
71+
dotnet_style_prefer_conditional_expression_over_assignment = true
72+
dotnet_style_prefer_conditional_expression_over_return = true
73+
dotnet_style_prefer_foreach_explicit_cast_in_source = when_strongly_typed
74+
dotnet_style_prefer_inferred_anonymous_type_member_names = true
75+
dotnet_style_prefer_inferred_tuple_names = true
76+
dotnet_style_prefer_is_null_check_over_reference_equality_method = true
77+
dotnet_style_prefer_simplified_boolean_expressions = true
78+
dotnet_style_prefer_simplified_interpolation = true
79+
80+
# Field preferences
81+
dotnet_style_readonly_field = true
82+
83+
# Parameter preferences
84+
dotnet_code_quality_unused_parameters = non_public
85+
86+
# Suppression preferences
87+
dotnet_remove_unnecessary_suppression_exclusions = none
88+
89+
# New line preferences
90+
dotnet_style_allow_multiple_blank_lines_experimental = false
91+
dotnet_style_allow_statement_immediately_after_block_experimental = false
92+
93+
#### C# Coding Conventions ####
94+
95+
# var preferences
96+
csharp_style_var_elsewhere = false
97+
csharp_style_var_for_built_in_types = false
98+
csharp_style_var_when_type_is_apparent = false
99+
100+
# Expression-bodied members
101+
csharp_style_expression_bodied_accessors = true
102+
csharp_style_expression_bodied_constructors = false
103+
csharp_style_expression_bodied_indexers = true
104+
csharp_style_expression_bodied_lambdas = when_on_single_line
105+
csharp_style_expression_bodied_local_functions = when_on_single_line
106+
csharp_style_expression_bodied_methods = false
107+
csharp_style_expression_bodied_operators = false
108+
csharp_style_expression_bodied_properties = true
109+
110+
# Pattern matching preferences
111+
csharp_style_pattern_matching_over_as_with_null_check = true
112+
csharp_style_pattern_matching_over_is_with_cast_check = true
113+
csharp_style_prefer_extended_property_pattern = true
114+
csharp_style_prefer_not_pattern = true
115+
csharp_style_prefer_pattern_matching = true
116+
csharp_style_prefer_switch_expression = true
117+
118+
# Null-checking preferences
119+
csharp_style_conditional_delegate_call = true
120+
121+
# Modifier preferences
122+
csharp_prefer_static_anonymous_function = true
123+
csharp_prefer_static_local_function = true
124+
csharp_preferred_modifier_order = public,private,protected,internal,file,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,required,volatile,async
125+
csharp_style_prefer_readonly_struct = true
126+
csharp_style_prefer_readonly_struct_member = true
127+
128+
# Code-block preferences
129+
csharp_prefer_braces = true
130+
csharp_prefer_simple_using_statement = false
131+
csharp_prefer_system_threading_lock = true
132+
csharp_style_namespace_declarations = file_scoped
133+
csharp_style_prefer_method_group_conversion = false
134+
csharp_style_prefer_primary_constructors = true
135+
csharp_style_prefer_top_level_statements = false
136+
137+
# Expression-level preferences
138+
csharp_prefer_simple_default_expression = true
139+
csharp_style_deconstructed_variable_declaration = true
140+
csharp_style_implicit_object_creation_when_type_is_apparent = true
141+
csharp_style_inlined_variable_declaration = true
142+
csharp_style_prefer_implicitly_typed_lambda_expression = true
143+
csharp_style_prefer_index_operator = true
144+
csharp_style_prefer_local_over_anonymous_function = false
145+
csharp_style_prefer_null_check_over_type_check = true
146+
csharp_style_prefer_range_operator = true
147+
csharp_style_prefer_tuple_swap = true
148+
csharp_style_prefer_unbound_generic_type_in_nameof = true
149+
csharp_style_prefer_utf8_string_literals = true
150+
csharp_style_throw_expression = true
151+
csharp_style_unused_value_assignment_preference = discard_variable
152+
csharp_style_unused_value_expression_statement_preference = discard_variable
153+
154+
# 'using' directive preferences
155+
csharp_using_directive_placement = inside_namespace
156+
157+
# New line preferences
158+
csharp_style_allow_blank_line_after_colon_in_constructor_initializer_experimental = false
159+
csharp_style_allow_blank_line_after_token_in_arrow_expression_clause_experimental = false
160+
csharp_style_allow_blank_line_after_token_in_conditional_expression_experimental = false
161+
csharp_style_allow_blank_lines_between_consecutive_braces_experimental = false
162+
csharp_style_allow_embedded_statements_on_same_line_experimental = false
163+
164+
#### C# Formatting Rules ####
165+
166+
# New line preferences
167+
csharp_new_line_before_catch = false
168+
csharp_new_line_before_else = false
169+
csharp_new_line_before_finally = false
170+
csharp_new_line_before_members_in_anonymous_types = true
171+
csharp_new_line_before_members_in_object_initializers = true
172+
csharp_new_line_before_open_brace = none
173+
csharp_new_line_between_query_expression_clauses = true
174+
175+
# Indentation preferences
176+
csharp_indent_block_contents = true
177+
csharp_indent_braces = false
178+
csharp_indent_case_contents = true
179+
csharp_indent_case_contents_when_block = false
180+
csharp_indent_labels = one_less_than_current
181+
csharp_indent_switch_labels = true
182+
183+
# Space preferences
184+
csharp_space_after_cast = false
185+
csharp_space_after_colon_in_inheritance_clause = true
186+
csharp_space_after_comma = true
187+
csharp_space_after_dot = false
188+
csharp_space_after_keywords_in_control_flow_statements = true
189+
csharp_space_after_semicolon_in_for_statement = true
190+
csharp_space_around_binary_operators = before_and_after
191+
csharp_space_around_declaration_statements = false
192+
csharp_space_before_colon_in_inheritance_clause = true
193+
csharp_space_before_comma = false
194+
csharp_space_before_dot = false
195+
csharp_space_before_open_square_brackets = false
196+
csharp_space_before_semicolon_in_for_statement = false
197+
csharp_space_between_empty_square_brackets = false
198+
csharp_space_between_method_call_empty_parameter_list_parentheses = false
199+
csharp_space_between_method_call_name_and_opening_parenthesis = false
200+
csharp_space_between_method_call_parameter_list_parentheses = false
201+
csharp_space_between_method_declaration_empty_parameter_list_parentheses = false
202+
csharp_space_between_method_declaration_name_and_open_parenthesis = false
203+
csharp_space_between_method_declaration_parameter_list_parentheses = false
204+
csharp_space_between_parentheses = false
205+
csharp_space_between_square_brackets = false
206+
207+
# Wrapping preferences
208+
csharp_preserve_single_line_blocks = true
209+
csharp_preserve_single_line_statements = false
210+
211+
#### Naming styles ####
212+
213+
# Naming rules
214+
215+
dotnet_naming_rule.interface_should_be_begins_with_i.severity = suggestion
216+
dotnet_naming_rule.interface_should_be_begins_with_i.symbols = interface
217+
dotnet_naming_rule.interface_should_be_begins_with_i.style = begins_with_i
218+
219+
dotnet_naming_rule.types_should_be_pascal_case.severity = suggestion
220+
dotnet_naming_rule.types_should_be_pascal_case.symbols = types
221+
dotnet_naming_rule.types_should_be_pascal_case.style = pascal_case
222+
223+
dotnet_naming_rule.private_or_internal_const_field_should_be_pascal_case.severity = suggestion
224+
dotnet_naming_rule.private_or_internal_const_field_should_be_pascal_case.symbols = private_or_internal_const_field
225+
dotnet_naming_rule.private_or_internal_const_field_should_be_pascal_case.style = pascal_case
226+
227+
dotnet_naming_rule.private_or_internal_field_should_be_underscore_camel_case.severity = suggestion
228+
dotnet_naming_rule.private_or_internal_field_should_be_underscore_camel_case.symbols = private_or_internal_field
229+
dotnet_naming_rule.private_or_internal_field_should_be_underscore_camel_case.style = underscore_camel_case
230+
231+
dotnet_naming_rule.non_field_members_should_be_pascal_case.severity = suggestion
232+
dotnet_naming_rule.non_field_members_should_be_pascal_case.symbols = non_field_members
233+
dotnet_naming_rule.non_field_members_should_be_pascal_case.style = pascal_case
234+
235+
# Symbol specifications
236+
237+
dotnet_naming_symbols.interface.applicable_kinds = interface
238+
dotnet_naming_symbols.interface.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
239+
dotnet_naming_symbols.interface.required_modifiers =
240+
241+
dotnet_naming_symbols.private_or_internal_field.applicable_kinds = field
242+
dotnet_naming_symbols.private_or_internal_field.applicable_accessibilities = internal, private, private_protected
243+
dotnet_naming_symbols.private_or_internal_field.required_modifiers =
244+
245+
dotnet_naming_symbols.types.applicable_kinds = class, struct, interface, enum
246+
dotnet_naming_symbols.types.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
247+
dotnet_naming_symbols.types.required_modifiers =
248+
249+
dotnet_naming_symbols.non_field_members.applicable_kinds = property, method, event
250+
dotnet_naming_symbols.non_field_members.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
251+
dotnet_naming_symbols.non_field_members.required_modifiers =
252+
253+
dotnet_naming_symbols.private_or_internal_const_field.applicable_kinds = field
254+
dotnet_naming_symbols.private_or_internal_const_field.applicable_accessibilities = internal, private, protected_internal, private_protected
255+
dotnet_naming_symbols.private_or_internal_const_field.required_modifiers = const
256+
257+
# Naming styles
258+
259+
dotnet_naming_style.pascal_case.required_prefix =
260+
dotnet_naming_style.pascal_case.required_suffix =
261+
dotnet_naming_style.pascal_case.word_separator =
262+
dotnet_naming_style.pascal_case.capitalization = pascal_case
263+
264+
dotnet_naming_style.begins_with_i.required_prefix = I
265+
dotnet_naming_style.begins_with_i.required_suffix =
266+
dotnet_naming_style.begins_with_i.word_separator =
267+
dotnet_naming_style.begins_with_i.capitalization = pascal_case
268+
269+
dotnet_naming_style.underscore_camel_case.required_prefix = _
270+
dotnet_naming_style.underscore_camel_case.required_suffix =
271+
dotnet_naming_style.underscore_camel_case.word_separator =
272+
dotnet_naming_style.underscore_camel_case.capitalization = camel_case

.gitattributes

Lines changed: 27 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# default for csharp files.
1111
# Note: This is only used by command line
1212
###############################################################################
13-
#*.cs diff=csharp
13+
*.cs diff=csharp
1414

1515
###############################################################################
1616
# Set the merge driver for project and solution files
@@ -22,27 +22,28 @@
2222
# these files as binary and thus will always conflict and require user
2323
# intervention with every merge. To do so, just uncomment the entries below
2424
###############################################################################
25-
#*.sln merge=binary
26-
#*.csproj merge=binary
27-
#*.vbproj merge=binary
28-
#*.vcxproj merge=binary
29-
#*.vcproj merge=binary
30-
#*.dbproj merge=binary
31-
#*.fsproj merge=binary
32-
#*.lsproj merge=binary
33-
#*.wixproj merge=binary
34-
#*.modelproj merge=binary
35-
#*.sqlproj merge=binary
36-
#*.wwaproj merge=binary
25+
*.sln merge=binary
26+
*.csproj merge=binary
27+
*.vbproj merge=binary
28+
*.vcxproj merge=binary
29+
*.vcproj merge=binary
30+
*.dbproj merge=binary
31+
*.fsproj merge=binary
32+
*.lsproj merge=binary
33+
*.wixproj merge=binary
34+
*.modelproj merge=binary
35+
*.sqlproj merge=binary
36+
*.wwaproj merge=binary
3737

3838
###############################################################################
3939
# behavior for image files
4040
#
4141
# image files are treated as binary by default.
4242
###############################################################################
43-
#*.jpg binary
44-
#*.png binary
45-
#*.gif binary
43+
*.jpg binary
44+
*.png binary
45+
*.gif binary
46+
*.ico binary
4647

4748
###############################################################################
4849
# diff behavior for common document formats
@@ -51,16 +52,16 @@
5152
# is only available from the command line. Turn it on by uncommenting the
5253
# entries below.
5354
###############################################################################
54-
#*.doc diff=astextplain
55-
#*.DOC diff=astextplain
56-
#*.docx diff=astextplain
57-
#*.DOCX diff=astextplain
58-
#*.dot diff=astextplain
59-
#*.DOT diff=astextplain
60-
#*.pdf diff=astextplain
61-
#*.PDF diff=astextplain
62-
#*.rtf diff=astextplain
63-
#*.RTF diff=astextplain
55+
*.doc diff=astextplain
56+
*.DOC diff=astextplain
57+
*.docx diff=astextplain
58+
*.DOCX diff=astextplain
59+
*.dot diff=astextplain
60+
*.DOT diff=astextplain
61+
*.pdf diff=astextplain
62+
*.PDF diff=astextplain
63+
*.rtf diff=astextplain
64+
*.RTF diff=astextplain
6465

6566
###############################################################################
6667
# exclude files except those with cs file extension from repository language detection
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Desktop (please complete the following information):**
27+
- OS: [e.g. iOS]
28+
- Browser [e.g. chrome, safari]
29+
- Version [e.g. 22]
30+
31+
**Smartphone (please complete the following information):**
32+
- Device: [e.g. iPhone6]
33+
- OS: [e.g. iOS8.1]
34+
- Browser [e.g. stock browser, safari]
35+
- Version [e.g. 22]
36+
37+
**Additional context**
38+
Add any other context about the problem here.

0 commit comments

Comments
 (0)