Skip to content

Commit 14b1025

Browse files
committed
#37 change Grpc -> GrpcHost (conflict Grpc.Core)
1 parent c70e602 commit 14b1025

File tree

334 files changed

+16130
-0
lines changed

Some content is hidden

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

334 files changed

+16130
-0
lines changed

.dockerignore

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
.dockerignore
2+
.env
3+
.git
4+
.gitignore
5+
.vs
6+
.vscode
7+
docker-compose*.yml
8+
docker-compose.dcproj
9+
*.sln
10+
*.md
11+
LICENSE
12+
*.testsettings
13+
vsts-docs
14+
test
15+
README
16+
**/bin/
17+
**/obj/
18+
**/node_modules/
19+
**/bower_components/
20+
**/appsettings.localhost.json
21+
**/build/
22+
!**/web/build/
23+
**/dist/
24+
deployment
25+
assets
26+
docs
27+
**/*.csproj.user

.editorconfig

+147
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,147 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 4
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
11+
# C# files
12+
[*.cs]
13+
# New line preferences
14+
csharp_new_line_before_open_brace = all
15+
csharp_new_line_before_else = true
16+
csharp_new_line_before_catch = true
17+
csharp_new_line_before_finally = true
18+
csharp_new_line_before_members_in_object_initializers = true
19+
csharp_new_line_before_members_in_anonymous_types = true
20+
csharp_new_line_within_query_expression_clauses = true
21+
22+
# Indentation preferences
23+
csharp_indent_block_contents = true
24+
csharp_indent_braces = false
25+
csharp_indent_case_contents = true
26+
csharp_indent_switch_labels = true
27+
csharp_indent_labels = one_less_than_current
28+
29+
# avoid this. unless absolutely necessary
30+
dotnet_style_qualification_for_field = false:suggestion
31+
dotnet_style_qualification_for_property = false:suggestion
32+
dotnet_style_qualification_for_method = false:suggestion
33+
dotnet_style_qualification_for_event = false:suggestion
34+
35+
# only use var when it's obvious what the variable type is
36+
# csharp_style_var_for_built_in_types = false:none
37+
# csharp_style_var_when_type_is_apparent = false:none
38+
# csharp_style_var_elsewhere = false:suggestion
39+
40+
# use language keywords instead of BCL types
41+
dotnet_style_predefined_type_for_locals_parameters_members = true:suggestion
42+
dotnet_style_predefined_type_for_member_access = true:suggestion
43+
44+
# name all constant fields using PascalCase
45+
dotnet_naming_rule.constant_fields_should_be_pascal_case.severity = suggestion
46+
dotnet_naming_rule.constant_fields_should_be_pascal_case.symbols = constant_fields
47+
dotnet_naming_rule.constant_fields_should_be_pascal_case.style = pascal_case_style
48+
49+
dotnet_naming_symbols.constant_fields.applicable_kinds = field
50+
dotnet_naming_symbols.constant_fields.required_modifiers = const
51+
52+
dotnet_naming_style.pascal_case_style.capitalization = pascal_case
53+
54+
# static fields should have s_ prefix
55+
dotnet_naming_rule.static_fields_should_have_prefix.severity = suggestion
56+
dotnet_naming_rule.static_fields_should_have_prefix.symbols = static_fields
57+
dotnet_naming_rule.static_fields_should_have_prefix.style = static_prefix_style
58+
59+
dotnet_naming_symbols.static_fields.applicable_kinds = field
60+
dotnet_naming_symbols.static_fields.required_modifiers = static
61+
62+
dotnet_naming_style.static_prefix_style.required_prefix = s_
63+
dotnet_naming_style.static_prefix_style.capitalization = camel_case
64+
65+
# internal and private fields should be _camelCase
66+
dotnet_naming_rule.camel_case_for_private_internal_fields.severity = suggestion
67+
dotnet_naming_rule.camel_case_for_private_internal_fields.symbols = private_internal_fields
68+
dotnet_naming_rule.camel_case_for_private_internal_fields.style = camel_case_underscore_style
69+
70+
dotnet_naming_symbols.private_internal_fields.applicable_kinds = field
71+
dotnet_naming_symbols.private_internal_fields.applicable_accessibilities = private, internal
72+
73+
dotnet_naming_style.camel_case_underscore_style.required_prefix = _
74+
dotnet_naming_style.camel_case_underscore_style.capitalization = camel_case
75+
76+
# Code style defaults
77+
dotnet_sort_system_directives_first = true
78+
csharp_preserve_single_line_blocks = true
79+
csharp_preserve_single_line_statements = false
80+
81+
# Expression-level preferences
82+
dotnet_style_object_initializer = true:suggestion
83+
dotnet_style_collection_initializer = true:suggestion
84+
dotnet_style_explicit_tuple_names = true:suggestion
85+
dotnet_style_coalesce_expression = true:suggestion
86+
dotnet_style_null_propagation = true:suggestion
87+
88+
# Expression-bodied members
89+
csharp_style_expression_bodied_methods = false:none
90+
csharp_style_expression_bodied_constructors = false:none
91+
csharp_style_expression_bodied_operators = false:none
92+
csharp_style_expression_bodied_properties = true:none
93+
csharp_style_expression_bodied_indexers = true:none
94+
csharp_style_expression_bodied_accessors = true:none
95+
96+
# Pattern matching
97+
csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion
98+
csharp_style_pattern_matching_over_as_with_null_check = true:suggestion
99+
csharp_style_inlined_variable_declaration = true:suggestion
100+
101+
# Null checking preferences
102+
csharp_style_throw_expression = true:suggestion
103+
csharp_style_conditional_delegate_call = true:suggestion
104+
105+
# Space preferences
106+
csharp_space_after_cast = false
107+
csharp_space_after_colon_in_inheritance_clause = true
108+
csharp_space_after_comma = true
109+
csharp_space_after_dot = false
110+
csharp_space_after_keywords_in_control_flow_statements = true
111+
csharp_space_after_semicolon_in_for_statement = true
112+
csharp_space_around_binary_operators = before_and_after
113+
csharp_space_around_declaration_statements = do_not_ignore
114+
csharp_space_before_colon_in_inheritance_clause = true
115+
csharp_space_before_comma = false
116+
csharp_space_before_dot = false
117+
csharp_space_before_open_square_brackets = false
118+
csharp_space_before_semicolon_in_for_statement = false
119+
csharp_space_between_empty_square_brackets = false
120+
csharp_space_between_method_call_empty_parameter_list_parentheses = false
121+
csharp_space_between_method_call_name_and_opening_parenthesis = false
122+
csharp_space_between_method_call_parameter_list_parentheses = false
123+
csharp_space_between_method_declaration_empty_parameter_list_parentheses = false
124+
csharp_space_between_method_declaration_name_and_open_parenthesis = false
125+
csharp_space_between_method_declaration_parameter_list_parentheses = false
126+
csharp_space_between_parentheses = false
127+
csharp_space_between_square_brackets = false
128+
129+
[*.{asm,inc}]
130+
indent_size = 8
131+
132+
# Xml project files
133+
[*.{csproj,vcxproj,vcxproj.filters,proj,nativeproj,locproj}]
134+
indent_size = 2
135+
136+
# Xml config files
137+
[*.{props,targets,config,nuspec}]
138+
indent_size = 2
139+
140+
[CMakeLists.txt]
141+
indent_size = 2
142+
143+
[*.cmd]
144+
indent_size = 2
145+
146+
[*.{js,json,proto}]
147+
indent_size = 2

0 commit comments

Comments
 (0)