Skip to content

Commit a1acd53

Browse files
committed
Initial code commit
1 parent 3f63da9 commit a1acd53

15 files changed

+480
-1
lines changed

.cspell.jsonc

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"words": [
3+
"anypackage",
4+
"netstandard",
5+
"Nieto",
6+
"Runspace"
7+
]
8+
}

.editorconfig

+248
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,248 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
# indent_size intentionally not specified in this section
6+
indent_style = space
7+
insert_final_newline = true
8+
trim_trailing_whitespace = true
9+
10+
[*.{ps1,psd1,psm1}]
11+
indent_size = 4
12+
13+
# Xml project files
14+
[*.{csproj,resx,ps1xml}]
15+
indent_size = 2
16+
17+
# Data serialization
18+
[*.{json,jsonc,xml,yml,yaml}]
19+
indent_size = 2
20+
21+
# C# files
22+
[*.cs]
23+
24+
#### Core EditorConfig Options ####
25+
26+
# Indentation and spacing
27+
indent_size = 4
28+
29+
#### .NET Coding Conventions ####
30+
31+
# Organize usings
32+
dotnet_separate_import_directive_groups = true
33+
dotnet_sort_system_directives_first = true
34+
35+
# Header template
36+
file_header_template = Copyright (c) Thomas Nieto - All Rights Reserved\nYou may use, distribute and modify this code under the\nterms of the MIT license.
37+
dotnet_diagnostic.IDE0073.severity = warning
38+
39+
# this. and Me. preferences
40+
dotnet_style_qualification_for_event = false
41+
dotnet_style_qualification_for_field = false
42+
dotnet_style_qualification_for_method = false
43+
dotnet_style_qualification_for_property = false
44+
45+
# Language keywords vs BCL types preferences
46+
dotnet_style_predefined_type_for_locals_parameters_members = true
47+
dotnet_style_predefined_type_for_member_access = true
48+
49+
# Parentheses preferences
50+
dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity
51+
dotnet_style_parentheses_in_other_binary_operators = always_for_clarity
52+
dotnet_style_parentheses_in_other_operators = never_if_unnecessary
53+
dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity
54+
55+
# Modifier preferences
56+
dotnet_style_require_accessibility_modifiers = for_non_interface_members
57+
58+
# Expression-level preferences
59+
dotnet_style_coalesce_expression = true
60+
dotnet_style_collection_initializer = true
61+
dotnet_style_explicit_tuple_names = true
62+
dotnet_style_namespace_match_folder = true
63+
dotnet_style_null_propagation = true
64+
dotnet_style_object_initializer = true
65+
dotnet_style_operator_placement_when_wrapping = beginning_of_line
66+
dotnet_style_prefer_auto_properties = true
67+
dotnet_style_prefer_collection_expression = when_types_loosely_match
68+
dotnet_style_prefer_compound_assignment = true
69+
dotnet_style_prefer_conditional_expression_over_assignment = true
70+
dotnet_style_prefer_conditional_expression_over_return = true
71+
dotnet_style_prefer_foreach_explicit_cast_in_source = when_strongly_typed
72+
dotnet_style_prefer_inferred_anonymous_type_member_names = true
73+
dotnet_style_prefer_inferred_tuple_names = true
74+
dotnet_style_prefer_is_null_check_over_reference_equality_method = true
75+
dotnet_style_prefer_simplified_boolean_expressions = true
76+
dotnet_style_prefer_simplified_interpolation = true
77+
78+
# Field preferences
79+
dotnet_style_readonly_field = true
80+
81+
# Parameter preferences
82+
dotnet_code_quality_unused_parameters = all:silent
83+
84+
# Suppression preferences
85+
dotnet_remove_unnecessary_suppression_exclusions = none
86+
87+
# New line preferences
88+
dotnet_style_allow_multiple_blank_lines_experimental = true
89+
dotnet_style_allow_statement_immediately_after_block_experimental = true
90+
91+
#### C# Coding Conventions ####
92+
93+
# var preferences
94+
csharp_style_var_elsewhere = false
95+
csharp_style_var_for_built_in_types = false
96+
csharp_style_var_when_type_is_apparent = false
97+
98+
# Expression-bodied members
99+
csharp_style_expression_bodied_accessors = true
100+
csharp_style_expression_bodied_constructors = false
101+
csharp_style_expression_bodied_indexers = true
102+
csharp_style_expression_bodied_lambdas = true
103+
csharp_style_expression_bodied_local_functions = false
104+
csharp_style_expression_bodied_methods = false
105+
csharp_style_expression_bodied_operators = false
106+
csharp_style_expression_bodied_properties = true
107+
108+
# Pattern matching preferences
109+
csharp_style_pattern_matching_over_as_with_null_check = true
110+
csharp_style_pattern_matching_over_is_with_cast_check = true
111+
csharp_style_prefer_extended_property_pattern = true
112+
csharp_style_prefer_not_pattern = true
113+
csharp_style_prefer_pattern_matching = true
114+
csharp_style_prefer_switch_expression = true
115+
116+
# Null-checking preferences
117+
csharp_style_conditional_delegate_call = true
118+
119+
# Modifier preferences
120+
csharp_prefer_static_local_function = true
121+
csharp_preferred_modifier_order = public,private,protected,internal,file,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,required,volatile,async
122+
csharp_style_prefer_readonly_struct = true
123+
csharp_style_prefer_readonly_struct_member = true
124+
125+
# Code-block preferences
126+
csharp_prefer_braces = true
127+
csharp_prefer_simple_using_statement = true
128+
csharp_style_namespace_declarations = file_scoped:warning
129+
csharp_style_prefer_method_group_conversion = true
130+
csharp_style_prefer_primary_constructors = true
131+
csharp_style_prefer_top_level_statements = true
132+
133+
# Expression-level preferences
134+
csharp_prefer_simple_default_expression = true
135+
csharp_style_deconstructed_variable_declaration = true
136+
csharp_style_implicit_object_creation_when_type_is_apparent = true
137+
csharp_style_inlined_variable_declaration = true
138+
csharp_style_prefer_index_operator = true
139+
csharp_style_prefer_local_over_anonymous_function = true
140+
csharp_style_prefer_null_check_over_type_check = true
141+
csharp_style_prefer_range_operator = true
142+
csharp_style_prefer_tuple_swap = true
143+
csharp_style_prefer_utf8_string_literals = true
144+
csharp_style_throw_expression = true
145+
csharp_style_unused_value_assignment_preference = discard_variable
146+
csharp_style_unused_value_expression_statement_preference = discard_variable
147+
148+
# 'using' directive preferences
149+
csharp_using_directive_placement = outside_namespace
150+
151+
# Remove unused 'using' statements
152+
dotnet_diagnostic.IDE0005.severity = warning
153+
154+
# New line preferences
155+
csharp_style_allow_blank_line_after_colon_in_constructor_initializer_experimental = true
156+
csharp_style_allow_blank_line_after_token_in_arrow_expression_clause_experimental = true
157+
csharp_style_allow_blank_line_after_token_in_conditional_expression_experimental = true
158+
csharp_style_allow_blank_lines_between_consecutive_braces_experimental = true
159+
csharp_style_allow_embedded_statements_on_same_line_experimental = true
160+
161+
#### C# Formatting Rules ####
162+
163+
# New line preferences
164+
csharp_new_line_before_catch = true
165+
csharp_new_line_before_else = true
166+
csharp_new_line_before_finally = true
167+
csharp_new_line_before_members_in_anonymous_types = true
168+
csharp_new_line_before_members_in_object_initializers = true
169+
csharp_new_line_before_open_brace = all
170+
csharp_new_line_between_query_expression_clauses = true
171+
172+
# Indentation preferences
173+
csharp_indent_block_contents = true
174+
csharp_indent_braces = false
175+
csharp_indent_case_contents = true
176+
csharp_indent_case_contents_when_block = true
177+
csharp_indent_labels = one_less_than_current
178+
csharp_indent_switch_labels = true
179+
180+
# Space preferences
181+
csharp_space_after_cast = false
182+
csharp_space_after_colon_in_inheritance_clause = true
183+
csharp_space_after_comma = true
184+
csharp_space_after_dot = false
185+
csharp_space_after_keywords_in_control_flow_statements = true
186+
csharp_space_after_semicolon_in_for_statement = true
187+
csharp_space_around_binary_operators = before_and_after
188+
csharp_space_around_declaration_statements = false
189+
csharp_space_before_colon_in_inheritance_clause = true
190+
csharp_space_before_comma = false
191+
csharp_space_before_dot = false
192+
csharp_space_before_open_square_brackets = false
193+
csharp_space_before_semicolon_in_for_statement = false
194+
csharp_space_between_empty_square_brackets = false
195+
csharp_space_between_method_call_empty_parameter_list_parentheses = false
196+
csharp_space_between_method_call_name_and_opening_parenthesis = false
197+
csharp_space_between_method_call_parameter_list_parentheses = false
198+
csharp_space_between_method_declaration_empty_parameter_list_parentheses = false
199+
csharp_space_between_method_declaration_name_and_open_parenthesis = false
200+
csharp_space_between_method_declaration_parameter_list_parentheses = false
201+
csharp_space_between_parentheses = false
202+
csharp_space_between_square_brackets = false
203+
204+
# Wrapping preferences
205+
csharp_preserve_single_line_blocks = true
206+
csharp_preserve_single_line_statements = true
207+
208+
#### Naming styles ####
209+
210+
# Naming rules
211+
212+
dotnet_naming_rule.interface_should_be_begins_with_i.severity = suggestion
213+
dotnet_naming_rule.interface_should_be_begins_with_i.symbols = interface
214+
dotnet_naming_rule.interface_should_be_begins_with_i.style = begins_with_i
215+
216+
dotnet_naming_rule.types_should_be_pascal_case.severity = suggestion
217+
dotnet_naming_rule.types_should_be_pascal_case.symbols = types
218+
dotnet_naming_rule.types_should_be_pascal_case.style = pascal_case
219+
220+
dotnet_naming_rule.non_field_members_should_be_pascal_case.severity = suggestion
221+
dotnet_naming_rule.non_field_members_should_be_pascal_case.symbols = non_field_members
222+
dotnet_naming_rule.non_field_members_should_be_pascal_case.style = pascal_case
223+
224+
# Symbol specifications
225+
226+
dotnet_naming_symbols.interface.applicable_kinds = interface
227+
dotnet_naming_symbols.interface.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
228+
dotnet_naming_symbols.interface.required_modifiers =
229+
230+
dotnet_naming_symbols.types.applicable_kinds = class, struct, interface, enum
231+
dotnet_naming_symbols.types.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
232+
dotnet_naming_symbols.types.required_modifiers =
233+
234+
dotnet_naming_symbols.non_field_members.applicable_kinds = property, event, method
235+
dotnet_naming_symbols.non_field_members.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
236+
dotnet_naming_symbols.non_field_members.required_modifiers =
237+
238+
# Naming styles
239+
240+
dotnet_naming_style.pascal_case.required_prefix =
241+
dotnet_naming_style.pascal_case.required_suffix =
242+
dotnet_naming_style.pascal_case.word_separator =
243+
dotnet_naming_style.pascal_case.capitalization = pascal_case
244+
245+
dotnet_naming_style.begins_with_i.required_prefix = I
246+
dotnet_naming_style.begins_with_i.required_suffix =
247+
dotnet_naming_style.begins_with_i.word_separator =
248+
dotnet_naming_style.begins_with_i.capitalization = pascal_case

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
bin/
2+
obj/
3+
out/

.markdownlint.jsonc

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
{
2+
"code-block-style": {
3+
"style": "fenced"
4+
},
5+
"code-fence-style": {
6+
"style": "backtick"
7+
},
8+
"emphasis-style": {
9+
"style": "asterisk"
10+
},
11+
"fenced-code-language": {
12+
"allowed_languages": [
13+
"powershell",
14+
"text"
15+
],
16+
"language_only": true
17+
},
18+
"heading-style": {
19+
"style": "atx"
20+
},
21+
"hr-style": {
22+
"style": "---"
23+
},
24+
"line-length": {
25+
"strict": true,
26+
"code_blocks": false
27+
},
28+
"link-image-style": {
29+
"collapsed": false,
30+
"url_inline": false
31+
},
32+
"no-duplicate-heading": {
33+
"siblings_only": true
34+
},
35+
"ol-prefix": {
36+
"style": "ordered"
37+
},
38+
"proper-names": {
39+
"code_blocks": false,
40+
"names": [
41+
"PowerShell",
42+
"AnyPackage"
43+
]
44+
},
45+
"reference-links-images": {
46+
"shortcut_syntax": true
47+
},
48+
"strong-style": {
49+
"style": "asterisk"
50+
},
51+
"ul-style": {
52+
"style": "dash"
53+
}
54+
}

.vscode/extensions.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"recommendations": [
3+
"streetsidesoftware.code-spell-checker",
4+
"davidanson.vscode-markdownlint",
5+
"editorconfig.editorconfig"
6+
]
7+
}

BuildSettings.psd1

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
@{
2+
Path = @(
3+
'./src/code/bin/Release/netstandard2.0/NuGetProvider.dll',
4+
'./src/AnyPackage.NuGet.psd1'
5+
)
6+
Destination = './module'
7+
}

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2024 Thomas Nieto
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

PesterSettings.psd1

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
@{
2+
Run = @{
3+
Exit = $true
4+
}
5+
Output = @{
6+
Verbosity = 'Detailed'
7+
}
8+
}

0 commit comments

Comments
 (0)