Skip to content
This repository was archived by the owner on May 1, 2024. It is now read-only.

Commit e880c86

Browse files
committed
Added an .editorconfig to Solution
1 parent 9f3cabf commit e880c86

2 files changed

Lines changed: 251 additions & 9 deletions

File tree

.editorconfig

Lines changed: 218 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,218 @@
1+
[*.{props,targets}]
2+
indent_style = tab
3+
indent_size = 4
4+
5+
[*.{csproj}]
6+
indent_style = space
7+
indent_size = 2
8+
9+
# C# files
10+
[*.cs]
11+
max_line_length = 120
12+
13+
#### Core EditorConfig Options ####
14+
15+
# Indentation and spacing
16+
indent_style = tab
17+
indent_size = 4
18+
tab_width = 4
19+
20+
# New line preferences
21+
end_of_line = lf
22+
insert_final_newline = true
23+
charset = utf-8
24+
25+
#### .NET Coding Conventions ####
26+
27+
# Organize usings
28+
dotnet_separate_import_directive_groups = false
29+
dotnet_sort_system_directives_first = true
30+
31+
# this. and Me. preferences
32+
dotnet_style_qualification_for_event = false:silent
33+
dotnet_style_qualification_for_field = false:silent
34+
dotnet_style_qualification_for_method = false:silent
35+
dotnet_style_qualification_for_property = false:silent
36+
37+
# Language keywords vs BCL types preferences
38+
dotnet_style_predefined_type_for_locals_parameters_members = true:silent
39+
dotnet_style_predefined_type_for_member_access = true:silent
40+
41+
# Parentheses preferences
42+
dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity:silent
43+
dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:silent
44+
dotnet_style_parentheses_in_other_operators = never_if_unnecessary:silent
45+
dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity:silent
46+
47+
# Modifier preferences
48+
dotnet_style_require_accessibility_modifiers = omit_if_default:suggestion
49+
50+
# Expression-level preferences
51+
dotnet_style_coalesce_expression = true:suggestion
52+
dotnet_style_collection_initializer = true:suggestion
53+
dotnet_style_explicit_tuple_names = true:suggestion
54+
dotnet_style_null_propagation = true:suggestion
55+
dotnet_style_object_initializer = true:suggestion
56+
dotnet_style_prefer_auto_properties = true:silent
57+
dotnet_style_prefer_compound_assignment = true:suggestion
58+
dotnet_style_prefer_conditional_expression_over_assignment = true:silent
59+
dotnet_style_prefer_conditional_expression_over_return = true:silent
60+
dotnet_style_prefer_inferred_anonymous_type_member_names = true:suggestion
61+
dotnet_style_prefer_inferred_tuple_names = true:suggestion
62+
dotnet_style_prefer_is_null_check_over_reference_equality_method = true:suggestion
63+
dotnet_style_prefer_simplified_interpolation = true:suggestion
64+
65+
# Field preferences
66+
dotnet_style_readonly_field = true:suggestion
67+
68+
# Parameter preferences
69+
dotnet_code_quality_unused_parameters = all:suggestion
70+
71+
#### C# Coding Conventions ####
72+
73+
# var preferences
74+
csharp_style_var_elsewhere = false:none
75+
csharp_style_var_for_built_in_types = false:none
76+
csharp_style_var_when_type_is_apparent = false:suggestion
77+
78+
# Expression-bodied members
79+
csharp_style_expression_bodied_accessors = true:none
80+
csharp_style_expression_bodied_constructors = false:none
81+
csharp_style_expression_bodied_indexers = true:none
82+
csharp_style_expression_bodied_lambdas = true:none
83+
csharp_style_expression_bodied_local_functions = false:none
84+
csharp_style_expression_bodied_methods = false:none
85+
csharp_style_expression_bodied_operators = false:none
86+
csharp_style_expression_bodied_properties = true:none
87+
88+
# Pattern matching preferences
89+
csharp_style_pattern_matching_over_as_with_null_check = true:suggestion
90+
csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion
91+
csharp_style_prefer_switch_expression = true:silent
92+
93+
# Null-checking preferences
94+
csharp_style_conditional_delegate_call = true:suggestion
95+
96+
# Modifier preferences
97+
csharp_prefer_static_local_function = true:suggestion
98+
csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async:silent
99+
100+
# Code-block preferences
101+
csharp_prefer_braces = when_multiline:suggestion
102+
csharp_prefer_simple_using_statement = true:suggestion
103+
104+
# Expression-level preferences
105+
csharp_prefer_simple_default_expression = true:suggestion
106+
csharp_style_deconstructed_variable_declaration = true:suggestion
107+
csharp_style_inlined_variable_declaration = true:suggestion
108+
csharp_style_pattern_local_over_anonymous_function = true:suggestion
109+
csharp_style_prefer_index_operator = true:suggestion
110+
csharp_style_prefer_range_operator = true:suggestion
111+
csharp_style_throw_expression = true:suggestion
112+
csharp_style_unused_value_assignment_preference = discard_variable:suggestion
113+
csharp_style_unused_value_expression_statement_preference = discard_variable:silent
114+
115+
# 'using' directive preferences
116+
csharp_using_directive_placement = outside_namespace:suggestion
117+
118+
#### C# Formatting Rules ####
119+
120+
# New line preferences
121+
csharp_new_line_before_catch = false
122+
csharp_new_line_before_else = false
123+
csharp_new_line_before_finally = false
124+
csharp_new_line_before_members_in_anonymous_types = true
125+
csharp_new_line_before_members_in_object_initializers = true
126+
csharp_new_line_before_open_brace = anonymous_methods,methods
127+
csharp_new_line_between_query_expression_clauses = true
128+
129+
# Indentation preferences
130+
csharp_indent_block_contents = true
131+
csharp_indent_braces = false
132+
csharp_indent_case_contents = true
133+
csharp_indent_case_contents_when_block = false
134+
csharp_indent_labels = one_less_than_current
135+
csharp_indent_switch_labels = false
136+
137+
# Space preferences
138+
csharp_space_after_cast = true
139+
csharp_space_after_colon_in_inheritance_clause = true
140+
csharp_space_after_comma = true
141+
csharp_space_after_dot = false
142+
csharp_space_after_keywords_in_control_flow_statements = true
143+
csharp_space_after_semicolon_in_for_statement = true
144+
csharp_space_around_binary_operators = before_and_after
145+
csharp_space_around_declaration_statements = false
146+
csharp_space_before_colon_in_inheritance_clause = true
147+
csharp_space_before_comma = false
148+
csharp_space_before_dot = false
149+
csharp_space_before_open_square_brackets = true
150+
csharp_space_before_semicolon_in_for_statement = false
151+
csharp_space_between_empty_square_brackets = false
152+
csharp_space_between_method_call_empty_parameter_list_parentheses = false
153+
csharp_space_between_method_call_name_and_opening_parenthesis = true
154+
csharp_space_between_method_call_parameter_list_parentheses = false
155+
csharp_space_between_method_declaration_empty_parameter_list_parentheses = false
156+
csharp_space_between_method_declaration_name_and_open_parenthesis = true
157+
csharp_space_between_method_declaration_parameter_list_parentheses = false
158+
csharp_space_between_parentheses = false
159+
csharp_space_between_square_brackets = false
160+
161+
# Wrapping preferences
162+
csharp_preserve_single_line_blocks = true
163+
csharp_preserve_single_line_statements = true
164+
165+
#### Naming styles ####
166+
167+
# Naming rules
168+
169+
dotnet_naming_rule.interface_should_be_begins_with_i.severity = suggestion
170+
dotnet_naming_rule.interface_should_be_begins_with_i.symbols = interface
171+
dotnet_naming_rule.interface_should_be_begins_with_i.style = begins_with_i
172+
173+
dotnet_naming_rule.types_should_be_pascalcase.severity = suggestion
174+
dotnet_naming_rule.types_should_be_pascalcase.symbols = types
175+
dotnet_naming_rule.types_should_be_pascalcase.style = pascalcase
176+
177+
dotnet_naming_rule.non_field_members_should_be_pascalcase.severity = suggestion
178+
dotnet_naming_rule.non_field_members_should_be_pascalcase.symbols = non_field_members
179+
dotnet_naming_rule.non_field_members_should_be_pascalcase.style = pascalcase
180+
181+
dotnet_naming_rule.private_or_internal_field_should_be_camelcase.severity = suggestion
182+
dotnet_naming_rule.private_or_internal_field_should_be_camelcase.symbols = private_or_internal_field
183+
dotnet_naming_rule.private_or_internal_field_should_be_camelcase.style = camelcase
184+
185+
# Symbol specifications
186+
187+
dotnet_naming_symbols.interface.applicable_kinds = interface
188+
dotnet_naming_symbols.interface.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
189+
dotnet_naming_symbols.interface.required_modifiers =
190+
191+
dotnet_naming_symbols.private_or_internal_field.applicable_kinds = field
192+
dotnet_naming_symbols.private_or_internal_field.applicable_accessibilities = internal, private, private_protected
193+
dotnet_naming_symbols.private_or_internal_field.required_modifiers =
194+
195+
dotnet_naming_symbols.types.applicable_kinds = class, struct, interface, enum
196+
dotnet_naming_symbols.types.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
197+
dotnet_naming_symbols.types.required_modifiers =
198+
199+
dotnet_naming_symbols.non_field_members.applicable_kinds = property, event, method
200+
dotnet_naming_symbols.non_field_members.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
201+
dotnet_naming_symbols.non_field_members.required_modifiers =
202+
203+
# Naming styles
204+
205+
dotnet_naming_style.pascalcase.required_prefix =
206+
dotnet_naming_style.pascalcase.required_suffix =
207+
dotnet_naming_style.pascalcase.word_separator =
208+
dotnet_naming_style.pascalcase.capitalization = pascal_case
209+
210+
dotnet_naming_style.begins_with_i.required_prefix = I
211+
dotnet_naming_style.begins_with_i.required_suffix =
212+
dotnet_naming_style.begins_with_i.word_separator =
213+
dotnet_naming_style.begins_with_i.capitalization = pascal_case
214+
215+
dotnet_naming_style.camelcase.required_prefix =
216+
dotnet_naming_style.camelcase.required_suffix =
217+
dotnet_naming_style.camelcase.word_separator =
218+
dotnet_naming_style.camelcase.capitalization = camel_case

Xamarin.Google.sln

Lines changed: 33 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -124,15 +124,20 @@ EndProject
124124
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MLKitSample", "samples\Firebase\MLKit\MLKitSample\MLKitSample.csproj", "{AF9847A8-8F2E-4F1F-8DF6-B311BAE0407A}"
125125
EndProject
126126
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Installations", "source\Firebase\Installations\Installations.csproj", "{65ACD945-5A8A-419D-B9FB-8DFD03C532F4}"
127-
EndProject
128-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CloudFunctions", "source\Firebase\CloudFunctions\CloudFunctions.csproj", "{E5719ABE-6807-49C9-9E7A-0997FF4A5365}"
127+
EndProject
128+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CloudFunctions", "source\Firebase\CloudFunctions\CloudFunctions.csproj", "{E5719ABE-6807-49C9-9E7A-0997FF4A5365}"
129129
EndProject
130130
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "InAppMessaging", "source\Firebase\InAppMessaging\InAppMessaging.csproj", "{AB5F0D3A-EE49-48ED-848F-B288D837CA77}"
131131
EndProject
132132
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "InAppMessagingSample", "samples\Firebase\InAppMessaging\InAppMessagingSample\InAppMessagingSample.csproj", "{9353CA95-7C8D-44BC-B599-FCD195C4722E}"
133-
EndProject
133+
EndProject
134134
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CloudFunctionsSample", "samples\Firebase\CloudFunctions\CloudFunctionsSample\CloudFunctionsSample.csproj", "{C02A268C-500B-4C3E-81E7-4E40A7AEB323}"
135135
EndProject
136+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{C207DCCA-9510-4CDD-A6E7-042C6834171C}"
137+
ProjectSection(SolutionItems) = preProject
138+
.editorconfig = .editorconfig
139+
EndProjectSection
140+
EndProject
136141
Global
137142
GlobalSection(SolutionConfigurationPlatforms) = preSolution
138143
Debug|Any CPU = Debug|Any CPU
@@ -1371,7 +1376,11 @@ Global
13711376
{43F378EA-35C8-494E-9685-B00EBBA2A7A3}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
13721377
{43F378EA-35C8-494E-9685-B00EBBA2A7A3}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
13731378
{43F378EA-35C8-494E-9685-B00EBBA2A7A3}.Debug|iPhone.ActiveCfg = Debug|Any CPU
1374-
{43F378EA-35C8-494E-9685-B00EBBA2A7A3}.Debug|iPhone.Build.0 = Debug|Any CPU
1379+
{43F378EA-35C8-494E-9685-B00EBBA2A7A3}.Debug|iPhone.Build.0 = Debug|Any CPU
1380+
{43F378EA-35C8-494E-9685-B00EBBA2A7A3}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU
1381+
{43F378EA-35C8-494E-9685-B00EBBA2A7A3}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU
1382+
{43F378EA-35C8-494E-9685-B00EBBA2A7A3}.AppStore|iPhone.ActiveCfg = Release|Any CPU
1383+
{43F378EA-35C8-494E-9685-B00EBBA2A7A3}.AppStore|iPhone.Build.0 = Release|Any CPU
13751384
{E5719ABE-6807-49C9-9E7A-0997FF4A5365}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
13761385
{E5719ABE-6807-49C9-9E7A-0997FF4A5365}.Debug|Any CPU.Build.0 = Debug|Any CPU
13771386
{E5719ABE-6807-49C9-9E7A-0997FF4A5365}.Debug|x64.ActiveCfg = Debug|Any CPU
@@ -1392,6 +1401,10 @@ Global
13921401
{E5719ABE-6807-49C9-9E7A-0997FF4A5365}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
13931402
{E5719ABE-6807-49C9-9E7A-0997FF4A5365}.Debug|iPhone.ActiveCfg = Debug|Any CPU
13941403
{E5719ABE-6807-49C9-9E7A-0997FF4A5365}.Debug|iPhone.Build.0 = Debug|Any CPU
1404+
{E5719ABE-6807-49C9-9E7A-0997FF4A5365}.Ad-Hoc|iPhone.ActiveCfg = Debug|Any CPU
1405+
{E5719ABE-6807-49C9-9E7A-0997FF4A5365}.Ad-Hoc|iPhone.Build.0 = Debug|Any CPU
1406+
{E5719ABE-6807-49C9-9E7A-0997FF4A5365}.AppStore|iPhone.ActiveCfg = Debug|Any CPU
1407+
{E5719ABE-6807-49C9-9E7A-0997FF4A5365}.AppStore|iPhone.Build.0 = Debug|Any CPU
13951408
{43F378EA-35C8-494E-9685-B00EBBA2A7A3}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU
13961409
{43F378EA-35C8-494E-9685-B00EBBA2A7A3}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU
13971410
{43F378EA-35C8-494E-9685-B00EBBA2A7A3}.AppStore|iPhone.ActiveCfg = Release|Any CPU
@@ -1416,7 +1429,10 @@ Global
14161429
{6EB1DC55-1D8C-4D5C-AD5C-5C4E74B93FF7}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
14171430
{6EB1DC55-1D8C-4D5C-AD5C-5C4E74B93FF7}.Debug|iPhone.ActiveCfg = Debug|iPhone
14181431
{6EB1DC55-1D8C-4D5C-AD5C-5C4E74B93FF7}.Debug|iPhone.Build.0 = Debug|iPhone
1419-
{6EB1DC55-1D8C-4D5C-AD5C-5C4E74B93FF7}.Ad-Hoc|iPhone.ActiveCfg = Release|iPhone
1432+
{6EB1DC55-1D8C-4D5C-AD5C-5C4E74B93FF7}.Ad-Hoc|iPhone.ActiveCfg = Release|iPhone
1433+
{6EB1DC55-1D8C-4D5C-AD5C-5C4E74B93FF7}.Ad-Hoc|iPhone.Build.0 = Release|iPhone
1434+
{6EB1DC55-1D8C-4D5C-AD5C-5C4E74B93FF7}.AppStore|iPhone.ActiveCfg = Release|iPhone
1435+
{6EB1DC55-1D8C-4D5C-AD5C-5C4E74B93FF7}.AppStore|iPhone.Build.0 = Release|iPhone
14201436
{E5719ABE-6807-49C9-9E7A-0997FF4A5365}.Ad-Hoc|iPhone.ActiveCfg = Debug|Any CPU
14211437
{6EB1DC55-1D8C-4D5C-AD5C-5C4E74B93FF7}.Ad-Hoc|iPhone.Build.0 = Release|iPhone
14221438
{6EB1DC55-1D8C-4D5C-AD5C-5C4E74B93FF7}.AppStore|iPhone.ActiveCfg = Release|iPhone
@@ -1484,15 +1500,23 @@ Global
14841500
{65ACD945-5A8A-419D-B9FB-8DFD03C532F4}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
14851501
{65ACD945-5A8A-419D-B9FB-8DFD03C532F4}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
14861502
{65ACD945-5A8A-419D-B9FB-8DFD03C532F4}.Release|iPhone.ActiveCfg = Release|Any CPU
1487-
{65ACD945-5A8A-419D-B9FB-8DFD03C532F4}.Release|iPhone.Build.0 = Release|Any CPU
1503+
{65ACD945-5A8A-419D-B9FB-8DFD03C532F4}.Release|iPhone.Build.0 = Release|Any CPU
1504+
{65ACD945-5A8A-419D-B9FB-8DFD03C532F4}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
1505+
{65ACD945-5A8A-419D-B9FB-8DFD03C532F4}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
1506+
{65ACD945-5A8A-419D-B9FB-8DFD03C532F4}.Debug|iPhone.ActiveCfg = Debug|Any CPU
1507+
{65ACD945-5A8A-419D-B9FB-8DFD03C532F4}.Debug|iPhone.Build.0 = Debug|Any CPU
1508+
{65ACD945-5A8A-419D-B9FB-8DFD03C532F4}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU
1509+
{65ACD945-5A8A-419D-B9FB-8DFD03C532F4}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU
1510+
{65ACD945-5A8A-419D-B9FB-8DFD03C532F4}.AppStore|iPhone.ActiveCfg = Release|Any CPU
1511+
{65ACD945-5A8A-419D-B9FB-8DFD03C532F4}.AppStore|iPhone.Build.0 = Release|Any CPU
14881512
{E5719ABE-6807-49C9-9E7A-0997FF4A5365}.Ad-Hoc|iPhone.Build.0 = Debug|Any CPU
14891513
{65ACD945-5A8A-419D-B9FB-8DFD03C532F4}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
14901514
{65ACD945-5A8A-419D-B9FB-8DFD03C532F4}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
14911515
{65ACD945-5A8A-419D-B9FB-8DFD03C532F4}.Debug|iPhone.ActiveCfg = Debug|Any CPU
14921516
{65ACD945-5A8A-419D-B9FB-8DFD03C532F4}.Debug|iPhone.Build.0 = Debug|Any CPU
14931517
{65ACD945-5A8A-419D-B9FB-8DFD03C532F4}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU
14941518
{65ACD945-5A8A-419D-B9FB-8DFD03C532F4}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU
1495-
{65ACD945-5A8A-419D-B9FB-8DFD03C532F4}.AppStore|iPhone.ActiveCfg = Release|Any CPU
1519+
{65ACD945-5A8A-419D-B9FB-8DFD03C532F4}.AppStore|iPhone.ActiveCfg = Release|Any CPU
14961520
{E5719ABE-6807-49C9-9E7A-0997FF4A5365}.AppStore|iPhone.ActiveCfg = Debug|Any CPU
14971521
{65ACD945-5A8A-419D-B9FB-8DFD03C532F4}.AppStore|iPhone.Build.0 = Release|Any CPU
14981522
{AB5F0D3A-EE49-48ED-848F-B288D837CA77}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
@@ -1542,7 +1566,7 @@ Global
15421566
{9353CA95-7C8D-44BC-B599-FCD195C4722E}.Ad-Hoc|iPhone.ActiveCfg = Release|iPhone
15431567
{9353CA95-7C8D-44BC-B599-FCD195C4722E}.Ad-Hoc|iPhone.Build.0 = Release|iPhone
15441568
{9353CA95-7C8D-44BC-B599-FCD195C4722E}.AppStore|iPhone.ActiveCfg = Release|iPhone
1545-
{9353CA95-7C8D-44BC-B599-FCD195C4722E}.AppStore|iPhone.Build.0 = Release|iPhone
1569+
{9353CA95-7C8D-44BC-B599-FCD195C4722E}.AppStore|iPhone.Build.0 = Release|iPhone
15461570
{E5719ABE-6807-49C9-9E7A-0997FF4A5365}.AppStore|iPhone.Build.0 = Debug|Any CPU
15471571
{C02A268C-500B-4C3E-81E7-4E40A7AEB323}.Debug|Any CPU.ActiveCfg = Debug|iPhoneSimulator
15481572
{C02A268C-500B-4C3E-81E7-4E40A7AEB323}.Debug|Any CPU.Build.0 = Debug|iPhoneSimulator
@@ -1630,7 +1654,7 @@ Global
16301654
{AF9847A8-8F2E-4F1F-8DF6-B311BAE0407A} = {A8FBB637-BB67-45CD-9883-E203FE66EC13}
16311655
{65ACD945-5A8A-419D-B9FB-8DFD03C532F4} = {87DAFAF8-C745-44F0-BC8A-503BF4A97082}
16321656
{AB5F0D3A-EE49-48ED-848F-B288D837CA77} = {87DAFAF8-C745-44F0-BC8A-503BF4A97082}
1633-
{9353CA95-7C8D-44BC-B599-FCD195C4722E} = {A8FBB637-BB67-45CD-9883-E203FE66EC13}
1657+
{9353CA95-7C8D-44BC-B599-FCD195C4722E} = {A8FBB637-BB67-45CD-9883-E203FE66EC13}
16341658
{E5719ABE-6807-49C9-9E7A-0997FF4A5365} = {87DAFAF8-C745-44F0-BC8A-503BF4A97082}
16351659
{C02A268C-500B-4C3E-81E7-4E40A7AEB323} = {A8FBB637-BB67-45CD-9883-E203FE66EC13}
16361660
EndGlobalSection

0 commit comments

Comments
 (0)