commit 794fb22492d3ec9cacca6bd5ab736e932068cfb6 Author: Jesus Castro Date: Wed Jan 7 22:41:11 2026 +0800 Push project diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..50d1cea --- /dev/null +++ b/.editorconfig @@ -0,0 +1,247 @@ +# Remove the line below if you want to inherit .editorconfig settings from higher directories +root = true + +# C# files +[*.cs] + +#### Core EditorConfig Options #### + +# Indentation and spacing +indent_size = 4 +indent_style = space +tab_width = 4 + +# New line preferences +end_of_line = crlf +insert_final_newline = false + +#### .NET Code Actions #### + +# Type members +dotnet_hide_advanced_members = false +dotnet_member_insertion_location = with_other_members_of_the_same_kind +dotnet_property_generation_behavior = prefer_throwing_properties + +# Symbol search +dotnet_search_reference_assemblies = true + +#### .NET Coding Conventions #### + +# Organize usings +dotnet_separate_import_directive_groups = false +dotnet_sort_system_directives_first = false +file_header_template = unset + +# this. and Me. preferences +dotnet_style_qualification_for_event = false +dotnet_style_qualification_for_field = false +dotnet_style_qualification_for_method = false +dotnet_style_qualification_for_property = false + +# Language keywords vs BCL types preferences +dotnet_style_predefined_type_for_locals_parameters_members = true +dotnet_style_predefined_type_for_member_access = true + +# Parentheses preferences +dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity +dotnet_style_parentheses_in_other_binary_operators = always_for_clarity +dotnet_style_parentheses_in_other_operators = never_if_unnecessary +dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity + +# Modifier preferences +dotnet_style_require_accessibility_modifiers = for_non_interface_members + +# Expression-level preferences +dotnet_prefer_system_hash_code = true +dotnet_style_coalesce_expression = true +dotnet_style_collection_initializer = true +dotnet_style_explicit_tuple_names = true +dotnet_style_namespace_match_folder = true +dotnet_style_null_propagation = true +dotnet_style_object_initializer = true +dotnet_style_operator_placement_when_wrapping = beginning_of_line +dotnet_style_prefer_auto_properties = true +dotnet_style_prefer_collection_expression = when_types_loosely_match +dotnet_style_prefer_compound_assignment = true +dotnet_style_prefer_conditional_expression_over_assignment = true +dotnet_style_prefer_conditional_expression_over_return = true +dotnet_style_prefer_foreach_explicit_cast_in_source = when_strongly_typed +dotnet_style_prefer_inferred_anonymous_type_member_names = true +dotnet_style_prefer_inferred_tuple_names = true +dotnet_style_prefer_is_null_check_over_reference_equality_method = true +dotnet_style_prefer_simplified_boolean_expressions = true +dotnet_style_prefer_simplified_interpolation = true + +# Field preferences +dotnet_style_readonly_field = true + +# Parameter preferences +dotnet_code_quality_unused_parameters = all + +# Suppression preferences +dotnet_remove_unnecessary_suppression_exclusions = none + +# New line preferences +dotnet_style_allow_multiple_blank_lines_experimental = true +dotnet_style_allow_statement_immediately_after_block_experimental = true + +#### C# Coding Conventions #### + +# var preferences +csharp_style_var_elsewhere = false +csharp_style_var_for_built_in_types = false +csharp_style_var_when_type_is_apparent = false + +# Expression-bodied members +csharp_style_expression_bodied_accessors = true +csharp_style_expression_bodied_constructors = false +csharp_style_expression_bodied_indexers = true +csharp_style_expression_bodied_lambdas = true +csharp_style_expression_bodied_local_functions = false +csharp_style_expression_bodied_methods = false +csharp_style_expression_bodied_operators = false +csharp_style_expression_bodied_properties = true + +# Pattern matching preferences +csharp_style_pattern_matching_over_as_with_null_check = true +csharp_style_pattern_matching_over_is_with_cast_check = true +csharp_style_prefer_extended_property_pattern = true +csharp_style_prefer_not_pattern = true +csharp_style_prefer_pattern_matching = true +csharp_style_prefer_switch_expression = true + +# Null-checking preferences +csharp_style_conditional_delegate_call = true + +# Modifier preferences +csharp_prefer_static_anonymous_function = true +csharp_prefer_static_local_function = true +csharp_preferred_modifier_order = public,private,protected,internal,file,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,required,volatile,async +csharp_style_prefer_readonly_struct = true +csharp_style_prefer_readonly_struct_member = true + +# Code-block preferences +csharp_prefer_braces = true +csharp_prefer_simple_using_statement = true +csharp_prefer_system_threading_lock = true +csharp_style_namespace_declarations = block_scoped +csharp_style_prefer_method_group_conversion = true +csharp_style_prefer_primary_constructors = true +csharp_style_prefer_simple_property_accessors = true +csharp_style_prefer_top_level_statements = true + +# Expression-level preferences +csharp_prefer_simple_default_expression = true +csharp_style_deconstructed_variable_declaration = true +csharp_style_implicit_object_creation_when_type_is_apparent = true +csharp_style_inlined_variable_declaration = true +csharp_style_prefer_implicitly_typed_lambda_expression = true +csharp_style_prefer_index_operator = true +csharp_style_prefer_local_over_anonymous_function = true +csharp_style_prefer_null_check_over_type_check = true +csharp_style_prefer_range_operator = true +csharp_style_prefer_tuple_swap = true +csharp_style_prefer_unbound_generic_type_in_nameof = true +csharp_style_prefer_utf8_string_literals = true +csharp_style_throw_expression = true +csharp_style_unused_value_assignment_preference = discard_variable +csharp_style_unused_value_expression_statement_preference = discard_variable + +# 'using' directive preferences +csharp_using_directive_placement = outside_namespace + +# New line preferences +csharp_style_allow_blank_line_after_colon_in_constructor_initializer_experimental = true +csharp_style_allow_blank_line_after_token_in_arrow_expression_clause_experimental = true +csharp_style_allow_blank_line_after_token_in_conditional_expression_experimental = true +csharp_style_allow_blank_lines_between_consecutive_braces_experimental = true +csharp_style_allow_embedded_statements_on_same_line_experimental = true + +#### C# Formatting Rules #### + +# New line preferences +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 + +# Indentation preferences +csharp_indent_block_contents = true +csharp_indent_braces = false +csharp_indent_case_contents = true +csharp_indent_case_contents_when_block = true +csharp_indent_labels = one_less_than_current +csharp_indent_switch_labels = true + +# Space preferences +csharp_space_after_cast = false +csharp_space_after_colon_in_inheritance_clause = true +csharp_space_after_comma = true +csharp_space_after_dot = false +csharp_space_after_keywords_in_control_flow_statements = true +csharp_space_after_semicolon_in_for_statement = true +csharp_space_around_binary_operators = before_and_after +csharp_space_around_declaration_statements = false +csharp_space_before_colon_in_inheritance_clause = true +csharp_space_before_comma = false +csharp_space_before_dot = false +csharp_space_before_open_square_brackets = false +csharp_space_before_semicolon_in_for_statement = false +csharp_space_between_empty_square_brackets = false +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_name_and_open_parenthesis = false +csharp_space_between_method_declaration_parameter_list_parentheses = false +csharp_space_between_parentheses = false +csharp_space_between_square_brackets = false + +# Wrapping preferences +csharp_preserve_single_line_blocks = true +csharp_preserve_single_line_statements = true + +#### 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.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.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 diff --git a/.vs/ProjectEvaluation/textsort.metadata.v10.bin b/.vs/ProjectEvaluation/textsort.metadata.v10.bin new file mode 100644 index 0000000..0368c31 Binary files /dev/null and b/.vs/ProjectEvaluation/textsort.metadata.v10.bin differ diff --git a/.vs/ProjectEvaluation/textsort.projects.v10.bin b/.vs/ProjectEvaluation/textsort.projects.v10.bin new file mode 100644 index 0000000..2149e48 Binary files /dev/null and b/.vs/ProjectEvaluation/textsort.projects.v10.bin differ diff --git a/.vs/ProjectEvaluation/textsort.strings.v10.bin b/.vs/ProjectEvaluation/textsort.strings.v10.bin new file mode 100644 index 0000000..ab24b58 Binary files /dev/null and b/.vs/ProjectEvaluation/textsort.strings.v10.bin differ diff --git a/.vs/TextSort.slnx/DesignTimeBuild/.dtbcache.v2 b/.vs/TextSort.slnx/DesignTimeBuild/.dtbcache.v2 new file mode 100644 index 0000000..34f556f Binary files /dev/null and b/.vs/TextSort.slnx/DesignTimeBuild/.dtbcache.v2 differ diff --git a/.vs/TextSort.slnx/FileContentIndex/84f94d47-d046-43d4-a17a-c87c9e4216c7.vsidx b/.vs/TextSort.slnx/FileContentIndex/84f94d47-d046-43d4-a17a-c87c9e4216c7.vsidx new file mode 100644 index 0000000..7686213 Binary files /dev/null and b/.vs/TextSort.slnx/FileContentIndex/84f94d47-d046-43d4-a17a-c87c9e4216c7.vsidx differ diff --git a/.vs/TextSort.slnx/FileContentIndex/f96036cc-3a0a-4b08-8624-e90459534be2.vsidx b/.vs/TextSort.slnx/FileContentIndex/f96036cc-3a0a-4b08-8624-e90459534be2.vsidx new file mode 100644 index 0000000..763fa3c Binary files /dev/null and b/.vs/TextSort.slnx/FileContentIndex/f96036cc-3a0a-4b08-8624-e90459534be2.vsidx differ diff --git a/.vs/TextSort.slnx/v18/.futdcache.v2 b/.vs/TextSort.slnx/v18/.futdcache.v2 new file mode 100644 index 0000000..06c4bb2 Binary files /dev/null and b/.vs/TextSort.slnx/v18/.futdcache.v2 differ diff --git a/.vs/TextSort.slnx/v18/.suo b/.vs/TextSort.slnx/v18/.suo new file mode 100644 index 0000000..2045aa8 Binary files /dev/null and b/.vs/TextSort.slnx/v18/.suo differ diff --git a/.vs/TextSort.slnx/v18/DocumentLayout.backup.json b/.vs/TextSort.slnx/v18/DocumentLayout.backup.json new file mode 100644 index 0000000..155ae6a --- /dev/null +++ b/.vs/TextSort.slnx/v18/DocumentLayout.backup.json @@ -0,0 +1,58 @@ +{ + "Version": 1, + "WorkspaceRootPath": "C:\\Users\\Jesus\\source\\repos\\TextSort\\", + "Documents": [ + { + "AbsoluteMoniker": "D:0:0:{90332A04-01A5-8746-98B8-0D7906A438B4}|TextSort\\TextSortWindow.csproj|c:\\users\\jesus\\source\\repos\\textsort\\textsort\\program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "RelativeMoniker": "D:0:0:{90332A04-01A5-8746-98B8-0D7906A438B4}|TextSort\\TextSortWindow.csproj|solutionrelative:textsort\\program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" + }, + { + "AbsoluteMoniker": "D:0:0:{90332A04-01A5-8746-98B8-0D7906A438B4}|TextSort\\TextSortWindow.csproj|c:\\users\\jesus\\source\\repos\\textsort\\textsort\\window.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "RelativeMoniker": "D:0:0:{90332A04-01A5-8746-98B8-0D7906A438B4}|TextSort\\TextSortWindow.csproj|solutionrelative:textsort\\window.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" + } + ], + "DocumentGroupContainers": [ + { + "Orientation": 0, + "VerticalTabListWidth": 256, + "DocumentGroups": [ + { + "DockedWidth": 200, + "SelectedChildIndex": 1, + "Children": [ + { + "$type": "Bookmark", + "Name": "ST:0:0:{40ea2e6b-2121-4bb8-a43e-c83c04b51041}" + }, + { + "$type": "Document", + "DocumentIndex": 0, + "Title": "Program.cs", + "DocumentMoniker": "C:\\Users\\Jesus\\source\\repos\\TextSort\\TextSort\\Program.cs", + "RelativeDocumentMoniker": "TextSort\\Program.cs", + "ToolTip": "C:\\Users\\Jesus\\source\\repos\\TextSort\\TextSort\\Program.cs", + "RelativeToolTip": "TextSort\\Program.cs", + "ViewState": "AgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", + "WhenOpened": "2026-01-07T12:29:16.155Z", + "EditorCaption": "" + }, + { + "$type": "Document", + "DocumentIndex": 1, + "Title": "Window.cs", + "DocumentMoniker": "C:\\Users\\Jesus\\source\\repos\\TextSort\\TextSort\\Window.cs", + "RelativeDocumentMoniker": "TextSort\\Window.cs", + "ToolTip": "C:\\Users\\Jesus\\source\\repos\\TextSort\\TextSort\\Window.cs", + "RelativeToolTip": "TextSort\\Window.cs", + "ViewState": "AgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", + "WhenOpened": "2026-01-07T12:29:13.283Z", + "EditorCaption": "" + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/.vs/TextSort.slnx/v18/DocumentLayout.json b/.vs/TextSort.slnx/v18/DocumentLayout.json new file mode 100644 index 0000000..155ae6a --- /dev/null +++ b/.vs/TextSort.slnx/v18/DocumentLayout.json @@ -0,0 +1,58 @@ +{ + "Version": 1, + "WorkspaceRootPath": "C:\\Users\\Jesus\\source\\repos\\TextSort\\", + "Documents": [ + { + "AbsoluteMoniker": "D:0:0:{90332A04-01A5-8746-98B8-0D7906A438B4}|TextSort\\TextSortWindow.csproj|c:\\users\\jesus\\source\\repos\\textsort\\textsort\\program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "RelativeMoniker": "D:0:0:{90332A04-01A5-8746-98B8-0D7906A438B4}|TextSort\\TextSortWindow.csproj|solutionrelative:textsort\\program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" + }, + { + "AbsoluteMoniker": "D:0:0:{90332A04-01A5-8746-98B8-0D7906A438B4}|TextSort\\TextSortWindow.csproj|c:\\users\\jesus\\source\\repos\\textsort\\textsort\\window.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "RelativeMoniker": "D:0:0:{90332A04-01A5-8746-98B8-0D7906A438B4}|TextSort\\TextSortWindow.csproj|solutionrelative:textsort\\window.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" + } + ], + "DocumentGroupContainers": [ + { + "Orientation": 0, + "VerticalTabListWidth": 256, + "DocumentGroups": [ + { + "DockedWidth": 200, + "SelectedChildIndex": 1, + "Children": [ + { + "$type": "Bookmark", + "Name": "ST:0:0:{40ea2e6b-2121-4bb8-a43e-c83c04b51041}" + }, + { + "$type": "Document", + "DocumentIndex": 0, + "Title": "Program.cs", + "DocumentMoniker": "C:\\Users\\Jesus\\source\\repos\\TextSort\\TextSort\\Program.cs", + "RelativeDocumentMoniker": "TextSort\\Program.cs", + "ToolTip": "C:\\Users\\Jesus\\source\\repos\\TextSort\\TextSort\\Program.cs", + "RelativeToolTip": "TextSort\\Program.cs", + "ViewState": "AgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", + "WhenOpened": "2026-01-07T12:29:16.155Z", + "EditorCaption": "" + }, + { + "$type": "Document", + "DocumentIndex": 1, + "Title": "Window.cs", + "DocumentMoniker": "C:\\Users\\Jesus\\source\\repos\\TextSort\\TextSort\\Window.cs", + "RelativeDocumentMoniker": "TextSort\\Window.cs", + "ToolTip": "C:\\Users\\Jesus\\source\\repos\\TextSort\\TextSort\\Window.cs", + "RelativeToolTip": "TextSort\\Window.cs", + "ViewState": "AgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", + "WhenOpened": "2026-01-07T12:29:13.283Z", + "EditorCaption": "" + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/January 2026 JoeseiJesusCastro.zip b/January 2026 JoeseiJesusCastro.zip new file mode 100644 index 0000000..8f942ee Binary files /dev/null and b/January 2026 JoeseiJesusCastro.zip differ diff --git a/Sorting/ISortingService.cs b/Sorting/ISortingService.cs new file mode 100644 index 0000000..a9c7077 --- /dev/null +++ b/Sorting/ISortingService.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace SortingModel +{ + public interface ISortingService + { + string SortText(string inputText, string strategy); + IEnumerable GetAvailableAlgorithmNames(); + } +} diff --git a/Sorting/SortingAlgorithmType.cs b/Sorting/SortingAlgorithmType.cs new file mode 100644 index 0000000..02f11fc --- /dev/null +++ b/Sorting/SortingAlgorithmType.cs @@ -0,0 +1,9 @@ +namespace SortingModel +{ + public enum SortingAlgorithmType + { + BubbleSort, + MergeSort, + QuickSort + } +} diff --git a/Sorting/SortingAlgorithms/BubbleSortAlgorithm.cs b/Sorting/SortingAlgorithms/BubbleSortAlgorithm.cs new file mode 100644 index 0000000..3636795 --- /dev/null +++ b/Sorting/SortingAlgorithms/BubbleSortAlgorithm.cs @@ -0,0 +1,33 @@ +using SortingModel.SortingAlgorithms.Interfaces; + +namespace SortingModel.SortingAlgorithms +{ + public class BubbleSortAlgorithm : ISortingAlgorithm + { + public string Sort(string input) + { + if (string.IsNullOrEmpty(input)) + return input; + + char[] chars = input.ToCharArray(); + int inputLength = chars.Length; + + // Bubble sort algorithm + for (int i = 0; i < inputLength - 1; i++) + { + for (int j = 0; j < inputLength - i - 1; j++) + { + if (chars[j] > chars[j + 1]) + { + // Swap + char temp = chars[j]; + chars[j] = chars[j + 1]; + chars[j + 1] = temp; + } + } + } + + return new string(chars); + } + } +} diff --git a/Sorting/SortingAlgorithms/Interfaces/ISortingAlgorithm.cs b/Sorting/SortingAlgorithms/Interfaces/ISortingAlgorithm.cs new file mode 100644 index 0000000..f21b268 --- /dev/null +++ b/Sorting/SortingAlgorithms/Interfaces/ISortingAlgorithm.cs @@ -0,0 +1,7 @@ +namespace SortingModel.SortingAlgorithms.Interfaces +{ + public interface ISortingAlgorithm + { + string Sort(string input); + } +} diff --git a/Sorting/SortingAlgorithms/Interfaces/ISortingAlgorithmFactory.cs b/Sorting/SortingAlgorithms/Interfaces/ISortingAlgorithmFactory.cs new file mode 100644 index 0000000..cbfc81f --- /dev/null +++ b/Sorting/SortingAlgorithms/Interfaces/ISortingAlgorithmFactory.cs @@ -0,0 +1,8 @@ +namespace SortingModel.SortingAlgorithms.Interfaces +{ + public interface ISortingAlgorithmFactory + { + ISortingAlgorithm Create(string strategy); + IEnumerable GetAvailableAlgorithmNames(); + } +} diff --git a/Sorting/SortingAlgorithms/MergeSortAlgorithm.cs b/Sorting/SortingAlgorithms/MergeSortAlgorithm.cs new file mode 100644 index 0000000..a0ea068 --- /dev/null +++ b/Sorting/SortingAlgorithms/MergeSortAlgorithm.cs @@ -0,0 +1,63 @@ +using SortingModel.SortingAlgorithms.Interfaces; + +namespace SortingModel.SortingAlgorithms +{ + public class MergeSortAlgorithm : ISortingAlgorithm + { + public string Sort(string input) + { + if (string.IsNullOrEmpty(input)) + return input; + + char[] chars = input.ToCharArray(); + MergeSort(chars, 0, chars.Length - 1); + return new string(chars); + } + + private static void MergeSort(char[] chars, int left, int right) + { + if (left < right) + { + int mid = left + (right - left) / 2; + MergeSort(chars, left, mid); + MergeSort(chars, mid + 1, right); + Merge(chars, left, mid, right); + } + } + + private static void Merge(char[] chars, int left, int mid, int right) + { + char[] temp = new char[right - left + 1]; + int i = left; + int j = mid + 1; + int k = 0; + + while (i <= mid && j <= right) + { + if (chars[i] <= chars[j]) + { + temp[k++] = chars[i++]; + } + else + { + temp[k++] = chars[j++]; + } + } + + while (i <= mid) + { + temp[k++] = chars[i++]; + } + + while (j <= right) + { + temp[k++] = chars[j++]; + } + + for (int idx = 0; idx < temp.Length; idx++) + { + chars[left + idx] = temp[idx]; + } + } + } +} diff --git a/Sorting/SortingAlgorithms/QuickSortAlgorithm.cs b/Sorting/SortingAlgorithms/QuickSortAlgorithm.cs new file mode 100644 index 0000000..a5e2e0d --- /dev/null +++ b/Sorting/SortingAlgorithms/QuickSortAlgorithm.cs @@ -0,0 +1,51 @@ +using SortingModel.SortingAlgorithms.Interfaces; + +namespace SortingModel.SortingAlgorithms +{ + public class QuickSortAlgorithm : ISortingAlgorithm + { + public string Sort(string input) + { + if (string.IsNullOrEmpty(input)) + return input; + + char[] chars = input.ToCharArray(); + QuickSort(chars, 0, chars.Length - 1); + return new string(chars); + } + + private void QuickSort(char[] chars, int left, int right) + { + if (left < right) + { + int pivotIndex = Partition(chars, left, right); + QuickSort(chars, left, pivotIndex - 1); + QuickSort(chars, pivotIndex + 1, right); + } + } + + private int Partition(char[] chars, int left, int right) + { + char pivot = chars[right]; + int i = left - 1; + + for (int j = left; j < right; j++) + { + if (chars[j] < pivot) + { + i++; + char temp = chars[i]; + chars[i] = chars[j]; + chars[j] = temp; + } + } + + // Swap pivot + char pivotTemp = chars[i + 1]; + chars[i + 1] = chars[right]; + chars[right] = pivotTemp; + + return i + 1; + } + } +} diff --git a/Sorting/SortingAlgorithms/SortingAlgorithmFactory.cs b/Sorting/SortingAlgorithms/SortingAlgorithmFactory.cs new file mode 100644 index 0000000..6fcffca --- /dev/null +++ b/Sorting/SortingAlgorithms/SortingAlgorithmFactory.cs @@ -0,0 +1,36 @@ +using SortingModel.SortingAlgorithms.Interfaces; + +namespace SortingModel.SortingAlgorithms +{ + public class SortingAlgorithmFactory : ISortingAlgorithmFactory + { + private static readonly IReadOnlyDictionary NameToTypeMap + = new Dictionary + { + { "Bubble Sort", SortingAlgorithmType.BubbleSort }, + { "Merge Sort", SortingAlgorithmType.MergeSort }, + { "Quick Sort", SortingAlgorithmType.QuickSort } + }; + + private static readonly Dictionary> TypeToAlgorithmMap + = new Dictionary> + { + { SortingAlgorithmType.BubbleSort, () => new BubbleSortAlgorithm() }, + { SortingAlgorithmType.MergeSort, () => new MergeSortAlgorithm() }, + { SortingAlgorithmType.QuickSort, () => new QuickSortAlgorithm() } + }; + + public ISortingAlgorithm Create(string strategy) + { + if(NameToTypeMap.TryGetValue(strategy, out SortingAlgorithmType algorithmType)) { + if(TypeToAlgorithmMap.TryGetValue(algorithmType, out var algorithm)) { + return algorithm(); + } + } + + return TypeToAlgorithmMap[SortingAlgorithmType.BubbleSort](); + } + + public IEnumerable GetAvailableAlgorithmNames() => NameToTypeMap.Keys; + } +} diff --git a/Sorting/SortingModel.csproj b/Sorting/SortingModel.csproj new file mode 100644 index 0000000..b4c0802 --- /dev/null +++ b/Sorting/SortingModel.csproj @@ -0,0 +1,13 @@ + + + + net10.0 + enable + enable + + All + true + latest + + + diff --git a/Sorting/SortingService.cs b/Sorting/SortingService.cs new file mode 100644 index 0000000..b1a414c --- /dev/null +++ b/Sorting/SortingService.cs @@ -0,0 +1,20 @@ +using SortingModel.SortingAlgorithms; +using SortingModel.SortingAlgorithms.Interfaces; + +namespace SortingModel +{ + public class SortingService : ISortingService + { + private readonly ISortingAlgorithmFactory _factory; + + public SortingService(ISortingAlgorithmFactory? factory = null) => this._factory = factory ?? new SortingAlgorithmFactory(); + + public IEnumerable GetAvailableAlgorithmNames() => this._factory.GetAvailableAlgorithmNames(); + + public string SortText(string inputText, string strategy) + { + ISortingAlgorithm algorithm = this._factory.Create(strategy); + return algorithm.Sort(inputText); + } + } +} diff --git a/Sorting/bin/Debug/net10.0/SortingModel.deps.json b/Sorting/bin/Debug/net10.0/SortingModel.deps.json new file mode 100644 index 0000000..768bc99 --- /dev/null +++ b/Sorting/bin/Debug/net10.0/SortingModel.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "SortingModel/1.0.0": { + "runtime": { + "SortingModel.dll": {} + } + } + } + }, + "libraries": { + "SortingModel/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/Sorting/bin/Debug/net10.0/SortingModel.dll b/Sorting/bin/Debug/net10.0/SortingModel.dll new file mode 100644 index 0000000..77caa00 Binary files /dev/null and b/Sorting/bin/Debug/net10.0/SortingModel.dll differ diff --git a/Sorting/bin/Debug/net10.0/SortingModel.pdb b/Sorting/bin/Debug/net10.0/SortingModel.pdb new file mode 100644 index 0000000..c3aa777 Binary files /dev/null and b/Sorting/bin/Debug/net10.0/SortingModel.pdb differ diff --git a/Sorting/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/Sorting/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/Sorting/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/Sorting/obj/Debug/net10.0/SortingModel.AssemblyInfo.cs b/Sorting/obj/Debug/net10.0/SortingModel.AssemblyInfo.cs new file mode 100644 index 0000000..3394b82 --- /dev/null +++ b/Sorting/obj/Debug/net10.0/SortingModel.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("SortingModel")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("SortingModel")] +[assembly: System.Reflection.AssemblyTitleAttribute("SortingModel")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Sorting/obj/Debug/net10.0/SortingModel.AssemblyInfoInputs.cache b/Sorting/obj/Debug/net10.0/SortingModel.AssemblyInfoInputs.cache new file mode 100644 index 0000000..d2ab6e7 --- /dev/null +++ b/Sorting/obj/Debug/net10.0/SortingModel.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +dc652377e9438ba2e74a772c54f8e01379c26b15c16d0543bd69c0aab4644e96 diff --git a/Sorting/obj/Debug/net10.0/SortingModel.GeneratedMSBuildEditorConfig.editorconfig b/Sorting/obj/Debug/net10.0/SortingModel.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..3163e50 --- /dev/null +++ b/Sorting/obj/Debug/net10.0/SortingModel.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,17 @@ +is_global = true +build_property.TargetFramework = net10.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = SortingModel +build_property.ProjectDir = C:\Users\Jesus\source\repos\TextSort\Sorting\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = diff --git a/Sorting/obj/Debug/net10.0/SortingModel.GlobalUsings.g.cs b/Sorting/obj/Debug/net10.0/SortingModel.GlobalUsings.g.cs new file mode 100644 index 0000000..d12bcbc --- /dev/null +++ b/Sorting/obj/Debug/net10.0/SortingModel.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/Sorting/obj/Debug/net10.0/SortingModel.assets.cache b/Sorting/obj/Debug/net10.0/SortingModel.assets.cache new file mode 100644 index 0000000..94a7909 Binary files /dev/null and b/Sorting/obj/Debug/net10.0/SortingModel.assets.cache differ diff --git a/Sorting/obj/Debug/net10.0/SortingModel.csproj.BuildWithSkipAnalyzers b/Sorting/obj/Debug/net10.0/SortingModel.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/Sorting/obj/Debug/net10.0/SortingModel.csproj.CoreCompileInputs.cache b/Sorting/obj/Debug/net10.0/SortingModel.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..0165d81 --- /dev/null +++ b/Sorting/obj/Debug/net10.0/SortingModel.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +46dd51be68309ad0e37641a69cfab40644911a151f01f86185e3640f7bad1de9 diff --git a/Sorting/obj/Debug/net10.0/SortingModel.csproj.FileListAbsolute.txt b/Sorting/obj/Debug/net10.0/SortingModel.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..127c228 --- /dev/null +++ b/Sorting/obj/Debug/net10.0/SortingModel.csproj.FileListAbsolute.txt @@ -0,0 +1,11 @@ +C:\Users\Jesus\source\repos\TextSort\Sorting\bin\Debug\net10.0\SortingModel.deps.json +C:\Users\Jesus\source\repos\TextSort\Sorting\bin\Debug\net10.0\SortingModel.dll +C:\Users\Jesus\source\repos\TextSort\Sorting\bin\Debug\net10.0\SortingModel.pdb +C:\Users\Jesus\source\repos\TextSort\Sorting\obj\Debug\net10.0\SortingModel.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\Jesus\source\repos\TextSort\Sorting\obj\Debug\net10.0\SortingModel.AssemblyInfoInputs.cache +C:\Users\Jesus\source\repos\TextSort\Sorting\obj\Debug\net10.0\SortingModel.AssemblyInfo.cs +C:\Users\Jesus\source\repos\TextSort\Sorting\obj\Debug\net10.0\SortingModel.csproj.CoreCompileInputs.cache +C:\Users\Jesus\source\repos\TextSort\Sorting\obj\Debug\net10.0\SortingModel.dll +C:\Users\Jesus\source\repos\TextSort\Sorting\obj\Debug\net10.0\refint\SortingModel.dll +C:\Users\Jesus\source\repos\TextSort\Sorting\obj\Debug\net10.0\SortingModel.pdb +C:\Users\Jesus\source\repos\TextSort\Sorting\obj\Debug\net10.0\ref\SortingModel.dll diff --git a/Sorting/obj/Debug/net10.0/SortingModel.dll b/Sorting/obj/Debug/net10.0/SortingModel.dll new file mode 100644 index 0000000..77caa00 Binary files /dev/null and b/Sorting/obj/Debug/net10.0/SortingModel.dll differ diff --git a/Sorting/obj/Debug/net10.0/SortingModel.pdb b/Sorting/obj/Debug/net10.0/SortingModel.pdb new file mode 100644 index 0000000..c3aa777 Binary files /dev/null and b/Sorting/obj/Debug/net10.0/SortingModel.pdb differ diff --git a/Sorting/obj/Debug/net10.0/ref/SortingModel.dll b/Sorting/obj/Debug/net10.0/ref/SortingModel.dll new file mode 100644 index 0000000..2c69611 Binary files /dev/null and b/Sorting/obj/Debug/net10.0/ref/SortingModel.dll differ diff --git a/Sorting/obj/Debug/net10.0/refint/SortingModel.dll b/Sorting/obj/Debug/net10.0/refint/SortingModel.dll new file mode 100644 index 0000000..2c69611 Binary files /dev/null and b/Sorting/obj/Debug/net10.0/refint/SortingModel.dll differ diff --git a/Sorting/obj/SortingModel.csproj.nuget.dgspec.json b/Sorting/obj/SortingModel.csproj.nuget.dgspec.json new file mode 100644 index 0000000..da4266f --- /dev/null +++ b/Sorting/obj/SortingModel.csproj.nuget.dgspec.json @@ -0,0 +1,347 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\Jesus\\source\\repos\\TextSort\\Sorting\\SortingModel.csproj": {} + }, + "projects": { + "C:\\Users\\Jesus\\source\\repos\\TextSort\\Sorting\\SortingModel.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Jesus\\source\\repos\\TextSort\\Sorting\\SortingModel.csproj", + "projectName": "SortingModel", + "projectPath": "C:\\Users\\Jesus\\source\\repos\\TextSort\\Sorting\\SortingModel.csproj", + "packagesPath": "C:\\Users\\Jesus\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Jesus\\source\\repos\\TextSort\\Sorting\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Jesus\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.101/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } + } +} \ No newline at end of file diff --git a/Sorting/obj/SortingModel.csproj.nuget.g.props b/Sorting/obj/SortingModel.csproj.nuget.g.props new file mode 100644 index 0000000..34ff358 --- /dev/null +++ b/Sorting/obj/SortingModel.csproj.nuget.g.props @@ -0,0 +1,16 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Jesus\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 7.0.0 + + + + + + \ No newline at end of file diff --git a/Sorting/obj/SortingModel.csproj.nuget.g.targets b/Sorting/obj/SortingModel.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/Sorting/obj/SortingModel.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/Sorting/obj/project.assets.json b/Sorting/obj/project.assets.json new file mode 100644 index 0000000..cf4f0ef --- /dev/null +++ b/Sorting/obj/project.assets.json @@ -0,0 +1,353 @@ +{ + "version": 3, + "targets": { + "net10.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net10.0": [] + }, + "packageFolders": { + "C:\\Users\\Jesus\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Jesus\\source\\repos\\TextSort\\Sorting\\SortingModel.csproj", + "projectName": "SortingModel", + "projectPath": "C:\\Users\\Jesus\\source\\repos\\TextSort\\Sorting\\SortingModel.csproj", + "packagesPath": "C:\\Users\\Jesus\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Jesus\\source\\repos\\TextSort\\Sorting\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Jesus\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.101/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } +} \ No newline at end of file diff --git a/Sorting/obj/project.nuget.cache b/Sorting/obj/project.nuget.cache new file mode 100644 index 0000000..a116d0f --- /dev/null +++ b/Sorting/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "pJiHe3Ct/Ps=", + "success": true, + "projectFilePath": "C:\\Users\\Jesus\\source\\repos\\TextSort\\Sorting\\SortingModel.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file diff --git a/Testing/MSTestSettings.cs b/Testing/MSTestSettings.cs new file mode 100644 index 0000000..aaf278c --- /dev/null +++ b/Testing/MSTestSettings.cs @@ -0,0 +1 @@ +[assembly: Parallelize(Scope = ExecutionScope.MethodLevel)] diff --git a/Testing/SortingTestBase.cs b/Testing/SortingTestBase.cs new file mode 100644 index 0000000..e84a6d0 --- /dev/null +++ b/Testing/SortingTestBase.cs @@ -0,0 +1,27 @@ +using SortingModel.SortingAlgorithms.Interfaces; +using System; +using System.Collections.Generic; +using System.Text; + +namespace Testing +{ + public abstract class SortingTestBase + { + protected abstract ISortingAlgorithm CreateAlgorithm(); + + [TestMethod] + [DataRow("befdac", "abcdef")] + [DataRow("fedba", "abdef")] + [DataRow("aabbcc", "aabbcc")] + [DataRow("BaDc", "BDac")] + [DataRow("", "")] + [DataRow("z", "z")] + public void Sort(string input, string expected) + { + ISortingAlgorithm algorithm = CreateAlgorithm(); + string result = algorithm.Sort(input); + Assert.AreEqual(expected, result, $"{algorithm.GetType().Name} Failed"); + } + + } +} diff --git a/Testing/Test1.cs b/Testing/Test1.cs new file mode 100644 index 0000000..f8a5afd --- /dev/null +++ b/Testing/Test1.cs @@ -0,0 +1,23 @@ +using SortingModel.SortingAlgorithms; +using SortingModel.SortingAlgorithms.Interfaces; + +namespace Testing +{ + [TestClass] + public sealed class BubbleSortTest : SortingTestBase + { + protected override ISortingAlgorithm CreateAlgorithm() => new BubbleSortAlgorithm(); + } + + [TestClass] + public sealed class QuickSortTest : SortingTestBase + { + protected override ISortingAlgorithm CreateAlgorithm() => new QuickSortAlgorithm(); + } + + [TestClass] + public sealed class MergeSortTest : SortingTestBase + { + protected override ISortingAlgorithm CreateAlgorithm() => new MergeSortAlgorithm(); + } +} diff --git a/Testing/Testing.csproj b/Testing/Testing.csproj new file mode 100644 index 0000000..1ef161f --- /dev/null +++ b/Testing/Testing.csproj @@ -0,0 +1,26 @@ + + + + net10.0 + latest + enable + enable + + All + true + latest + + + + + + + + + + + + + + + diff --git a/Testing/bin/Debug/net10.0/.msCoverageExtensionSourceRootsMapping_Testing b/Testing/bin/Debug/net10.0/.msCoverageExtensionSourceRootsMapping_Testing new file mode 100644 index 0000000..1d221d7 Binary files /dev/null and b/Testing/bin/Debug/net10.0/.msCoverageExtensionSourceRootsMapping_Testing differ diff --git a/Testing/bin/Debug/net10.0/.msCoverageSourceRootsMapping_Testing b/Testing/bin/Debug/net10.0/.msCoverageSourceRootsMapping_Testing new file mode 100644 index 0000000..1d221d7 Binary files /dev/null and b/Testing/bin/Debug/net10.0/.msCoverageSourceRootsMapping_Testing differ diff --git a/Testing/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/Testing/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/Testing/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/Testing/obj/Debug/net10.0/Testing.AssemblyInfo.cs b/Testing/obj/Debug/net10.0/Testing.AssemblyInfo.cs new file mode 100644 index 0000000..7a1e384 --- /dev/null +++ b/Testing/obj/Debug/net10.0/Testing.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Testing")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Testing")] +[assembly: System.Reflection.AssemblyTitleAttribute("Testing")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Testing/obj/Debug/net10.0/Testing.AssemblyInfoInputs.cache b/Testing/obj/Debug/net10.0/Testing.AssemblyInfoInputs.cache new file mode 100644 index 0000000..1e75402 --- /dev/null +++ b/Testing/obj/Debug/net10.0/Testing.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +26d4153ad0caef2bedf4030767439e5dab5268634d1a578ec52e5b56e2fca6c9 diff --git a/Testing/obj/Debug/net10.0/Testing.GeneratedMSBuildEditorConfig.editorconfig b/Testing/obj/Debug/net10.0/Testing.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..82de7dd --- /dev/null +++ b/Testing/obj/Debug/net10.0/Testing.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,18 @@ +is_global = true +build_property.IsMSTestTestAdapterReferenced = true +build_property.TargetFramework = net10.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Testing +build_property.ProjectDir = C:\Users\Jesus\source\repos\TextSort\Testing\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = diff --git a/Testing/obj/Debug/net10.0/Testing.GlobalUsings.g.cs b/Testing/obj/Debug/net10.0/Testing.GlobalUsings.g.cs new file mode 100644 index 0000000..9ed75c3 --- /dev/null +++ b/Testing/obj/Debug/net10.0/Testing.GlobalUsings.g.cs @@ -0,0 +1,9 @@ +// +global using Microsoft.VisualStudio.TestTools.UnitTesting; +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/Testing/obj/Debug/net10.0/Testing.assets.cache b/Testing/obj/Debug/net10.0/Testing.assets.cache new file mode 100644 index 0000000..ae0533c Binary files /dev/null and b/Testing/obj/Debug/net10.0/Testing.assets.cache differ diff --git a/Testing/obj/Debug/net10.0/Testing.csproj.AssemblyReference.cache b/Testing/obj/Debug/net10.0/Testing.csproj.AssemblyReference.cache new file mode 100644 index 0000000..d2cff36 Binary files /dev/null and b/Testing/obj/Debug/net10.0/Testing.csproj.AssemblyReference.cache differ diff --git a/Testing/obj/Debug/net10.0/Testing.genautoregisteredextensionsinputcache.cache b/Testing/obj/Debug/net10.0/Testing.genautoregisteredextensionsinputcache.cache new file mode 100644 index 0000000..d63037e --- /dev/null +++ b/Testing/obj/Debug/net10.0/Testing.genautoregisteredextensionsinputcache.cache @@ -0,0 +1 @@ +068692d20ce8850eb05bbe0cad27179854d2fb8e79ce3911141750d3e679bc20 diff --git a/Testing/obj/Debug/net10.0/Testing.gentestingplatformentrypointinputcache.cache b/Testing/obj/Debug/net10.0/Testing.gentestingplatformentrypointinputcache.cache new file mode 100644 index 0000000..d63037e --- /dev/null +++ b/Testing/obj/Debug/net10.0/Testing.gentestingplatformentrypointinputcache.cache @@ -0,0 +1 @@ +068692d20ce8850eb05bbe0cad27179854d2fb8e79ce3911141750d3e679bc20 diff --git a/Testing/obj/Testing.csproj.nuget.dgspec.json b/Testing/obj/Testing.csproj.nuget.dgspec.json new file mode 100644 index 0000000..a6058b4 --- /dev/null +++ b/Testing/obj/Testing.csproj.nuget.dgspec.json @@ -0,0 +1,696 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\Jesus\\source\\repos\\TextSort\\Testing\\Testing.csproj": {} + }, + "projects": { + "C:\\Users\\Jesus\\source\\repos\\TextSort\\Sorting\\SortingModel.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Jesus\\source\\repos\\TextSort\\Sorting\\SortingModel.csproj", + "projectName": "SortingModel", + "projectPath": "C:\\Users\\Jesus\\source\\repos\\TextSort\\Sorting\\SortingModel.csproj", + "packagesPath": "C:\\Users\\Jesus\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Jesus\\source\\repos\\TextSort\\Sorting\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Jesus\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.101/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + }, + "C:\\Users\\Jesus\\source\\repos\\TextSort\\Testing\\Testing.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Jesus\\source\\repos\\TextSort\\Testing\\Testing.csproj", + "projectName": "Testing", + "projectPath": "C:\\Users\\Jesus\\source\\repos\\TextSort\\Testing\\Testing.csproj", + "packagesPath": "C:\\Users\\Jesus\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Jesus\\source\\repos\\TextSort\\Testing\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Jesus\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "C:\\Users\\Jesus\\source\\repos\\TextSort\\Sorting\\SortingModel.csproj": { + "projectPath": "C:\\Users\\Jesus\\source\\repos\\TextSort\\Sorting\\SortingModel.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "MSTest": { + "target": "Package", + "version": "[4.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.101/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } + } +} \ No newline at end of file diff --git a/Testing/obj/Testing.csproj.nuget.g.props b/Testing/obj/Testing.csproj.nuget.g.props new file mode 100644 index 0000000..8e79f08 --- /dev/null +++ b/Testing/obj/Testing.csproj.nuget.g.props @@ -0,0 +1,31 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Jesus\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 7.0.0 + + + + + + + + + + + + + + + + + + + C:\Users\Jesus\.nuget\packages\mstest.analyzers\4.0.1 + + \ No newline at end of file diff --git a/Testing/obj/Testing.csproj.nuget.g.targets b/Testing/obj/Testing.csproj.nuget.g.targets new file mode 100644 index 0000000..505dcef --- /dev/null +++ b/Testing/obj/Testing.csproj.nuget.g.targets @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Testing/obj/project.assets.json b/Testing/obj/project.assets.json new file mode 100644 index 0000000..7ece609 --- /dev/null +++ b/Testing/obj/project.assets.json @@ -0,0 +1,2646 @@ +{ + "version": 3, + "targets": { + "net10.0": { + "Microsoft.ApplicationInsights/2.23.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.CodeCoverage/18.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + }, + "runtime": { + "lib/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + }, + "build": { + "build/netstandard2.0/Microsoft.CodeCoverage.props": {}, + "build/netstandard2.0/Microsoft.CodeCoverage.targets": {} + } + }, + "Microsoft.DiaSymReader/2.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.DiaSymReader.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.DiaSymReader.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Extensions.DependencyModel/6.0.2": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + } + }, + "Microsoft.NET.Test.Sdk/18.0.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeCoverage": "18.0.0", + "Microsoft.TestPlatform.TestHost": "18.0.0" + }, + "compile": { + "lib/net8.0/_._": {} + }, + "runtime": { + "lib/net8.0/_._": {} + }, + "build": { + "build/net8.0/Microsoft.NET.Test.Sdk.props": {}, + "build/net8.0/Microsoft.NET.Test.Sdk.targets": {} + } + }, + "Microsoft.Testing.Extensions.CodeCoverage/18.1.0": { + "type": "package", + "dependencies": { + "Microsoft.DiaSymReader": "2.0.0", + "Microsoft.Extensions.DependencyModel": "6.0.2", + "Microsoft.Testing.Platform": "2.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.CodeCoverage.Core.dll": {}, + "lib/net8.0/Microsoft.CodeCoverage.Instrumentation.Core.dll": {}, + "lib/net8.0/Microsoft.CodeCoverage.Instrumentation.dll": {}, + "lib/net8.0/Microsoft.CodeCoverage.Interprocess.dll": {}, + "lib/net8.0/Microsoft.Testing.Extensions.CodeCoverage.dll": { + "related": ".pdb" + }, + "lib/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {}, + "lib/net8.0/Mono.Cecil.Mdb.dll": {}, + "lib/net8.0/Mono.Cecil.Pdb.dll": {}, + "lib/net8.0/Mono.Cecil.Rocks.dll": {}, + "lib/net8.0/Mono.Cecil.dll": {} + }, + "runtime": { + "lib/net8.0/Microsoft.CodeCoverage.Core.dll": {}, + "lib/net8.0/Microsoft.CodeCoverage.Instrumentation.Core.dll": {}, + "lib/net8.0/Microsoft.CodeCoverage.Instrumentation.dll": {}, + "lib/net8.0/Microsoft.CodeCoverage.Interprocess.dll": {}, + "lib/net8.0/Microsoft.Testing.Extensions.CodeCoverage.dll": { + "related": ".pdb" + }, + "lib/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {}, + "lib/net8.0/Mono.Cecil.Mdb.dll": {}, + "lib/net8.0/Mono.Cecil.Pdb.dll": {}, + "lib/net8.0/Mono.Cecil.Rocks.dll": {}, + "lib/net8.0/Mono.Cecil.dll": {} + }, + "resource": { + "lib/net8.0/cs/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/de/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/hu/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { + "locale": "hu" + }, + "lib/net8.0/it/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/nl/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { + "locale": "nl" + }, + "lib/net8.0/pl/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pt-BR/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/pt-PT/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { + "locale": "pt-PT" + }, + "lib/net8.0/ru/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/sv/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { + "locale": "sv" + }, + "lib/net8.0/tr/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/zh-Hans/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { + "locale": "zh-Hant" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Testing.Extensions.CodeCoverage.props": {}, + "buildTransitive/net8.0/Microsoft.Testing.Extensions.CodeCoverage.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.Testing.Extensions.CodeCoverage.props": {}, + "buildMultiTargeting/Microsoft.Testing.Extensions.CodeCoverage.targets": {} + }, + "runtimeTargets": { + "runtimes/linux-musl-x64/native/Cov_x64.config": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-musl-x64/native/libCoverageInstrumentationMethod.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-musl-x64/native/libInstrumentationEngine.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-x64/native/Cov_x64.config": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/linux-x64/native/libCoverageInstrumentationMethod.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/linux-x64/native/libInstrumentationEngine.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/osx-x64/native/Cov_x64.config": { + "assetType": "native", + "rid": "osx-x64" + }, + "runtimes/osx-x64/native/libCoverageInstrumentationMethod.dylib": { + "assetType": "native", + "rid": "osx-x64" + }, + "runtimes/osx-x64/native/libInstrumentationEngine.dylib": { + "assetType": "native", + "rid": "osx-x64" + }, + "runtimes/win-arm64/native/CodeCoverageMessages.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-arm64/native/Cov_arm64.config": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-arm64/native/Cov_x64.config": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-arm64/native/Cov_x86.config": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-arm64/native/MicrosoftInstrumentationEngine_arm64.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-arm64/native/MicrosoftInstrumentationEngine_x64.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-arm64/native/MicrosoftInstrumentationEngine_x86.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-arm64/native/covrun32.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-arm64/native/covrun64.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-arm64/native/covrunarm64.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-arm64/native/msdia140.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/CodeCoverageMessages.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x64/native/Cov_arm64.config": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x64/native/Cov_x64.config": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x64/native/Cov_x86.config": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x64/native/MicrosoftInstrumentationEngine_arm64.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x64/native/MicrosoftInstrumentationEngine_x64.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x64/native/MicrosoftInstrumentationEngine_x86.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x64/native/covrun32.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x64/native/covrun64.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x64/native/covrunarm64.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x64/native/msdia140.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/CodeCoverageMessages.dll": { + "assetType": "native", + "rid": "win-x86" + }, + "runtimes/win-x86/native/Cov_arm64.config": { + "assetType": "native", + "rid": "win-x86" + }, + "runtimes/win-x86/native/Cov_x64.config": { + "assetType": "native", + "rid": "win-x86" + }, + "runtimes/win-x86/native/Cov_x86.config": { + "assetType": "native", + "rid": "win-x86" + }, + "runtimes/win-x86/native/MicrosoftInstrumentationEngine_arm64.dll": { + "assetType": "native", + "rid": "win-x86" + }, + "runtimes/win-x86/native/MicrosoftInstrumentationEngine_x64.dll": { + "assetType": "native", + "rid": "win-x86" + }, + "runtimes/win-x86/native/MicrosoftInstrumentationEngine_x86.dll": { + "assetType": "native", + "rid": "win-x86" + }, + "runtimes/win-x86/native/covrun32.dll": { + "assetType": "native", + "rid": "win-x86" + }, + "runtimes/win-x86/native/covrun64.dll": { + "assetType": "native", + "rid": "win-x86" + }, + "runtimes/win-x86/native/covrunarm64.dll": { + "assetType": "native", + "rid": "win-x86" + }, + "runtimes/win-x86/native/msdia140.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Microsoft.Testing.Extensions.Telemetry/2.0.1": { + "type": "package", + "dependencies": { + "Microsoft.ApplicationInsights": "2.23.0", + "Microsoft.Testing.Platform": "2.0.1" + }, + "compile": { + "lib/net9.0/Microsoft.Testing.Extensions.Telemetry.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Testing.Extensions.Telemetry.dll": { + "related": ".xml" + } + }, + "resource": { + "lib/net9.0/cs/Microsoft.Testing.Extensions.Telemetry.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.Testing.Extensions.Telemetry.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.Testing.Extensions.Telemetry.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.Testing.Extensions.Telemetry.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.Testing.Extensions.Telemetry.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.Testing.Extensions.Telemetry.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.Testing.Extensions.Telemetry.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.Testing.Extensions.Telemetry.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.Testing.Extensions.Telemetry.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.Testing.Extensions.Telemetry.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.Testing.Extensions.Telemetry.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.Testing.Extensions.Telemetry.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.Testing.Extensions.Telemetry.resources.dll": { + "locale": "zh-Hant" + } + }, + "build": { + "buildTransitive/net9.0/Microsoft.Testing.Extensions.Telemetry.props": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.Testing.Extensions.Telemetry.props": {} + } + }, + "Microsoft.Testing.Extensions.TrxReport/2.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Testing.Extensions.TrxReport.Abstractions": "2.0.1", + "Microsoft.Testing.Platform": "2.0.1" + }, + "compile": { + "lib/net9.0/Microsoft.Testing.Extensions.TrxReport.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Testing.Extensions.TrxReport.dll": { + "related": ".xml" + } + }, + "resource": { + "lib/net9.0/cs/Microsoft.Testing.Extensions.TrxReport.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.Testing.Extensions.TrxReport.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.Testing.Extensions.TrxReport.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.Testing.Extensions.TrxReport.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.Testing.Extensions.TrxReport.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.Testing.Extensions.TrxReport.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.Testing.Extensions.TrxReport.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.Testing.Extensions.TrxReport.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.Testing.Extensions.TrxReport.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.Testing.Extensions.TrxReport.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.Testing.Extensions.TrxReport.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.Testing.Extensions.TrxReport.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.Testing.Extensions.TrxReport.resources.dll": { + "locale": "zh-Hant" + } + }, + "build": { + "buildTransitive/net9.0/Microsoft.Testing.Extensions.TrxReport.props": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.Testing.Extensions.TrxReport.props": {} + } + }, + "Microsoft.Testing.Extensions.TrxReport.Abstractions/2.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Testing.Platform": "2.0.1" + }, + "compile": { + "lib/net9.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Testing.Extensions.VSTestBridge/2.0.1": { + "type": "package", + "dependencies": { + "Microsoft.TestPlatform.AdapterUtilities": "18.0.0", + "Microsoft.TestPlatform.ObjectModel": "18.0.0", + "Microsoft.Testing.Extensions.Telemetry": "2.0.1", + "Microsoft.Testing.Extensions.TrxReport.Abstractions": "2.0.1", + "Microsoft.Testing.Platform": "2.0.1" + }, + "compile": { + "lib/net9.0/Microsoft.Testing.Extensions.VSTestBridge.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Testing.Extensions.VSTestBridge.dll": { + "related": ".xml" + } + }, + "resource": { + "lib/net9.0/cs/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Testing.Platform/2.0.1": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.Testing.Platform.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Testing.Platform.dll": { + "related": ".xml" + } + }, + "resource": { + "lib/net9.0/cs/Microsoft.Testing.Platform.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.Testing.Platform.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.Testing.Platform.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.Testing.Platform.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.Testing.Platform.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.Testing.Platform.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.Testing.Platform.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.Testing.Platform.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.Testing.Platform.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.Testing.Platform.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.Testing.Platform.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.Testing.Platform.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.Testing.Platform.resources.dll": { + "locale": "zh-Hant" + } + }, + "build": { + "buildTransitive/net9.0/Microsoft.Testing.Platform.props": {}, + "buildTransitive/net9.0/Microsoft.Testing.Platform.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.Testing.Platform.props": {}, + "buildMultiTargeting/Microsoft.Testing.Platform.targets": {} + } + }, + "Microsoft.Testing.Platform.MSBuild/2.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Testing.Platform": "2.0.1" + }, + "compile": { + "lib/net9.0/Microsoft.Testing.Extensions.MSBuild.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Testing.Extensions.MSBuild.dll": { + "related": ".xml" + } + }, + "resource": { + "lib/net9.0/cs/Microsoft.Testing.Extensions.MSBuild.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.Testing.Extensions.MSBuild.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.Testing.Extensions.MSBuild.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.Testing.Extensions.MSBuild.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.Testing.Extensions.MSBuild.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.Testing.Extensions.MSBuild.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.Testing.Extensions.MSBuild.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.Testing.Extensions.MSBuild.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.Testing.Extensions.MSBuild.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.Testing.Extensions.MSBuild.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.Testing.Extensions.MSBuild.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.Testing.Extensions.MSBuild.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.Testing.Extensions.MSBuild.resources.dll": { + "locale": "zh-Hant" + } + }, + "build": { + "buildTransitive/Microsoft.Testing.Platform.MSBuild.props": {}, + "buildTransitive/Microsoft.Testing.Platform.MSBuild.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.Testing.Platform.MSBuild.props": {}, + "buildMultiTargeting/Microsoft.Testing.Platform.MSBuild.targets": {} + } + }, + "Microsoft.TestPlatform.AdapterUtilities/18.0.0": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.TestPlatform.AdapterUtilities.dll": {} + }, + "runtime": { + "lib/net9.0/Microsoft.TestPlatform.AdapterUtilities.dll": {} + }, + "resource": { + "lib/net9.0/cs/Microsoft.TestPlatform.AdapterUtilities.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.TestPlatform.AdapterUtilities.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.TestPlatform.AdapterUtilities.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.TestPlatform.AdapterUtilities.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.TestPlatform.AdapterUtilities.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.TestPlatform.AdapterUtilities.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.TestPlatform.AdapterUtilities.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.TestPlatform.AdapterUtilities.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.TestPlatform.AdapterUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.TestPlatform.AdapterUtilities.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.TestPlatform.AdapterUtilities.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.TestPlatform.AdapterUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.TestPlatform.AdapterUtilities.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.TestPlatform.ObjectModel/18.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} + }, + "runtime": { + "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} + }, + "resource": { + "lib/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "de" + }, + "lib/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "es" + }, + "lib/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "it" + }, + "lib/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.TestPlatform.TestHost/18.0.0": { + "type": "package", + "dependencies": { + "Microsoft.TestPlatform.ObjectModel": "18.0.0", + "Newtonsoft.Json": "13.0.3" + }, + "compile": { + "lib/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, + "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, + "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/net8.0/Microsoft.TestPlatform.Utilities.dll": {}, + "lib/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, + "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, + "lib/net8.0/testhost.dll": { + "related": ".deps.json" + } + }, + "runtime": { + "lib/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, + "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, + "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/net8.0/Microsoft.TestPlatform.Utilities.dll": {}, + "lib/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, + "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, + "lib/net8.0/testhost.dll": { + "related": ".deps.json" + } + }, + "resource": { + "lib/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "de" + }, + "lib/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "de" + }, + "lib/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "es" + }, + "lib/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "es" + }, + "lib/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "it" + }, + "lib/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "it" + }, + "lib/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hant" + }, + "lib/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hant" + } + }, + "build": { + "build/net8.0/Microsoft.TestPlatform.TestHost.props": {}, + "build/net8.0/Microsoft.TestPlatform.TestHost.targets": {} + } + }, + "MSTest/4.0.1": { + "type": "package", + "dependencies": { + "MSTest.TestAdapter": "4.0.1", + "MSTest.TestFramework": "4.0.1", + "Microsoft.NET.Test.Sdk": "18.0.0", + "Microsoft.Testing.Extensions.CodeCoverage": "18.1.0", + "Microsoft.Testing.Extensions.TrxReport": "2.0.1" + }, + "compile": { + "lib/net9.0/_._": {} + }, + "runtime": { + "lib/net9.0/_._": {} + } + }, + "MSTest.Analyzers/4.0.1": { + "type": "package", + "build": { + "buildTransitive/MSTest.Analyzers.props": {}, + "buildTransitive/MSTest.Analyzers.targets": {} + } + }, + "MSTest.TestAdapter/4.0.1": { + "type": "package", + "dependencies": { + "MSTest.TestFramework": "4.0.1", + "Microsoft.Testing.Extensions.VSTestBridge": "2.0.1", + "Microsoft.Testing.Platform.MSBuild": "2.0.1" + }, + "build": { + "buildTransitive/net9.0/MSTest.TestAdapter.props": {}, + "buildTransitive/net9.0/MSTest.TestAdapter.targets": {} + } + }, + "MSTest.TestFramework/4.0.1": { + "type": "package", + "dependencies": { + "MSTest.Analyzers": "4.0.1" + }, + "compile": { + "lib/net9.0/MSTest.TestFramework.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/MSTest.TestFramework.dll": { + "related": ".xml" + } + }, + "resource": { + "lib/net9.0/cs/MSTest.TestFramework.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/MSTest.TestFramework.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/MSTest.TestFramework.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/MSTest.TestFramework.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/MSTest.TestFramework.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/MSTest.TestFramework.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/MSTest.TestFramework.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/MSTest.TestFramework.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/MSTest.TestFramework.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/MSTest.TestFramework.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/MSTest.TestFramework.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/MSTest.TestFramework.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/MSTest.TestFramework.resources.dll": { + "locale": "zh-Hant" + } + }, + "build": { + "buildTransitive/net9.0/MSTest.TestFramework.targets": {} + } + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "compile": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "SortingModel/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v10.0", + "compile": { + "bin/placeholder/SortingModel.dll": {} + }, + "runtime": { + "bin/placeholder/SortingModel.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.ApplicationInsights/2.23.0": { + "sha512": "nWArUZTdU7iqZLycLKWe0TDms48KKGE6pONH2terYNa8REXiqixrMOkf1sk5DHGMaUTqONU2YkS4SAXBhLStgw==", + "type": "package", + "path": "microsoft.applicationinsights/2.23.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net452/Microsoft.ApplicationInsights.dll", + "lib/net452/Microsoft.ApplicationInsights.pdb", + "lib/net452/Microsoft.ApplicationInsights.xml", + "lib/net46/Microsoft.ApplicationInsights.dll", + "lib/net46/Microsoft.ApplicationInsights.pdb", + "lib/net46/Microsoft.ApplicationInsights.xml", + "lib/netstandard2.0/Microsoft.ApplicationInsights.dll", + "lib/netstandard2.0/Microsoft.ApplicationInsights.pdb", + "lib/netstandard2.0/Microsoft.ApplicationInsights.xml", + "microsoft.applicationinsights.2.23.0.nupkg.sha512", + "microsoft.applicationinsights.nuspec" + ] + }, + "Microsoft.CodeCoverage/18.0.0": { + "sha512": "DFPhMrsIofgJ1DDU3ModqqRArDm15/bNl4ecmcuBspZkZ4ONYnCC0R8U27WzK7cYv6r8l6Q/fRmvg7cb+I/dJA==", + "type": "package", + "path": "microsoft.codecoverage/18.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "ThirdPartyNotices.txt", + "build/netstandard2.0/CodeCoverage/CodeCoverage.config", + "build/netstandard2.0/CodeCoverage/CodeCoverage.exe", + "build/netstandard2.0/CodeCoverage/CodeCoverageMessages.dll", + "build/netstandard2.0/CodeCoverage/Cov_x86.config", + "build/netstandard2.0/CodeCoverage/amd64/CodeCoverage.exe", + "build/netstandard2.0/CodeCoverage/amd64/Cov_x64.config", + "build/netstandard2.0/CodeCoverage/amd64/covrun64.dll", + "build/netstandard2.0/CodeCoverage/amd64/msdia140.dll", + "build/netstandard2.0/CodeCoverage/arm64/Cov_arm64.config", + "build/netstandard2.0/CodeCoverage/arm64/covrunarm64.dll", + "build/netstandard2.0/CodeCoverage/arm64/msdia140.dll", + "build/netstandard2.0/CodeCoverage/coreclr/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "build/netstandard2.0/CodeCoverage/covrun32.dll", + "build/netstandard2.0/CodeCoverage/msdia140.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.Core.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.Core.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.Interprocess.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.props", + "build/netstandard2.0/Microsoft.CodeCoverage.targets", + "build/netstandard2.0/Microsoft.DiaSymReader.dll", + "build/netstandard2.0/Microsoft.VisualStudio.TraceDataCollector.dll", + "build/netstandard2.0/Mono.Cecil.Pdb.dll", + "build/netstandard2.0/Mono.Cecil.Rocks.dll", + "build/netstandard2.0/Mono.Cecil.dll", + "build/netstandard2.0/System.Memory.dll", + "build/netstandard2.0/System.Text.Json.dll", + "build/netstandard2.0/ThirdPartyNotices.txt", + "build/netstandard2.0/alpine/x64/Cov_x64.config", + "build/netstandard2.0/alpine/x64/libCoverageInstrumentationMethod.so", + "build/netstandard2.0/alpine/x64/libInstrumentationEngine.so", + "build/netstandard2.0/arm64/MicrosoftInstrumentationEngine_arm64.dll", + "build/netstandard2.0/cs/Microsoft.CodeCoverage.Core.resources.dll", + "build/netstandard2.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/de/Microsoft.CodeCoverage.Core.resources.dll", + "build/netstandard2.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/es/Microsoft.CodeCoverage.Core.resources.dll", + "build/netstandard2.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/fr/Microsoft.CodeCoverage.Core.resources.dll", + "build/netstandard2.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/it/Microsoft.CodeCoverage.Core.resources.dll", + "build/netstandard2.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/ja/Microsoft.CodeCoverage.Core.resources.dll", + "build/netstandard2.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/ko/Microsoft.CodeCoverage.Core.resources.dll", + "build/netstandard2.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/macos/x64/Cov_x64.config", + "build/netstandard2.0/macos/x64/libCoverageInstrumentationMethod.dylib", + "build/netstandard2.0/macos/x64/libInstrumentationEngine.dylib", + "build/netstandard2.0/pl/Microsoft.CodeCoverage.Core.resources.dll", + "build/netstandard2.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/pt-BR/Microsoft.CodeCoverage.Core.resources.dll", + "build/netstandard2.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/ru/Microsoft.CodeCoverage.Core.resources.dll", + "build/netstandard2.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/tr/Microsoft.CodeCoverage.Core.resources.dll", + "build/netstandard2.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/ubuntu/x64/Cov_x64.config", + "build/netstandard2.0/ubuntu/x64/libCoverageInstrumentationMethod.so", + "build/netstandard2.0/ubuntu/x64/libInstrumentationEngine.so", + "build/netstandard2.0/x64/MicrosoftInstrumentationEngine_x64.dll", + "build/netstandard2.0/x86/MicrosoftInstrumentationEngine_x86.dll", + "build/netstandard2.0/zh-Hans/Microsoft.CodeCoverage.Core.resources.dll", + "build/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/zh-Hant/Microsoft.CodeCoverage.Core.resources.dll", + "build/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "lib/net462/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "lib/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "microsoft.codecoverage.18.0.0.nupkg.sha512", + "microsoft.codecoverage.nuspec" + ] + }, + "Microsoft.DiaSymReader/2.0.0": { + "sha512": "QcZrCETsBJqy/vQpFtJc+jSXQ0K5sucQ6NUFbTNVHD4vfZZOwjZ/3sBzczkC4DityhD3AVO/+K/+9ioLs1AgRA==", + "type": "package", + "path": "microsoft.diasymreader/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/Microsoft.DiaSymReader.dll", + "lib/netstandard2.0/Microsoft.DiaSymReader.pdb", + "lib/netstandard2.0/Microsoft.DiaSymReader.xml", + "microsoft.diasymreader.2.0.0.nupkg.sha512", + "microsoft.diasymreader.nuspec" + ] + }, + "Microsoft.Extensions.DependencyModel/6.0.2": { + "sha512": "HS5YsudCGSVoCVdsYJ5FAO9vx0z04qSAXgVzpDJSQ1/w/X9q8hrQVGU2p+Yfui+2KcXLL+Zjc0SX3yJWtBmYiw==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/6.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.DependencyModel.dll", + "lib/net461/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.6.0.2.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.NET.Test.Sdk/18.0.0": { + "sha512": "bvxj2Asb7nT+tqOFFerrhQeEjUYLwx0Poi0Rznu63WbqN+A4uDn1t5NWXfAOOQsF6lpmK6N2v+Vvgso7KWZS7g==", + "type": "package", + "path": "microsoft.net.test.sdk/18.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "build/net462/Microsoft.NET.Test.Sdk.props", + "build/net462/Microsoft.NET.Test.Sdk.targets", + "build/net8.0/Microsoft.NET.Test.Sdk.Program.cs", + "build/net8.0/Microsoft.NET.Test.Sdk.Program.fs", + "build/net8.0/Microsoft.NET.Test.Sdk.Program.vb", + "build/net8.0/Microsoft.NET.Test.Sdk.props", + "build/net8.0/Microsoft.NET.Test.Sdk.targets", + "build/netcoreapp2.0/Microsoft.NET.Test.Sdk.props", + "build/netcoreapp2.0/Microsoft.NET.Test.Sdk.targets", + "build/netstandard2.0/Microsoft.NET.Test.Sdk.props", + "build/netstandard2.0/Microsoft.NET.Test.Sdk.targets", + "buildMultiTargeting/net462/Microsoft.NET.Test.Sdk.props", + "buildMultiTargeting/net8.0/Microsoft.NET.Test.Sdk.props", + "buildMultiTargeting/netcoreapp2.0/Microsoft.NET.Test.Sdk.props", + "buildMultiTargeting/netcoreapp2.0/Microsoft.NET.Test.Sdk.targets", + "buildMultiTargeting/netstandard2.0/Microsoft.NET.Test.Sdk.props", + "buildMultiTargeting/netstandard2.0/Microsoft.NET.Test.Sdk.targets", + "lib/native/_._", + "lib/net462/_._", + "lib/net8.0/_._", + "microsoft.net.test.sdk.18.0.0.nupkg.sha512", + "microsoft.net.test.sdk.nuspec" + ] + }, + "Microsoft.Testing.Extensions.CodeCoverage/18.1.0": { + "sha512": "FJUCocHSPSjbeoGE/OojOhVUXwDng3VdNlwqzif9hMS2eFcG0f8RdjLM537aBsjP7zLHvGnWXbnUnc61v/EFCA==", + "type": "package", + "path": "microsoft.testing.extensions.codecoverage/18.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "License.txt", + "PACKAGE.md", + "ThirdPartyNotices.txt", + "build/net8.0/Microsoft.Testing.Extensions.CodeCoverage.props", + "build/net8.0/Microsoft.Testing.Extensions.CodeCoverage.targets", + "build/netstandard2.0/Microsoft.Testing.Extensions.CodeCoverage.props", + "build/netstandard2.0/Microsoft.Testing.Extensions.CodeCoverage.targets", + "buildMultiTargeting/Microsoft.Testing.Extensions.CodeCoverage.props", + "buildMultiTargeting/Microsoft.Testing.Extensions.CodeCoverage.targets", + "buildTransitive/net8.0/Microsoft.Testing.Extensions.CodeCoverage.props", + "buildTransitive/net8.0/Microsoft.Testing.Extensions.CodeCoverage.targets", + "buildTransitive/netstandard2.0/Microsoft.Testing.Extensions.CodeCoverage.props", + "buildTransitive/netstandard2.0/Microsoft.Testing.Extensions.CodeCoverage.targets", + "lib/net8.0/Microsoft.CodeCoverage.Core.dll", + "lib/net8.0/Microsoft.CodeCoverage.Instrumentation.Core.dll", + "lib/net8.0/Microsoft.CodeCoverage.Instrumentation.dll", + "lib/net8.0/Microsoft.CodeCoverage.Interprocess.dll", + "lib/net8.0/Microsoft.Testing.Extensions.CodeCoverage.dll", + "lib/net8.0/Microsoft.Testing.Extensions.CodeCoverage.pdb", + "lib/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "lib/net8.0/Mono.Cecil.Mdb.dll", + "lib/net8.0/Mono.Cecil.Pdb.dll", + "lib/net8.0/Mono.Cecil.Rocks.dll", + "lib/net8.0/Mono.Cecil.dll", + "lib/net8.0/cs/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", + "lib/net8.0/de/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", + "lib/net8.0/es/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", + "lib/net8.0/fr/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", + "lib/net8.0/hu/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", + "lib/net8.0/it/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", + "lib/net8.0/ja/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", + "lib/net8.0/ko/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", + "lib/net8.0/nl/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", + "lib/net8.0/pl/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", + "lib/net8.0/pt-BR/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", + "lib/net8.0/pt-PT/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", + "lib/net8.0/ru/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", + "lib/net8.0/sv/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", + "lib/net8.0/tr/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", + "lib/netstandard2.0/Microsoft.CodeCoverage.Core.dll", + "lib/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.Core.dll", + "lib/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.dll", + "lib/netstandard2.0/Microsoft.CodeCoverage.Interprocess.dll", + "lib/netstandard2.0/Microsoft.Testing.Extensions.CodeCoverage.dll", + "lib/netstandard2.0/Microsoft.Testing.Extensions.CodeCoverage.pdb", + "lib/netstandard2.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "lib/netstandard2.0/Mono.Cecil.Mdb.dll", + "lib/netstandard2.0/Mono.Cecil.Pdb.dll", + "lib/netstandard2.0/Mono.Cecil.Rocks.dll", + "lib/netstandard2.0/Mono.Cecil.dll", + "lib/netstandard2.0/cs/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", + "lib/netstandard2.0/de/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", + "lib/netstandard2.0/es/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", + "lib/netstandard2.0/fr/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", + "lib/netstandard2.0/hu/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", + "lib/netstandard2.0/it/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", + "lib/netstandard2.0/ja/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", + "lib/netstandard2.0/ko/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", + "lib/netstandard2.0/nl/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", + "lib/netstandard2.0/pl/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", + "lib/netstandard2.0/pt-PT/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", + "lib/netstandard2.0/ru/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", + "lib/netstandard2.0/sv/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", + "lib/netstandard2.0/tr/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", + "microsoft.testing.extensions.codecoverage.18.1.0.nupkg.sha512", + "microsoft.testing.extensions.codecoverage.nuspec", + "runtimes/linux-musl-x64/native/Cov_x64.config", + "runtimes/linux-musl-x64/native/libCoverageInstrumentationMethod.so", + "runtimes/linux-musl-x64/native/libInstrumentationEngine.so", + "runtimes/linux-x64/native/Cov_x64.config", + "runtimes/linux-x64/native/libCoverageInstrumentationMethod.so", + "runtimes/linux-x64/native/libInstrumentationEngine.so", + "runtimes/osx-x64/native/Cov_x64.config", + "runtimes/osx-x64/native/libCoverageInstrumentationMethod.dylib", + "runtimes/osx-x64/native/libInstrumentationEngine.dylib", + "runtimes/win-arm64/native/CodeCoverageMessages.dll", + "runtimes/win-arm64/native/Cov_arm64.config", + "runtimes/win-arm64/native/Cov_x64.config", + "runtimes/win-arm64/native/Cov_x86.config", + "runtimes/win-arm64/native/MicrosoftInstrumentationEngine_arm64.dll", + "runtimes/win-arm64/native/MicrosoftInstrumentationEngine_x64.dll", + "runtimes/win-arm64/native/MicrosoftInstrumentationEngine_x86.dll", + "runtimes/win-arm64/native/covrun32.dll", + "runtimes/win-arm64/native/covrun64.dll", + "runtimes/win-arm64/native/covrunarm64.dll", + "runtimes/win-arm64/native/msdia140.dll", + "runtimes/win-x64/native/CodeCoverageMessages.dll", + "runtimes/win-x64/native/Cov_arm64.config", + "runtimes/win-x64/native/Cov_x64.config", + "runtimes/win-x64/native/Cov_x86.config", + "runtimes/win-x64/native/MicrosoftInstrumentationEngine_arm64.dll", + "runtimes/win-x64/native/MicrosoftInstrumentationEngine_x64.dll", + "runtimes/win-x64/native/MicrosoftInstrumentationEngine_x86.dll", + "runtimes/win-x64/native/covrun32.dll", + "runtimes/win-x64/native/covrun64.dll", + "runtimes/win-x64/native/covrunarm64.dll", + "runtimes/win-x64/native/msdia140.dll", + "runtimes/win-x86/native/CodeCoverageMessages.dll", + "runtimes/win-x86/native/Cov_arm64.config", + "runtimes/win-x86/native/Cov_x64.config", + "runtimes/win-x86/native/Cov_x86.config", + "runtimes/win-x86/native/MicrosoftInstrumentationEngine_arm64.dll", + "runtimes/win-x86/native/MicrosoftInstrumentationEngine_x64.dll", + "runtimes/win-x86/native/MicrosoftInstrumentationEngine_x86.dll", + "runtimes/win-x86/native/covrun32.dll", + "runtimes/win-x86/native/covrun64.dll", + "runtimes/win-x86/native/covrunarm64.dll", + "runtimes/win-x86/native/msdia140.dll" + ] + }, + "Microsoft.Testing.Extensions.Telemetry/2.0.1": { + "sha512": "qfzQF/XSjjtcir+wEPdVOIaseQqTqucNWO3uw+dbSflpIC9y9+o+Kq8+Xi0O9AGxukgMz/r4QTdNEK2FauYSCA==", + "type": "package", + "path": "microsoft.testing.extensions.telemetry/2.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "build/net8.0/Microsoft.Testing.Extensions.Telemetry.props", + "build/net9.0/Microsoft.Testing.Extensions.Telemetry.props", + "build/netstandard2.0/Microsoft.Testing.Extensions.Telemetry.props", + "buildMultiTargeting/Microsoft.Testing.Extensions.Telemetry.props", + "buildTransitive/net8.0/Microsoft.Testing.Extensions.Telemetry.props", + "buildTransitive/net9.0/Microsoft.Testing.Extensions.Telemetry.props", + "buildTransitive/netstandard2.0/Microsoft.Testing.Extensions.Telemetry.props", + "lib/net8.0/Microsoft.Testing.Extensions.Telemetry.dll", + "lib/net8.0/Microsoft.Testing.Extensions.Telemetry.xml", + "lib/net8.0/cs/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/net8.0/de/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/net8.0/es/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/net8.0/fr/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/net8.0/it/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/net8.0/ja/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/net8.0/ko/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/net8.0/pl/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/net8.0/pt-BR/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/net8.0/ru/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/net8.0/tr/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/net9.0/Microsoft.Testing.Extensions.Telemetry.dll", + "lib/net9.0/Microsoft.Testing.Extensions.Telemetry.xml", + "lib/net9.0/cs/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/net9.0/de/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/net9.0/es/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/net9.0/fr/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/net9.0/it/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/net9.0/ja/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/net9.0/ko/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/net9.0/pl/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/net9.0/pt-BR/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/net9.0/ru/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/net9.0/tr/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/netstandard2.0/Microsoft.Testing.Extensions.Telemetry.dll", + "lib/netstandard2.0/Microsoft.Testing.Extensions.Telemetry.xml", + "lib/netstandard2.0/cs/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/netstandard2.0/de/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/netstandard2.0/es/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/netstandard2.0/fr/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/netstandard2.0/it/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/netstandard2.0/ja/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/netstandard2.0/ko/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/netstandard2.0/pl/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/netstandard2.0/ru/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/netstandard2.0/tr/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.Testing.Extensions.Telemetry.resources.dll", + "microsoft.testing.extensions.telemetry.2.0.1.nupkg.sha512", + "microsoft.testing.extensions.telemetry.nuspec" + ] + }, + "Microsoft.Testing.Extensions.TrxReport/2.0.1": { + "sha512": "8XsUmt8RfelkKggTZm/HfrTtY3pnT1/Rfmi4xxPbx9ko5fToxnpsDH3uvU6LwxKff41WQAABNN0K/qdLdk5FaQ==", + "type": "package", + "path": "microsoft.testing.extensions.trxreport/2.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "build/net8.0/Microsoft.Testing.Extensions.TrxReport.props", + "build/net9.0/Microsoft.Testing.Extensions.TrxReport.props", + "build/netstandard2.0/Microsoft.Testing.Extensions.TrxReport.props", + "buildMultiTargeting/Microsoft.Testing.Extensions.TrxReport.props", + "buildTransitive/net8.0/Microsoft.Testing.Extensions.TrxReport.props", + "buildTransitive/net9.0/Microsoft.Testing.Extensions.TrxReport.props", + "buildTransitive/netstandard2.0/Microsoft.Testing.Extensions.TrxReport.props", + "lib/net8.0/Microsoft.Testing.Extensions.TrxReport.dll", + "lib/net8.0/Microsoft.Testing.Extensions.TrxReport.xml", + "lib/net8.0/cs/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/net8.0/de/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/net8.0/es/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/net8.0/fr/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/net8.0/it/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/net8.0/ja/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/net8.0/ko/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/net8.0/pl/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/net8.0/pt-BR/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/net8.0/ru/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/net8.0/tr/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/net9.0/Microsoft.Testing.Extensions.TrxReport.dll", + "lib/net9.0/Microsoft.Testing.Extensions.TrxReport.xml", + "lib/net9.0/cs/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/net9.0/de/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/net9.0/es/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/net9.0/fr/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/net9.0/it/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/net9.0/ja/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/net9.0/ko/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/net9.0/pl/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/net9.0/pt-BR/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/net9.0/ru/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/net9.0/tr/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/netstandard2.0/Microsoft.Testing.Extensions.TrxReport.dll", + "lib/netstandard2.0/Microsoft.Testing.Extensions.TrxReport.xml", + "lib/netstandard2.0/cs/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/netstandard2.0/de/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/netstandard2.0/es/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/netstandard2.0/fr/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/netstandard2.0/it/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/netstandard2.0/ja/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/netstandard2.0/ko/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/netstandard2.0/pl/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/netstandard2.0/ru/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/netstandard2.0/tr/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.Testing.Extensions.TrxReport.resources.dll", + "microsoft.testing.extensions.trxreport.2.0.1.nupkg.sha512", + "microsoft.testing.extensions.trxreport.nuspec" + ] + }, + "Microsoft.Testing.Extensions.TrxReport.Abstractions/2.0.1": { + "sha512": "GCyRVLdFiOlGkgZItt2kHJRn/NY9zhEF5EQwjFCOl6fwr+uSy0KtwwGHF5uERevjEEBTqRbj4wwrraAqRyq1Zw==", + "type": "package", + "path": "microsoft.testing.extensions.trxreport.abstractions/2.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.dll", + "lib/net8.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.xml", + "lib/net9.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.dll", + "lib/net9.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.xml", + "microsoft.testing.extensions.trxreport.abstractions.2.0.1.nupkg.sha512", + "microsoft.testing.extensions.trxreport.abstractions.nuspec" + ] + }, + "Microsoft.Testing.Extensions.VSTestBridge/2.0.1": { + "sha512": "9AhTlsybBBit+26FwsVFMc8piaNfHtBCqFuwC0sW6LZJfg9fB1SIh/FQLt2jQF98qwasbZ2r8OMYivxZkL3mAg==", + "type": "package", + "path": "microsoft.testing.extensions.vstestbridge/2.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.Testing.Extensions.VSTestBridge.dll", + "lib/net8.0/Microsoft.Testing.Extensions.VSTestBridge.xml", + "lib/net8.0/cs/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/net8.0/de/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/net8.0/es/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/net8.0/fr/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/net8.0/it/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/net8.0/ja/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/net8.0/ko/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/net8.0/pl/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/net8.0/pt-BR/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/net8.0/ru/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/net8.0/tr/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/net9.0/Microsoft.Testing.Extensions.VSTestBridge.dll", + "lib/net9.0/Microsoft.Testing.Extensions.VSTestBridge.xml", + "lib/net9.0/cs/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/net9.0/de/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/net9.0/es/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/net9.0/fr/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/net9.0/it/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/net9.0/ja/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/net9.0/ko/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/net9.0/pl/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/net9.0/pt-BR/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/net9.0/ru/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/net9.0/tr/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/netstandard2.0/Microsoft.Testing.Extensions.VSTestBridge.dll", + "lib/netstandard2.0/Microsoft.Testing.Extensions.VSTestBridge.xml", + "lib/netstandard2.0/cs/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/netstandard2.0/de/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/netstandard2.0/es/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/netstandard2.0/fr/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/netstandard2.0/it/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/netstandard2.0/ja/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/netstandard2.0/ko/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/netstandard2.0/pl/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/netstandard2.0/ru/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/netstandard2.0/tr/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", + "microsoft.testing.extensions.vstestbridge.2.0.1.nupkg.sha512", + "microsoft.testing.extensions.vstestbridge.nuspec" + ] + }, + "Microsoft.Testing.Platform/2.0.1": { + "sha512": "k1k9DV/pzkhiG0LOokmrBf63BBhgUoHcjsOA6C0S26hiO+prcUIw4wpbzrUGrwMmJlo1P0idxJtiFEAZdvNwxQ==", + "type": "package", + "path": "microsoft.testing.platform/2.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "build/net8.0/Microsoft.Testing.Platform.props", + "build/net8.0/Microsoft.Testing.Platform.targets", + "build/net9.0/Microsoft.Testing.Platform.props", + "build/net9.0/Microsoft.Testing.Platform.targets", + "build/netstandard2.0/Microsoft.Testing.Platform.props", + "build/netstandard2.0/Microsoft.Testing.Platform.targets", + "buildMultiTargeting/Microsoft.Testing.Platform.props", + "buildMultiTargeting/Microsoft.Testing.Platform.targets", + "buildTransitive/net8.0/Microsoft.Testing.Platform.props", + "buildTransitive/net8.0/Microsoft.Testing.Platform.targets", + "buildTransitive/net9.0/Microsoft.Testing.Platform.props", + "buildTransitive/net9.0/Microsoft.Testing.Platform.targets", + "buildTransitive/netstandard2.0/Microsoft.Testing.Platform.props", + "buildTransitive/netstandard2.0/Microsoft.Testing.Platform.targets", + "lib/net8.0/Microsoft.Testing.Platform.dll", + "lib/net8.0/Microsoft.Testing.Platform.xml", + "lib/net8.0/cs/Microsoft.Testing.Platform.resources.dll", + "lib/net8.0/de/Microsoft.Testing.Platform.resources.dll", + "lib/net8.0/es/Microsoft.Testing.Platform.resources.dll", + "lib/net8.0/fr/Microsoft.Testing.Platform.resources.dll", + "lib/net8.0/it/Microsoft.Testing.Platform.resources.dll", + "lib/net8.0/ja/Microsoft.Testing.Platform.resources.dll", + "lib/net8.0/ko/Microsoft.Testing.Platform.resources.dll", + "lib/net8.0/pl/Microsoft.Testing.Platform.resources.dll", + "lib/net8.0/pt-BR/Microsoft.Testing.Platform.resources.dll", + "lib/net8.0/ru/Microsoft.Testing.Platform.resources.dll", + "lib/net8.0/tr/Microsoft.Testing.Platform.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.Testing.Platform.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.Testing.Platform.resources.dll", + "lib/net9.0/Microsoft.Testing.Platform.dll", + "lib/net9.0/Microsoft.Testing.Platform.xml", + "lib/net9.0/cs/Microsoft.Testing.Platform.resources.dll", + "lib/net9.0/de/Microsoft.Testing.Platform.resources.dll", + "lib/net9.0/es/Microsoft.Testing.Platform.resources.dll", + "lib/net9.0/fr/Microsoft.Testing.Platform.resources.dll", + "lib/net9.0/it/Microsoft.Testing.Platform.resources.dll", + "lib/net9.0/ja/Microsoft.Testing.Platform.resources.dll", + "lib/net9.0/ko/Microsoft.Testing.Platform.resources.dll", + "lib/net9.0/pl/Microsoft.Testing.Platform.resources.dll", + "lib/net9.0/pt-BR/Microsoft.Testing.Platform.resources.dll", + "lib/net9.0/ru/Microsoft.Testing.Platform.resources.dll", + "lib/net9.0/tr/Microsoft.Testing.Platform.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.Testing.Platform.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.Testing.Platform.resources.dll", + "lib/netstandard2.0/Microsoft.Testing.Platform.dll", + "lib/netstandard2.0/Microsoft.Testing.Platform.xml", + "lib/netstandard2.0/cs/Microsoft.Testing.Platform.resources.dll", + "lib/netstandard2.0/de/Microsoft.Testing.Platform.resources.dll", + "lib/netstandard2.0/es/Microsoft.Testing.Platform.resources.dll", + "lib/netstandard2.0/fr/Microsoft.Testing.Platform.resources.dll", + "lib/netstandard2.0/it/Microsoft.Testing.Platform.resources.dll", + "lib/netstandard2.0/ja/Microsoft.Testing.Platform.resources.dll", + "lib/netstandard2.0/ko/Microsoft.Testing.Platform.resources.dll", + "lib/netstandard2.0/pl/Microsoft.Testing.Platform.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.Testing.Platform.resources.dll", + "lib/netstandard2.0/ru/Microsoft.Testing.Platform.resources.dll", + "lib/netstandard2.0/tr/Microsoft.Testing.Platform.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.Testing.Platform.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.Testing.Platform.resources.dll", + "microsoft.testing.platform.2.0.1.nupkg.sha512", + "microsoft.testing.platform.nuspec" + ] + }, + "Microsoft.Testing.Platform.MSBuild/2.0.1": { + "sha512": "zI8svKM2d1wAu20u+cMRo13oJv4uyPcCmVZixvKk+W34d1F7hH2msEzyQ4zv3NEliE60JMM9cdDxWcA3yU2oAA==", + "type": "package", + "path": "microsoft.testing.platform.msbuild/2.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "_MSBuildTasks/netstandard2.0/Microsoft.Testing.Platform.MSBuild.dll", + "_MSBuildTasks/netstandard2.0/Microsoft.Testing.Platform.MSBuild.xml", + "_MSBuildTasks/netstandard2.0/Microsoft.Testing.Platform.dll", + "_MSBuildTasks/netstandard2.0/Microsoft.Testing.Platform.xml", + "_MSBuildTasks/netstandard2.0/Microsoft.Win32.Registry.dll", + "_MSBuildTasks/netstandard2.0/System.Security.AccessControl.dll", + "_MSBuildTasks/netstandard2.0/System.Security.Principal.Windows.dll", + "_MSBuildTasks/netstandard2.0/cs/Microsoft.Testing.Platform.MSBuild.resources.dll", + "_MSBuildTasks/netstandard2.0/cs/Microsoft.Testing.Platform.resources.dll", + "_MSBuildTasks/netstandard2.0/de/Microsoft.Testing.Platform.MSBuild.resources.dll", + "_MSBuildTasks/netstandard2.0/de/Microsoft.Testing.Platform.resources.dll", + "_MSBuildTasks/netstandard2.0/es/Microsoft.Testing.Platform.MSBuild.resources.dll", + "_MSBuildTasks/netstandard2.0/es/Microsoft.Testing.Platform.resources.dll", + "_MSBuildTasks/netstandard2.0/fr/Microsoft.Testing.Platform.MSBuild.resources.dll", + "_MSBuildTasks/netstandard2.0/fr/Microsoft.Testing.Platform.resources.dll", + "_MSBuildTasks/netstandard2.0/it/Microsoft.Testing.Platform.MSBuild.resources.dll", + "_MSBuildTasks/netstandard2.0/it/Microsoft.Testing.Platform.resources.dll", + "_MSBuildTasks/netstandard2.0/ja/Microsoft.Testing.Platform.MSBuild.resources.dll", + "_MSBuildTasks/netstandard2.0/ja/Microsoft.Testing.Platform.resources.dll", + "_MSBuildTasks/netstandard2.0/ko/Microsoft.Testing.Platform.MSBuild.resources.dll", + "_MSBuildTasks/netstandard2.0/ko/Microsoft.Testing.Platform.resources.dll", + "_MSBuildTasks/netstandard2.0/pl/Microsoft.Testing.Platform.MSBuild.resources.dll", + "_MSBuildTasks/netstandard2.0/pl/Microsoft.Testing.Platform.resources.dll", + "_MSBuildTasks/netstandard2.0/pt-BR/Microsoft.Testing.Platform.MSBuild.resources.dll", + "_MSBuildTasks/netstandard2.0/pt-BR/Microsoft.Testing.Platform.resources.dll", + "_MSBuildTasks/netstandard2.0/ru/Microsoft.Testing.Platform.MSBuild.resources.dll", + "_MSBuildTasks/netstandard2.0/ru/Microsoft.Testing.Platform.resources.dll", + "_MSBuildTasks/netstandard2.0/tr/Microsoft.Testing.Platform.MSBuild.resources.dll", + "_MSBuildTasks/netstandard2.0/tr/Microsoft.Testing.Platform.resources.dll", + "_MSBuildTasks/netstandard2.0/zh-Hans/Microsoft.Testing.Platform.MSBuild.resources.dll", + "_MSBuildTasks/netstandard2.0/zh-Hans/Microsoft.Testing.Platform.resources.dll", + "_MSBuildTasks/netstandard2.0/zh-Hant/Microsoft.Testing.Platform.MSBuild.resources.dll", + "_MSBuildTasks/netstandard2.0/zh-Hant/Microsoft.Testing.Platform.resources.dll", + "build/Microsoft.Testing.Platform.MSBuild.props", + "build/Microsoft.Testing.Platform.MSBuild.targets", + "buildMultiTargeting/Microsoft.Testing.Platform.MSBuild.CustomTestTarget.targets", + "buildMultiTargeting/Microsoft.Testing.Platform.MSBuild.VSTest.targets", + "buildMultiTargeting/Microsoft.Testing.Platform.MSBuild.props", + "buildMultiTargeting/Microsoft.Testing.Platform.MSBuild.targets", + "buildTransitive/Microsoft.Testing.Platform.MSBuild.props", + "buildTransitive/Microsoft.Testing.Platform.MSBuild.targets", + "lib/net8.0/Microsoft.Testing.Extensions.MSBuild.dll", + "lib/net8.0/Microsoft.Testing.Extensions.MSBuild.xml", + "lib/net8.0/cs/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/net8.0/de/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/net8.0/es/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/net8.0/fr/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/net8.0/it/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/net8.0/ja/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/net8.0/ko/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/net8.0/pl/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/net8.0/pt-BR/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/net8.0/ru/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/net8.0/tr/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/net9.0/Microsoft.Testing.Extensions.MSBuild.dll", + "lib/net9.0/Microsoft.Testing.Extensions.MSBuild.xml", + "lib/net9.0/cs/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/net9.0/de/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/net9.0/es/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/net9.0/fr/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/net9.0/it/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/net9.0/ja/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/net9.0/ko/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/net9.0/pl/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/net9.0/pt-BR/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/net9.0/ru/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/net9.0/tr/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/netstandard2.0/Microsoft.Testing.Extensions.MSBuild.dll", + "lib/netstandard2.0/Microsoft.Testing.Extensions.MSBuild.xml", + "lib/netstandard2.0/cs/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/netstandard2.0/de/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/netstandard2.0/es/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/netstandard2.0/fr/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/netstandard2.0/it/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/netstandard2.0/ja/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/netstandard2.0/ko/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/netstandard2.0/pl/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/netstandard2.0/ru/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/netstandard2.0/tr/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.Testing.Extensions.MSBuild.resources.dll", + "microsoft.testing.platform.msbuild.2.0.1.nupkg.sha512", + "microsoft.testing.platform.msbuild.nuspec" + ] + }, + "Microsoft.TestPlatform.AdapterUtilities/18.0.0": { + "sha512": "3D9MrhTGYshzsEORmcA2lTP7nnxkFfbqGnLas5J1E7XgPU2Mtvp57IAKVFLzHUu9sLMjaxBZQOe9A/hYoUWyWw==", + "type": "package", + "path": "microsoft.testplatform.adapterutilities/18.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net462/Microsoft.TestPlatform.AdapterUtilities.dll", + "lib/net462/cs/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net462/de/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net462/es/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net462/fr/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net462/it/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net462/ja/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net462/ko/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net462/pl/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net462/pt-BR/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net462/ru/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net462/tr/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net462/zh-Hans/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net462/zh-Hant/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net8.0/Microsoft.TestPlatform.AdapterUtilities.dll", + "lib/net8.0/cs/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net8.0/de/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net8.0/es/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net8.0/fr/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net8.0/it/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net8.0/ja/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net8.0/ko/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net8.0/pl/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net8.0/pt-BR/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net8.0/ru/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net8.0/tr/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net9.0/Microsoft.TestPlatform.AdapterUtilities.dll", + "lib/net9.0/cs/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net9.0/de/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net9.0/es/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net9.0/fr/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net9.0/it/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net9.0/ja/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net9.0/ko/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net9.0/pl/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net9.0/pt-BR/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net9.0/ru/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net9.0/tr/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/netstandard2.0/Microsoft.TestPlatform.AdapterUtilities.dll", + "lib/netstandard2.0/cs/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/netstandard2.0/de/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/netstandard2.0/es/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/netstandard2.0/fr/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/netstandard2.0/it/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/netstandard2.0/ja/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/netstandard2.0/ko/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/netstandard2.0/pl/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/netstandard2.0/ru/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/netstandard2.0/tr/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "microsoft.testplatform.adapterutilities.18.0.0.nupkg.sha512", + "microsoft.testplatform.adapterutilities.nuspec" + ] + }, + "Microsoft.TestPlatform.ObjectModel/18.0.0": { + "sha512": "Al/a99ymb8UdEEh6DKNiaoFn5i8fvX5PdM9LfU9Z/Q8NJrlyHHzF+LRHLbR+t89gRsJ2fFMpwYxgEn3eH1BQwA==", + "type": "package", + "path": "microsoft.testplatform.objectmodel/18.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net462/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/net462/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/net462/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/net462/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "microsoft.testplatform.objectmodel.18.0.0.nupkg.sha512", + "microsoft.testplatform.objectmodel.nuspec" + ] + }, + "Microsoft.TestPlatform.TestHost/18.0.0": { + "sha512": "aAxE8Thr9ZHGrljOYaDeLJqitQi75iE4xeEFn6CEGFirlHSn1KwpKPniuEn6zCLZ90Z3XqNlrC3ZJTuvBov45w==", + "type": "package", + "path": "microsoft.testplatform.testhost/18.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.txt", + "build/net8.0/Microsoft.TestPlatform.TestHost.props", + "build/net8.0/Microsoft.TestPlatform.TestHost.targets", + "build/net8.0/x64/testhost.dll", + "build/net8.0/x64/testhost.exe", + "build/net8.0/x86/testhost.x86.dll", + "build/net8.0/x86/testhost.x86.exe", + "lib/net462/_._", + "lib/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll", + "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll", + "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/net8.0/Microsoft.TestPlatform.Utilities.dll", + "lib/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll", + "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/net8.0/testhost.deps.json", + "lib/net8.0/testhost.dll", + "lib/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/net8.0/x64/msdia140.dll", + "lib/net8.0/x86/msdia140.dll", + "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "microsoft.testplatform.testhost.18.0.0.nupkg.sha512", + "microsoft.testplatform.testhost.nuspec" + ] + }, + "MSTest/4.0.1": { + "sha512": "kCFrH0B7R5l1mE13qTn2vzLoeSPmJgwylf2ccEym4SsvdHtSCCgKBeYgaOxPLZWDW4NJJBpETTMub0qxkgMOQQ==", + "type": "package", + "path": "mstest/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net462/_._", + "lib/net8.0/_._", + "lib/net9.0/_._", + "lib/uap10.0.16299/_._", + "mstest.4.0.1.nupkg.sha512", + "mstest.nuspec" + ] + }, + "MSTest.Analyzers/4.0.1": { + "sha512": "SFYBSnZ2O5n+JZ6dYGig0rV8maAYYSAk8SpYbAvCl8XqJ2H1+Z6Su9AI4llW+RMJtmDDRUZ3JgaGih/MMgQkOw==", + "type": "package", + "path": "mstest.analyzers/4.0.1", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "analyzers/dotnet/cs/MSTest.Analyzers.CodeFixes.dll", + "analyzers/dotnet/cs/MSTest.Analyzers.dll", + "analyzers/dotnet/cs/cs/MSTest.Analyzers.CodeFixes.resources.dll", + "analyzers/dotnet/cs/cs/MSTest.Analyzers.resources.dll", + "analyzers/dotnet/cs/de/MSTest.Analyzers.CodeFixes.resources.dll", + "analyzers/dotnet/cs/de/MSTest.Analyzers.resources.dll", + "analyzers/dotnet/cs/es/MSTest.Analyzers.CodeFixes.resources.dll", + "analyzers/dotnet/cs/es/MSTest.Analyzers.resources.dll", + "analyzers/dotnet/cs/fr/MSTest.Analyzers.CodeFixes.resources.dll", + "analyzers/dotnet/cs/fr/MSTest.Analyzers.resources.dll", + "analyzers/dotnet/cs/it/MSTest.Analyzers.CodeFixes.resources.dll", + "analyzers/dotnet/cs/it/MSTest.Analyzers.resources.dll", + "analyzers/dotnet/cs/ja/MSTest.Analyzers.CodeFixes.resources.dll", + "analyzers/dotnet/cs/ja/MSTest.Analyzers.resources.dll", + "analyzers/dotnet/cs/ko/MSTest.Analyzers.CodeFixes.resources.dll", + "analyzers/dotnet/cs/ko/MSTest.Analyzers.resources.dll", + "analyzers/dotnet/cs/pl/MSTest.Analyzers.CodeFixes.resources.dll", + "analyzers/dotnet/cs/pl/MSTest.Analyzers.resources.dll", + "analyzers/dotnet/cs/pt-BR/MSTest.Analyzers.CodeFixes.resources.dll", + "analyzers/dotnet/cs/pt-BR/MSTest.Analyzers.resources.dll", + "analyzers/dotnet/cs/ru/MSTest.Analyzers.CodeFixes.resources.dll", + "analyzers/dotnet/cs/ru/MSTest.Analyzers.resources.dll", + "analyzers/dotnet/cs/tr/MSTest.Analyzers.CodeFixes.resources.dll", + "analyzers/dotnet/cs/tr/MSTest.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hans/MSTest.Analyzers.CodeFixes.resources.dll", + "analyzers/dotnet/cs/zh-Hans/MSTest.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hant/MSTest.Analyzers.CodeFixes.resources.dll", + "analyzers/dotnet/cs/zh-Hant/MSTest.Analyzers.resources.dll", + "analyzers/dotnet/vb/MSTest.Analyzers.dll", + "analyzers/dotnet/vb/cs/MSTest.Analyzers.resources.dll", + "analyzers/dotnet/vb/de/MSTest.Analyzers.resources.dll", + "analyzers/dotnet/vb/es/MSTest.Analyzers.resources.dll", + "analyzers/dotnet/vb/fr/MSTest.Analyzers.resources.dll", + "analyzers/dotnet/vb/it/MSTest.Analyzers.resources.dll", + "analyzers/dotnet/vb/ja/MSTest.Analyzers.resources.dll", + "analyzers/dotnet/vb/ko/MSTest.Analyzers.resources.dll", + "analyzers/dotnet/vb/pl/MSTest.Analyzers.resources.dll", + "analyzers/dotnet/vb/pt-BR/MSTest.Analyzers.resources.dll", + "analyzers/dotnet/vb/ru/MSTest.Analyzers.resources.dll", + "analyzers/dotnet/vb/tr/MSTest.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hans/MSTest.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hant/MSTest.Analyzers.resources.dll", + "buildTransitive/MSTest.Analyzers.props", + "buildTransitive/MSTest.Analyzers.targets", + "globalconfigs/mstest-all.globalconfig", + "globalconfigs/mstest-default.globalconfig", + "globalconfigs/mstest-none.globalconfig", + "globalconfigs/mstest-recommended.globalconfig", + "mstest.analyzers.4.0.1.nupkg.sha512", + "mstest.analyzers.nuspec", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "MSTest.TestAdapter/4.0.1": { + "sha512": "c5a2Dg/rxsB7pWwTMhULlHAmrNZtHC8xFa7LGxBQHdt80vMZ2Ez9PSHvkWAmxZhC5ma9GuJ89KCieRA8cJykPQ==", + "type": "package", + "path": "mstest.testadapter/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "build/net462/MSTest.TestAdapter.props", + "build/net462/MSTest.TestAdapter.targets", + "build/net8.0/MSTest.TestAdapter.props", + "build/net8.0/MSTest.TestAdapter.targets", + "build/net9.0/MSTest.TestAdapter.props", + "build/net9.0/MSTest.TestAdapter.targets", + "build/uap10.0/MSTest.TestAdapter.props", + "build/uap10.0/MSTest.TestAdapter.targets", + "buildTransitive/_localization/cs/MSTestAdapter.PlatformServices.resources.dll", + "buildTransitive/_localization/de/MSTestAdapter.PlatformServices.resources.dll", + "buildTransitive/_localization/es/MSTestAdapter.PlatformServices.resources.dll", + "buildTransitive/_localization/fr/MSTestAdapter.PlatformServices.resources.dll", + "buildTransitive/_localization/it/MSTestAdapter.PlatformServices.resources.dll", + "buildTransitive/_localization/ja/MSTestAdapter.PlatformServices.resources.dll", + "buildTransitive/_localization/ko/MSTestAdapter.PlatformServices.resources.dll", + "buildTransitive/_localization/pl/MSTestAdapter.PlatformServices.resources.dll", + "buildTransitive/_localization/pt-BR/MSTestAdapter.PlatformServices.resources.dll", + "buildTransitive/_localization/ru/MSTestAdapter.PlatformServices.resources.dll", + "buildTransitive/_localization/tr/MSTestAdapter.PlatformServices.resources.dll", + "buildTransitive/_localization/zh-Hans/MSTestAdapter.PlatformServices.resources.dll", + "buildTransitive/_localization/zh-Hant/MSTestAdapter.PlatformServices.resources.dll", + "buildTransitive/net462/MSTest.TestAdapter.dll", + "buildTransitive/net462/MSTest.TestAdapter.props", + "buildTransitive/net462/MSTest.TestAdapter.targets", + "buildTransitive/net462/MSTest.TestFramework.Extensions.dll", + "buildTransitive/net462/MSTest.TestFramework.dll", + "buildTransitive/net462/MSTestAdapter.PlatformServices.dll", + "buildTransitive/net462/Microsoft.TestPlatform.AdapterUtilities.dll", + "buildTransitive/net8.0/MSTest.TestAdapter.dll", + "buildTransitive/net8.0/MSTest.TestAdapter.props", + "buildTransitive/net8.0/MSTest.TestAdapter.targets", + "buildTransitive/net8.0/MSTestAdapter.PlatformServices.dll", + "buildTransitive/net8.0/Microsoft.TestPlatform.AdapterUtilities.dll", + "buildTransitive/net8.0/winui/MSTest.TestAdapter.dll", + "buildTransitive/net8.0/winui/MSTestAdapter.PlatformServices.dll", + "buildTransitive/net9.0/MSTest.TestAdapter.dll", + "buildTransitive/net9.0/MSTest.TestAdapter.props", + "buildTransitive/net9.0/MSTest.TestAdapter.targets", + "buildTransitive/net9.0/MSTestAdapter.PlatformServices.dll", + "buildTransitive/net9.0/Microsoft.TestPlatform.AdapterUtilities.dll", + "buildTransitive/net9.0/uwp/MSTest.TestAdapter.dll", + "buildTransitive/net9.0/uwp/MSTestAdapter.PlatformServices.dll", + "buildTransitive/uap10.0/MSTest.TestAdapter.dll", + "buildTransitive/uap10.0/MSTest.TestAdapter.props", + "buildTransitive/uap10.0/MSTest.TestAdapter.targets", + "buildTransitive/uap10.0/MSTestAdapter.PlatformServices.dll", + "buildTransitive/uap10.0/Microsoft.TestPlatform.AdapterUtilities.dll", + "mstest.testadapter.4.0.1.nupkg.sha512", + "mstest.testadapter.nuspec" + ] + }, + "MSTest.TestFramework/4.0.1": { + "sha512": "uXIBT47UAQcga6sfflqFvo1rkmHQESIhDvtusMWqhOef9nZhJF8UslfOZoIBV8q6uv9WOehSZ5fBBB4SNZWnBg==", + "type": "package", + "path": "mstest.testframework/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "build/net462/MSTest.TestFramework.targets", + "build/net8.0/MSTest.TestFramework.targets", + "build/net9.0/MSTest.TestFramework.targets", + "build/netstandard2.0/MSTest.TestFramework.targets", + "build/uap10.0/MSTest.TestFramework.targets", + "buildTransitive/net462/MSTest.TestFramework.targets", + "buildTransitive/net8.0/MSTest.TestFramework.Extensions.dll", + "buildTransitive/net8.0/MSTest.TestFramework.Extensions.xml", + "buildTransitive/net8.0/MSTest.TestFramework.targets", + "buildTransitive/net8.0/winui/MSTest.TestFramework.Extensions.dll", + "buildTransitive/net8.0/winui/MSTest.TestFramework.Extensions.xml", + "buildTransitive/net9.0/MSTest.TestFramework.Extensions.dll", + "buildTransitive/net9.0/MSTest.TestFramework.Extensions.xml", + "buildTransitive/net9.0/MSTest.TestFramework.targets", + "buildTransitive/net9.0/uwp/MSTest.TestFramework.Extensions.dll", + "buildTransitive/net9.0/uwp/MSTest.TestFramework.Extensions.xml", + "buildTransitive/netstandard2.0/MSTest.TestFramework.targets", + "buildTransitive/uap10.0/MSTest.TestFramework.targets", + "lib/net462/MSTest.TestFramework.Extensions.dll", + "lib/net462/MSTest.TestFramework.Extensions.xml", + "lib/net462/MSTest.TestFramework.dll", + "lib/net462/MSTest.TestFramework.xml", + "lib/net462/cs/MSTest.TestFramework.resources.dll", + "lib/net462/de/MSTest.TestFramework.resources.dll", + "lib/net462/es/MSTest.TestFramework.resources.dll", + "lib/net462/fr/MSTest.TestFramework.resources.dll", + "lib/net462/it/MSTest.TestFramework.resources.dll", + "lib/net462/ja/MSTest.TestFramework.resources.dll", + "lib/net462/ko/MSTest.TestFramework.resources.dll", + "lib/net462/pl/MSTest.TestFramework.resources.dll", + "lib/net462/pt-BR/MSTest.TestFramework.resources.dll", + "lib/net462/ru/MSTest.TestFramework.resources.dll", + "lib/net462/tr/MSTest.TestFramework.resources.dll", + "lib/net462/zh-Hans/MSTest.TestFramework.resources.dll", + "lib/net462/zh-Hant/MSTest.TestFramework.resources.dll", + "lib/net8.0/MSTest.TestFramework.dll", + "lib/net8.0/MSTest.TestFramework.xml", + "lib/net8.0/cs/MSTest.TestFramework.resources.dll", + "lib/net8.0/de/MSTest.TestFramework.resources.dll", + "lib/net8.0/es/MSTest.TestFramework.resources.dll", + "lib/net8.0/fr/MSTest.TestFramework.resources.dll", + "lib/net8.0/it/MSTest.TestFramework.resources.dll", + "lib/net8.0/ja/MSTest.TestFramework.resources.dll", + "lib/net8.0/ko/MSTest.TestFramework.resources.dll", + "lib/net8.0/pl/MSTest.TestFramework.resources.dll", + "lib/net8.0/pt-BR/MSTest.TestFramework.resources.dll", + "lib/net8.0/ru/MSTest.TestFramework.resources.dll", + "lib/net8.0/tr/MSTest.TestFramework.resources.dll", + "lib/net8.0/zh-Hans/MSTest.TestFramework.resources.dll", + "lib/net8.0/zh-Hant/MSTest.TestFramework.resources.dll", + "lib/net9.0/MSTest.TestFramework.dll", + "lib/net9.0/MSTest.TestFramework.xml", + "lib/net9.0/cs/MSTest.TestFramework.resources.dll", + "lib/net9.0/de/MSTest.TestFramework.resources.dll", + "lib/net9.0/es/MSTest.TestFramework.resources.dll", + "lib/net9.0/fr/MSTest.TestFramework.resources.dll", + "lib/net9.0/it/MSTest.TestFramework.resources.dll", + "lib/net9.0/ja/MSTest.TestFramework.resources.dll", + "lib/net9.0/ko/MSTest.TestFramework.resources.dll", + "lib/net9.0/pl/MSTest.TestFramework.resources.dll", + "lib/net9.0/pt-BR/MSTest.TestFramework.resources.dll", + "lib/net9.0/ru/MSTest.TestFramework.resources.dll", + "lib/net9.0/tr/MSTest.TestFramework.resources.dll", + "lib/net9.0/zh-Hans/MSTest.TestFramework.resources.dll", + "lib/net9.0/zh-Hant/MSTest.TestFramework.resources.dll", + "lib/netstandard2.0/MSTest.TestFramework.Extensions.dll", + "lib/netstandard2.0/MSTest.TestFramework.Extensions.xml", + "lib/netstandard2.0/MSTest.TestFramework.dll", + "lib/netstandard2.0/MSTest.TestFramework.xml", + "lib/netstandard2.0/cs/MSTest.TestFramework.resources.dll", + "lib/netstandard2.0/de/MSTest.TestFramework.resources.dll", + "lib/netstandard2.0/es/MSTest.TestFramework.resources.dll", + "lib/netstandard2.0/fr/MSTest.TestFramework.resources.dll", + "lib/netstandard2.0/it/MSTest.TestFramework.resources.dll", + "lib/netstandard2.0/ja/MSTest.TestFramework.resources.dll", + "lib/netstandard2.0/ko/MSTest.TestFramework.resources.dll", + "lib/netstandard2.0/pl/MSTest.TestFramework.resources.dll", + "lib/netstandard2.0/pt-BR/MSTest.TestFramework.resources.dll", + "lib/netstandard2.0/ru/MSTest.TestFramework.resources.dll", + "lib/netstandard2.0/tr/MSTest.TestFramework.resources.dll", + "lib/netstandard2.0/zh-Hans/MSTest.TestFramework.resources.dll", + "lib/netstandard2.0/zh-Hant/MSTest.TestFramework.resources.dll", + "lib/uap10.0/MSTest.TestFramework.Extensions.dll", + "lib/uap10.0/MSTest.TestFramework.Extensions.xml", + "lib/uap10.0/MSTest.TestFramework.dll", + "lib/uap10.0/MSTest.TestFramework.xml", + "lib/uap10.0/cs/MSTest.TestFramework.resources.dll", + "lib/uap10.0/de/MSTest.TestFramework.resources.dll", + "lib/uap10.0/es/MSTest.TestFramework.resources.dll", + "lib/uap10.0/fr/MSTest.TestFramework.resources.dll", + "lib/uap10.0/it/MSTest.TestFramework.resources.dll", + "lib/uap10.0/ja/MSTest.TestFramework.resources.dll", + "lib/uap10.0/ko/MSTest.TestFramework.resources.dll", + "lib/uap10.0/pl/MSTest.TestFramework.resources.dll", + "lib/uap10.0/pt-BR/MSTest.TestFramework.resources.dll", + "lib/uap10.0/ru/MSTest.TestFramework.resources.dll", + "lib/uap10.0/tr/MSTest.TestFramework.resources.dll", + "lib/uap10.0/zh-Hans/MSTest.TestFramework.resources.dll", + "lib/uap10.0/zh-Hant/MSTest.TestFramework.resources.dll", + "mstest.testframework.4.0.1.nupkg.sha512", + "mstest.testframework.nuspec" + ] + }, + "Newtonsoft.Json/13.0.3": { + "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "type": "package", + "path": "newtonsoft.json/13.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/net6.0/Newtonsoft.Json.dll", + "lib/net6.0/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.3.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "SortingModel/1.0.0": { + "type": "project", + "path": "../Sorting/SortingModel.csproj", + "msbuildProject": "../Sorting/SortingModel.csproj" + } + }, + "projectFileDependencyGroups": { + "net10.0": [ + "MSTest >= 4.0.1", + "SortingModel >= 1.0.0" + ] + }, + "packageFolders": { + "C:\\Users\\Jesus\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Jesus\\source\\repos\\TextSort\\Testing\\Testing.csproj", + "projectName": "Testing", + "projectPath": "C:\\Users\\Jesus\\source\\repos\\TextSort\\Testing\\Testing.csproj", + "packagesPath": "C:\\Users\\Jesus\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Jesus\\source\\repos\\TextSort\\Testing\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Jesus\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "C:\\Users\\Jesus\\source\\repos\\TextSort\\Sorting\\SortingModel.csproj": { + "projectPath": "C:\\Users\\Jesus\\source\\repos\\TextSort\\Sorting\\SortingModel.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "MSTest": { + "target": "Package", + "version": "[4.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.101/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } +} \ No newline at end of file diff --git a/Testing/obj/project.nuget.cache b/Testing/obj/project.nuget.cache new file mode 100644 index 0000000..f440970 --- /dev/null +++ b/Testing/obj/project.nuget.cache @@ -0,0 +1,29 @@ +{ + "version": 2, + "dgSpecHash": "ETfShsSmhJI=", + "success": true, + "projectFilePath": "C:\\Users\\Jesus\\source\\repos\\TextSort\\Testing\\Testing.csproj", + "expectedPackageFiles": [ + "C:\\Users\\Jesus\\.nuget\\packages\\microsoft.applicationinsights\\2.23.0\\microsoft.applicationinsights.2.23.0.nupkg.sha512", + "C:\\Users\\Jesus\\.nuget\\packages\\microsoft.codecoverage\\18.0.0\\microsoft.codecoverage.18.0.0.nupkg.sha512", + "C:\\Users\\Jesus\\.nuget\\packages\\microsoft.diasymreader\\2.0.0\\microsoft.diasymreader.2.0.0.nupkg.sha512", + "C:\\Users\\Jesus\\.nuget\\packages\\microsoft.extensions.dependencymodel\\6.0.2\\microsoft.extensions.dependencymodel.6.0.2.nupkg.sha512", + "C:\\Users\\Jesus\\.nuget\\packages\\microsoft.net.test.sdk\\18.0.0\\microsoft.net.test.sdk.18.0.0.nupkg.sha512", + "C:\\Users\\Jesus\\.nuget\\packages\\microsoft.testing.extensions.codecoverage\\18.1.0\\microsoft.testing.extensions.codecoverage.18.1.0.nupkg.sha512", + "C:\\Users\\Jesus\\.nuget\\packages\\microsoft.testing.extensions.telemetry\\2.0.1\\microsoft.testing.extensions.telemetry.2.0.1.nupkg.sha512", + "C:\\Users\\Jesus\\.nuget\\packages\\microsoft.testing.extensions.trxreport\\2.0.1\\microsoft.testing.extensions.trxreport.2.0.1.nupkg.sha512", + "C:\\Users\\Jesus\\.nuget\\packages\\microsoft.testing.extensions.trxreport.abstractions\\2.0.1\\microsoft.testing.extensions.trxreport.abstractions.2.0.1.nupkg.sha512", + "C:\\Users\\Jesus\\.nuget\\packages\\microsoft.testing.extensions.vstestbridge\\2.0.1\\microsoft.testing.extensions.vstestbridge.2.0.1.nupkg.sha512", + "C:\\Users\\Jesus\\.nuget\\packages\\microsoft.testing.platform\\2.0.1\\microsoft.testing.platform.2.0.1.nupkg.sha512", + "C:\\Users\\Jesus\\.nuget\\packages\\microsoft.testing.platform.msbuild\\2.0.1\\microsoft.testing.platform.msbuild.2.0.1.nupkg.sha512", + "C:\\Users\\Jesus\\.nuget\\packages\\microsoft.testplatform.adapterutilities\\18.0.0\\microsoft.testplatform.adapterutilities.18.0.0.nupkg.sha512", + "C:\\Users\\Jesus\\.nuget\\packages\\microsoft.testplatform.objectmodel\\18.0.0\\microsoft.testplatform.objectmodel.18.0.0.nupkg.sha512", + "C:\\Users\\Jesus\\.nuget\\packages\\microsoft.testplatform.testhost\\18.0.0\\microsoft.testplatform.testhost.18.0.0.nupkg.sha512", + "C:\\Users\\Jesus\\.nuget\\packages\\mstest\\4.0.1\\mstest.4.0.1.nupkg.sha512", + "C:\\Users\\Jesus\\.nuget\\packages\\mstest.analyzers\\4.0.1\\mstest.analyzers.4.0.1.nupkg.sha512", + "C:\\Users\\Jesus\\.nuget\\packages\\mstest.testadapter\\4.0.1\\mstest.testadapter.4.0.1.nupkg.sha512", + "C:\\Users\\Jesus\\.nuget\\packages\\mstest.testframework\\4.0.1\\mstest.testframework.4.0.1.nupkg.sha512", + "C:\\Users\\Jesus\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/TextSort.slnx b/TextSort.slnx new file mode 100644 index 0000000..870eac7 --- /dev/null +++ b/TextSort.slnx @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/TextSort/ISortWindow.cs b/TextSort/ISortWindow.cs new file mode 100644 index 0000000..33f662e --- /dev/null +++ b/TextSort/ISortWindow.cs @@ -0,0 +1,14 @@ +using System.Collections.ObjectModel; + +namespace TextSortWindow +{ + public interface ISortWindow + { + string InputText { get; } + string SelectedStrategy { get; } + void DisplaySortedText(string sortedText); + void SetSortOptions(List options); + void DisplayTime(double milliseconds); + event EventHandler SortButtonClicked; + } +} diff --git a/TextSort/Program.cs b/TextSort/Program.cs new file mode 100644 index 0000000..349f27b --- /dev/null +++ b/TextSort/Program.cs @@ -0,0 +1,21 @@ +using SortingModel; +using SortingModel.SortingAlgorithms; +using TextSortWindow; + +namespace TextSort +{ + internal static class Program + { + [STAThread] + static void Main() + { + ApplicationConfiguration.Initialize(); + + using Window view = new(); + SortingService model = new(new SortingAlgorithmFactory()); + SortController controller = new(view, model); + + Application.Run(view); + } + } +} \ No newline at end of file diff --git a/TextSort/SortController.cs b/TextSort/SortController.cs new file mode 100644 index 0000000..0bdd937 --- /dev/null +++ b/TextSort/SortController.cs @@ -0,0 +1,45 @@ +using SortingModel; +using System.Diagnostics; + +namespace TextSortWindow +{ + public class SortController + { + private readonly ISortWindow _view; + private readonly ISortingService _model; + + public SortController(ISortWindow view, ISortingService model) + { + this._view = view; + this._model = model; + + List sortOptions = _model.GetAvailableAlgorithmNames().ToList(); + _view.SetSortOptions(sortOptions); + + _view.SortButtonClicked += OnSortRequested; + } + + private async void OnSortRequested(object? sender, EventArgs e) + { + try + { + string inputText = _view.InputText; + string strategy = _view.SelectedStrategy ?? string.Empty; + + Stopwatch watch = Stopwatch.StartNew(); + string sortedText = await Task.Run(() => _model.SortText(inputText, strategy)).ConfigureAwait(true); + watch.Stop(); + _view.DisplaySortedText(sortedText); + _view.DisplayTime(watch.Elapsed.TotalMilliseconds); + } + catch (ArgumentException ex) + { + _view.DisplaySortedText($"Error: {ex.Message}"); + } + catch (InvalidOperationException ex) + { + _view.DisplaySortedText($"Error: {ex.Message}"); + } + } + } +} diff --git a/TextSort/TextSortWindow.csproj b/TextSort/TextSortWindow.csproj new file mode 100644 index 0000000..2840098 --- /dev/null +++ b/TextSort/TextSortWindow.csproj @@ -0,0 +1,19 @@ + + + + WinExe + net10.0-windows + enable + true + enable + + All + true + latest + + + + + + + \ No newline at end of file diff --git a/TextSort/TextSortWindow.csproj.user b/TextSort/TextSortWindow.csproj.user new file mode 100644 index 0000000..a639822 --- /dev/null +++ b/TextSort/TextSortWindow.csproj.user @@ -0,0 +1,9 @@ + + + + + + Form + + + \ No newline at end of file diff --git a/TextSort/Window.Designer.cs b/TextSort/Window.Designer.cs new file mode 100644 index 0000000..3150965 --- /dev/null +++ b/TextSort/Window.Designer.cs @@ -0,0 +1,132 @@ +namespace TextSort +{ + partial class Window + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + InputLabel = new Label(); + InputTextBox = new TextBox(); + SortAlgorithmLabel = new Label(); + SortAlgorithmComboBox = new ComboBox(); + OutputLabel = new Label(); + SortButton = new Button(); + TimeLabel = new Label(); + SuspendLayout(); + // + // InputLabel + // + InputLabel.AutoSize = true; + InputLabel.Location = new Point(12, 24); + InputLabel.Name = "InputLabel"; + InputLabel.Size = new Size(59, 15); + InputLabel.TabIndex = 0; + InputLabel.Text = "Input Text"; + // + // InputTextBox + // + InputTextBox.Location = new Point(103, 21); + InputTextBox.Name = "InputTextBox"; + InputTextBox.Size = new Size(265, 23); + InputTextBox.TabIndex = 1; + // + // SortAlgorithmLabel + // + SortAlgorithmLabel.AutoSize = true; + SortAlgorithmLabel.Location = new Point(12, 56); + SortAlgorithmLabel.Name = "SortAlgorithmLabel"; + SortAlgorithmLabel.Size = new Size(85, 15); + SortAlgorithmLabel.TabIndex = 2; + SortAlgorithmLabel.Text = "Sort Algorithm"; + // + // SortAlgorithmComboBox + // + SortAlgorithmComboBox.FormattingEnabled = true; + SortAlgorithmComboBox.Location = new Point(103, 53); + SortAlgorithmComboBox.Name = "SortAlgorithmComboBox"; + SortAlgorithmComboBox.Size = new Size(265, 23); + SortAlgorithmComboBox.TabIndex = 3; + // + // OutputLabel + // + OutputLabel.BorderStyle = BorderStyle.Fixed3D; + OutputLabel.Location = new Point(12, 89); + OutputLabel.Name = "OutputLabel"; + OutputLabel.Size = new Size(356, 79); + OutputLabel.TabIndex = 4; + // + // SortButton + // + SortButton.Anchor = AnchorStyles.None; + SortButton.Cursor = Cursors.Hand; + SortButton.Location = new Point(158, 178); + SortButton.Margin = new Padding(0); + SortButton.Name = "SortButton"; + SortButton.Size = new Size(75, 23); + SortButton.TabIndex = 5; + SortButton.Text = "Sort"; + SortButton.UseVisualStyleBackColor = true; + SortButton.Click += SortButton_Click; + // + // TimeLabel + // + TimeLabel.BorderStyle = BorderStyle.Fixed3D; + TimeLabel.Location = new Point(12, 181); + TimeLabel.Name = "TimeLabel"; + TimeLabel.Size = new Size(100, 18); + TimeLabel.TabIndex = 6; + // + // Window + // + AutoScaleDimensions = new SizeF(7F, 15F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(380, 215); + Controls.Add(TimeLabel); + Controls.Add(SortButton); + Controls.Add(OutputLabel); + Controls.Add(SortAlgorithmComboBox); + Controls.Add(SortAlgorithmLabel); + Controls.Add(InputTextBox); + Controls.Add(InputLabel); + FormBorderStyle = FormBorderStyle.FixedSingle; + MaximizeBox = false; + Name = "Window"; + Text = "Text Sort"; + ResumeLayout(false); + PerformLayout(); + } + + #endregion + + private Label InputLabel; + private TextBox InputTextBox; + private Label SortAlgorithmLabel; + private ComboBox SortAlgorithmComboBox; + private Label OutputLabel; + private Button SortButton; + private Label TimeLabel; + } +} diff --git a/TextSort/Window.cs b/TextSort/Window.cs new file mode 100644 index 0000000..d1f20d6 --- /dev/null +++ b/TextSort/Window.cs @@ -0,0 +1,37 @@ +using System.Collections.ObjectModel; +using TextSortWindow; + +namespace TextSort +{ + public partial class Window : Form, ISortWindow + { + public string InputText => InputTextBox.Text; + public string SelectedStrategy => SortAlgorithmComboBox.SelectedItem?.ToString() ?? ""; + public event EventHandler? SortButtonClicked; + + public Window() + { + InitializeComponent(); + } + + public void DisplaySortedText(string sortedText) + { + OutputLabel.Text = sortedText; + } + + public void DisplayTime(double milliseconds) + { + TimeLabel.Text = $"{milliseconds} ms"; + } + + public void SetSortOptions(List options) + { + SortAlgorithmComboBox.DataSource = options; + } + + private void SortButton_Click(object sender, EventArgs e) + { + SortButtonClicked?.Invoke(this, EventArgs.Empty); + } + } +} diff --git a/TextSort/Window.resx b/TextSort/Window.resx new file mode 100644 index 0000000..8b2ff64 --- /dev/null +++ b/TextSort/Window.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/TextSort/bin/Debug/net10.0-windows/SortingModel.dll b/TextSort/bin/Debug/net10.0-windows/SortingModel.dll new file mode 100644 index 0000000..77caa00 Binary files /dev/null and b/TextSort/bin/Debug/net10.0-windows/SortingModel.dll differ diff --git a/TextSort/bin/Debug/net10.0-windows/SortingModel.pdb b/TextSort/bin/Debug/net10.0-windows/SortingModel.pdb new file mode 100644 index 0000000..c3aa777 Binary files /dev/null and b/TextSort/bin/Debug/net10.0-windows/SortingModel.pdb differ diff --git a/TextSort/bin/Debug/net10.0-windows/TextSortWindow.deps.json b/TextSort/bin/Debug/net10.0-windows/TextSortWindow.deps.json new file mode 100644 index 0000000..d52fcd4 --- /dev/null +++ b/TextSort/bin/Debug/net10.0-windows/TextSortWindow.deps.json @@ -0,0 +1,39 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "TextSortWindow/1.0.0": { + "dependencies": { + "SortingModel": "1.0.0" + }, + "runtime": { + "TextSortWindow.dll": {} + } + }, + "SortingModel/1.0.0": { + "runtime": { + "SortingModel.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "TextSortWindow/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "SortingModel/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/TextSort/bin/Debug/net10.0-windows/TextSortWindow.dll b/TextSort/bin/Debug/net10.0-windows/TextSortWindow.dll new file mode 100644 index 0000000..ca6ce44 Binary files /dev/null and b/TextSort/bin/Debug/net10.0-windows/TextSortWindow.dll differ diff --git a/TextSort/bin/Debug/net10.0-windows/TextSortWindow.exe b/TextSort/bin/Debug/net10.0-windows/TextSortWindow.exe new file mode 100644 index 0000000..a35dbbc Binary files /dev/null and b/TextSort/bin/Debug/net10.0-windows/TextSortWindow.exe differ diff --git a/TextSort/bin/Debug/net10.0-windows/TextSortWindow.pdb b/TextSort/bin/Debug/net10.0-windows/TextSortWindow.pdb new file mode 100644 index 0000000..a3b029a Binary files /dev/null and b/TextSort/bin/Debug/net10.0-windows/TextSortWindow.pdb differ diff --git a/TextSort/bin/Debug/net10.0-windows/TextSortWindow.runtimeconfig.json b/TextSort/bin/Debug/net10.0-windows/TextSortWindow.runtimeconfig.json new file mode 100644 index 0000000..3c285dd --- /dev/null +++ b/TextSort/bin/Debug/net10.0-windows/TextSortWindow.runtimeconfig.json @@ -0,0 +1,19 @@ +{ + "runtimeOptions": { + "tfm": "net10.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "10.0.0" + }, + { + "name": "Microsoft.WindowsDesktop.App", + "version": "10.0.0" + } + ], + "configProperties": { + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false, + "CSWINRT_USE_WINDOWS_UI_XAML_PROJECTIONS": false + } + } +} \ No newline at end of file diff --git a/TextSort/obj/Debug/net10.0-windows/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/TextSort/obj/Debug/net10.0-windows/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/TextSort/obj/Debug/net10.0-windows/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/TextSort/obj/Debug/net10.0-windows/TextSort.4DF5CAE5.Up2Date b/TextSort/obj/Debug/net10.0-windows/TextSort.4DF5CAE5.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/TextSort/obj/Debug/net10.0-windows/TextSort.Window.resources b/TextSort/obj/Debug/net10.0-windows/TextSort.Window.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/TextSort/obj/Debug/net10.0-windows/TextSort.Window.resources differ diff --git a/TextSort/obj/Debug/net10.0-windows/TextSortWindow.AssemblyInfo.cs b/TextSort/obj/Debug/net10.0-windows/TextSortWindow.AssemblyInfo.cs new file mode 100644 index 0000000..0e0e6ae --- /dev/null +++ b/TextSort/obj/Debug/net10.0-windows/TextSortWindow.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("TextSortWindow")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("TextSortWindow")] +[assembly: System.Reflection.AssemblyTitleAttribute("TextSortWindow")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/TextSort/obj/Debug/net10.0-windows/TextSortWindow.AssemblyInfoInputs.cache b/TextSort/obj/Debug/net10.0-windows/TextSortWindow.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6a7fdbf --- /dev/null +++ b/TextSort/obj/Debug/net10.0-windows/TextSortWindow.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +cecc30619a5ddc7838cf629383d913fae7ed69aa20e2f50fde0e506f68498bf8 diff --git a/TextSort/obj/Debug/net10.0-windows/TextSortWindow.GeneratedMSBuildEditorConfig.editorconfig b/TextSort/obj/Debug/net10.0-windows/TextSortWindow.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d5a36fb --- /dev/null +++ b/TextSort/obj/Debug/net10.0-windows/TextSortWindow.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,24 @@ +is_global = true +build_property.ApplicationManifest = +build_property.StartupObject = +build_property.ApplicationDefaultFont = +build_property.ApplicationHighDpiMode = +build_property.ApplicationUseCompatibleTextRendering = +build_property.ApplicationVisualStyles = +build_property.TargetFramework = net10.0-windows +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.0 +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = TextSortWindow +build_property.ProjectDir = C:\Users\Jesus\source\repos\TextSort\TextSort\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.CsWinRTUseWindowsUIXamlProjections = false +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = diff --git a/TextSort/obj/Debug/net10.0-windows/TextSortWindow.GlobalUsings.g.cs b/TextSort/obj/Debug/net10.0-windows/TextSortWindow.GlobalUsings.g.cs new file mode 100644 index 0000000..18cabb0 --- /dev/null +++ b/TextSort/obj/Debug/net10.0-windows/TextSortWindow.GlobalUsings.g.cs @@ -0,0 +1,10 @@ +// +global using System; +global using System.Collections.Generic; +global using System.Drawing; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Threading; +global using System.Threading.Tasks; +global using System.Windows.Forms; diff --git a/TextSort/obj/Debug/net10.0-windows/TextSortWindow.assets.cache b/TextSort/obj/Debug/net10.0-windows/TextSortWindow.assets.cache new file mode 100644 index 0000000..7e387a7 Binary files /dev/null and b/TextSort/obj/Debug/net10.0-windows/TextSortWindow.assets.cache differ diff --git a/TextSort/obj/Debug/net10.0-windows/TextSortWindow.csproj.AssemblyReference.cache b/TextSort/obj/Debug/net10.0-windows/TextSortWindow.csproj.AssemblyReference.cache new file mode 100644 index 0000000..dbe1cce Binary files /dev/null and b/TextSort/obj/Debug/net10.0-windows/TextSortWindow.csproj.AssemblyReference.cache differ diff --git a/TextSort/obj/Debug/net10.0-windows/TextSortWindow.csproj.BuildWithSkipAnalyzers b/TextSort/obj/Debug/net10.0-windows/TextSortWindow.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/TextSort/obj/Debug/net10.0-windows/TextSortWindow.csproj.CoreCompileInputs.cache b/TextSort/obj/Debug/net10.0-windows/TextSortWindow.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..d6efce9 --- /dev/null +++ b/TextSort/obj/Debug/net10.0-windows/TextSortWindow.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +e74c4d36f28abcddbbceeafa9dcb86cc549a1961c88ca601b044728b6e63d55c diff --git a/TextSort/obj/Debug/net10.0-windows/TextSortWindow.csproj.FileListAbsolute.txt b/TextSort/obj/Debug/net10.0-windows/TextSortWindow.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..88ebed2 --- /dev/null +++ b/TextSort/obj/Debug/net10.0-windows/TextSortWindow.csproj.FileListAbsolute.txt @@ -0,0 +1,20 @@ +C:\Users\Jesus\source\repos\TextSort\TextSort\bin\Debug\net10.0-windows\TextSortWindow.exe +C:\Users\Jesus\source\repos\TextSort\TextSort\bin\Debug\net10.0-windows\TextSortWindow.deps.json +C:\Users\Jesus\source\repos\TextSort\TextSort\bin\Debug\net10.0-windows\TextSortWindow.runtimeconfig.json +C:\Users\Jesus\source\repos\TextSort\TextSort\bin\Debug\net10.0-windows\TextSortWindow.dll +C:\Users\Jesus\source\repos\TextSort\TextSort\bin\Debug\net10.0-windows\TextSortWindow.pdb +C:\Users\Jesus\source\repos\TextSort\TextSort\bin\Debug\net10.0-windows\SortingModel.dll +C:\Users\Jesus\source\repos\TextSort\TextSort\bin\Debug\net10.0-windows\SortingModel.pdb +C:\Users\Jesus\source\repos\TextSort\TextSort\obj\Debug\net10.0-windows\TextSortWindow.csproj.AssemblyReference.cache +C:\Users\Jesus\source\repos\TextSort\TextSort\obj\Debug\net10.0-windows\TextSort.Window.resources +C:\Users\Jesus\source\repos\TextSort\TextSort\obj\Debug\net10.0-windows\TextSortWindow.csproj.GenerateResource.cache +C:\Users\Jesus\source\repos\TextSort\TextSort\obj\Debug\net10.0-windows\TextSortWindow.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\Jesus\source\repos\TextSort\TextSort\obj\Debug\net10.0-windows\TextSortWindow.AssemblyInfoInputs.cache +C:\Users\Jesus\source\repos\TextSort\TextSort\obj\Debug\net10.0-windows\TextSortWindow.AssemblyInfo.cs +C:\Users\Jesus\source\repos\TextSort\TextSort\obj\Debug\net10.0-windows\TextSortWindow.csproj.CoreCompileInputs.cache +C:\Users\Jesus\source\repos\TextSort\TextSort\obj\Debug\net10.0-windows\TextSort.4DF5CAE5.Up2Date +C:\Users\Jesus\source\repos\TextSort\TextSort\obj\Debug\net10.0-windows\TextSortWindow.dll +C:\Users\Jesus\source\repos\TextSort\TextSort\obj\Debug\net10.0-windows\refint\TextSortWindow.dll +C:\Users\Jesus\source\repos\TextSort\TextSort\obj\Debug\net10.0-windows\TextSortWindow.pdb +C:\Users\Jesus\source\repos\TextSort\TextSort\obj\Debug\net10.0-windows\TextSortWindow.genruntimeconfig.cache +C:\Users\Jesus\source\repos\TextSort\TextSort\obj\Debug\net10.0-windows\ref\TextSortWindow.dll diff --git a/TextSort/obj/Debug/net10.0-windows/TextSortWindow.csproj.GenerateResource.cache b/TextSort/obj/Debug/net10.0-windows/TextSortWindow.csproj.GenerateResource.cache new file mode 100644 index 0000000..7e84b31 Binary files /dev/null and b/TextSort/obj/Debug/net10.0-windows/TextSortWindow.csproj.GenerateResource.cache differ diff --git a/TextSort/obj/Debug/net10.0-windows/TextSortWindow.dll b/TextSort/obj/Debug/net10.0-windows/TextSortWindow.dll new file mode 100644 index 0000000..ca6ce44 Binary files /dev/null and b/TextSort/obj/Debug/net10.0-windows/TextSortWindow.dll differ diff --git a/TextSort/obj/Debug/net10.0-windows/TextSortWindow.genruntimeconfig.cache b/TextSort/obj/Debug/net10.0-windows/TextSortWindow.genruntimeconfig.cache new file mode 100644 index 0000000..a3abd01 --- /dev/null +++ b/TextSort/obj/Debug/net10.0-windows/TextSortWindow.genruntimeconfig.cache @@ -0,0 +1 @@ +e55d6b2c6ef2625017a18713a09941192cf2258ede7d6fc2b06c2c9957249a09 diff --git a/TextSort/obj/Debug/net10.0-windows/TextSortWindow.pdb b/TextSort/obj/Debug/net10.0-windows/TextSortWindow.pdb new file mode 100644 index 0000000..a3b029a Binary files /dev/null and b/TextSort/obj/Debug/net10.0-windows/TextSortWindow.pdb differ diff --git a/TextSort/obj/Debug/net10.0-windows/apphost.exe b/TextSort/obj/Debug/net10.0-windows/apphost.exe new file mode 100644 index 0000000..a35dbbc Binary files /dev/null and b/TextSort/obj/Debug/net10.0-windows/apphost.exe differ diff --git a/TextSort/obj/Debug/net10.0-windows/ref/TextSortWindow.dll b/TextSort/obj/Debug/net10.0-windows/ref/TextSortWindow.dll new file mode 100644 index 0000000..e45c9f5 Binary files /dev/null and b/TextSort/obj/Debug/net10.0-windows/ref/TextSortWindow.dll differ diff --git a/TextSort/obj/Debug/net10.0-windows/refint/TextSortWindow.dll b/TextSort/obj/Debug/net10.0-windows/refint/TextSortWindow.dll new file mode 100644 index 0000000..e45c9f5 Binary files /dev/null and b/TextSort/obj/Debug/net10.0-windows/refint/TextSortWindow.dll differ diff --git a/TextSort/obj/TextSortWindow.csproj.nuget.dgspec.json b/TextSort/obj/TextSortWindow.csproj.nuget.dgspec.json new file mode 100644 index 0000000..04eedb0 --- /dev/null +++ b/TextSort/obj/TextSortWindow.csproj.nuget.dgspec.json @@ -0,0 +1,709 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\Jesus\\source\\repos\\TextSort\\TextSort\\TextSortWindow.csproj": {} + }, + "projects": { + "C:\\Users\\Jesus\\source\\repos\\TextSort\\Sorting\\SortingModel.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Jesus\\source\\repos\\TextSort\\Sorting\\SortingModel.csproj", + "projectName": "SortingModel", + "projectPath": "C:\\Users\\Jesus\\source\\repos\\TextSort\\Sorting\\SortingModel.csproj", + "packagesPath": "C:\\Users\\Jesus\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Jesus\\source\\repos\\TextSort\\Sorting\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Jesus\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.101/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + }, + "C:\\Users\\Jesus\\source\\repos\\TextSort\\TextSort\\TextSortWindow.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Jesus\\source\\repos\\TextSort\\TextSort\\TextSortWindow.csproj", + "projectName": "TextSortWindow", + "projectPath": "C:\\Users\\Jesus\\source\\repos\\TextSort\\TextSort\\TextSortWindow.csproj", + "packagesPath": "C:\\Users\\Jesus\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Jesus\\source\\repos\\TextSort\\TextSort\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Jesus\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net10.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0-windows7.0": { + "targetAlias": "net10.0-windows", + "projectReferences": { + "C:\\Users\\Jesus\\source\\repos\\TextSort\\Sorting\\SortingModel.csproj": { + "projectPath": "C:\\Users\\Jesus\\source\\repos\\TextSort\\Sorting\\SortingModel.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0-windows7.0": { + "targetAlias": "net10.0-windows", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WindowsForms": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.101/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "Microsoft.Win32.Registry.AccessControl": "(,10.0.32767]", + "Microsoft.Win32.SystemEvents": "(,10.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.CodeDom": "(,10.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Configuration.ConfigurationManager": "(,10.0.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.EventLog": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.PerformanceCounter": "(,10.0.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.DirectoryServices": "(,10.0.32767]", + "System.Drawing.Common": "(,10.0.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Nrbf": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Packaging": "(,10.0.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Extensions": "(,10.0.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Pkcs": "(,10.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.ProtectedData": "(,10.0.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Cryptography.Xml": "(,10.0.32767]", + "System.Security.Permissions": "(,10.0.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Windows.Extensions": "(,10.0.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } + } +} \ No newline at end of file diff --git a/TextSort/obj/TextSortWindow.csproj.nuget.g.props b/TextSort/obj/TextSortWindow.csproj.nuget.g.props new file mode 100644 index 0000000..34ff358 --- /dev/null +++ b/TextSort/obj/TextSortWindow.csproj.nuget.g.props @@ -0,0 +1,16 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Jesus\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 7.0.0 + + + + + + \ No newline at end of file diff --git a/TextSort/obj/TextSortWindow.csproj.nuget.g.targets b/TextSort/obj/TextSortWindow.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/TextSort/obj/TextSortWindow.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/TextSort/obj/project.assets.json b/TextSort/obj/project.assets.json new file mode 100644 index 0000000..569cc69 --- /dev/null +++ b/TextSort/obj/project.assets.json @@ -0,0 +1,395 @@ +{ + "version": 3, + "targets": { + "net10.0-windows7.0": { + "SortingModel/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v10.0", + "compile": { + "bin/placeholder/SortingModel.dll": {} + }, + "runtime": { + "bin/placeholder/SortingModel.dll": {} + } + } + } + }, + "libraries": { + "SortingModel/1.0.0": { + "type": "project", + "path": "../Sorting/SortingModel.csproj", + "msbuildProject": "../Sorting/SortingModel.csproj" + } + }, + "projectFileDependencyGroups": { + "net10.0-windows7.0": [ + "SortingModel >= 1.0.0" + ] + }, + "packageFolders": { + "C:\\Users\\Jesus\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Jesus\\source\\repos\\TextSort\\TextSort\\TextSortWindow.csproj", + "projectName": "TextSortWindow", + "projectPath": "C:\\Users\\Jesus\\source\\repos\\TextSort\\TextSort\\TextSortWindow.csproj", + "packagesPath": "C:\\Users\\Jesus\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Jesus\\source\\repos\\TextSort\\TextSort\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Jesus\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net10.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0-windows7.0": { + "targetAlias": "net10.0-windows", + "projectReferences": { + "C:\\Users\\Jesus\\source\\repos\\TextSort\\Sorting\\SortingModel.csproj": { + "projectPath": "C:\\Users\\Jesus\\source\\repos\\TextSort\\Sorting\\SortingModel.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0-windows7.0": { + "targetAlias": "net10.0-windows", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WindowsForms": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.101/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "Microsoft.Win32.Registry.AccessControl": "(,10.0.32767]", + "Microsoft.Win32.SystemEvents": "(,10.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.CodeDom": "(,10.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Configuration.ConfigurationManager": "(,10.0.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.EventLog": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.PerformanceCounter": "(,10.0.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.DirectoryServices": "(,10.0.32767]", + "System.Drawing.Common": "(,10.0.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Nrbf": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Packaging": "(,10.0.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Extensions": "(,10.0.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Pkcs": "(,10.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.ProtectedData": "(,10.0.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Cryptography.Xml": "(,10.0.32767]", + "System.Security.Permissions": "(,10.0.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Windows.Extensions": "(,10.0.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } +} \ No newline at end of file diff --git a/TextSort/obj/project.nuget.cache b/TextSort/obj/project.nuget.cache new file mode 100644 index 0000000..2abff74 --- /dev/null +++ b/TextSort/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "Hzkfrnl4Cqc=", + "success": true, + "projectFilePath": "C:\\Users\\Jesus\\source\\repos\\TextSort\\TextSort\\TextSortWindow.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file