diff --git a/config.json b/config.json index 8a15843ac..e7ec77b88 100644 --- a/config.json +++ b/config.json @@ -1644,6 +1644,23 @@ ], "difficulty": 5 }, + { + "slug": "flower-field", + "name": "Flower Field", + "uuid": "e987a3e1-3e79-459a-97e1-d1173ffd934b", + "practices": [ + "string-formatting", + "chars" + ], + "prerequisites": [ + "strings", + "chars", + "string-formatting", + "arrays", + "if-statements" + ], + "difficulty": 5 + }, { "slug": "food-chain", "name": "Food Chain", @@ -1665,18 +1682,10 @@ "slug": "minesweeper", "name": "Minesweeper", "uuid": "466f17d4-13d0-4d6e-8564-c8bdfede35d1", - "practices": [ - "string-formatting", - "chars" - ], - "prerequisites": [ - "strings", - "chars", - "string-formatting", - "arrays", - "if-statements" - ], - "difficulty": 5 + "practices": [], + "prerequisites": [], + "difficulty": 5, + "status": "deprecated" }, { "slug": "scale-generator", diff --git a/exercises/Exercises.sln b/exercises/Exercises.sln index 178a42268..d2f4db3b9 100644 --- a/exercises/Exercises.sln +++ b/exercises/Exercises.sln @@ -369,6 +369,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SwiftScheduling", "practice EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RelativeDistance", "practice\relative-distance\RelativeDistance.csproj", "{2C37454E-8624-47B8-A09B-ADE201C2B04C}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FlowerField", "practice\flower-field\FlowerField.csproj", "{88E165C6-5E27-4F48-942A-0D41A9A6326D}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -2539,6 +2541,18 @@ Global {2C37454E-8624-47B8-A09B-ADE201C2B04C}.Release|x64.Build.0 = Release|Any CPU {2C37454E-8624-47B8-A09B-ADE201C2B04C}.Release|x86.ActiveCfg = Release|Any CPU {2C37454E-8624-47B8-A09B-ADE201C2B04C}.Release|x86.Build.0 = Release|Any CPU + {88E165C6-5E27-4F48-942A-0D41A9A6326D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {88E165C6-5E27-4F48-942A-0D41A9A6326D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {88E165C6-5E27-4F48-942A-0D41A9A6326D}.Debug|x64.ActiveCfg = Debug|Any CPU + {88E165C6-5E27-4F48-942A-0D41A9A6326D}.Debug|x64.Build.0 = Debug|Any CPU + {88E165C6-5E27-4F48-942A-0D41A9A6326D}.Debug|x86.ActiveCfg = Debug|Any CPU + {88E165C6-5E27-4F48-942A-0D41A9A6326D}.Debug|x86.Build.0 = Debug|Any CPU + {88E165C6-5E27-4F48-942A-0D41A9A6326D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {88E165C6-5E27-4F48-942A-0D41A9A6326D}.Release|Any CPU.Build.0 = Release|Any CPU + {88E165C6-5E27-4F48-942A-0D41A9A6326D}.Release|x64.ActiveCfg = Release|Any CPU + {88E165C6-5E27-4F48-942A-0D41A9A6326D}.Release|x64.Build.0 = Release|Any CPU + {88E165C6-5E27-4F48-942A-0D41A9A6326D}.Release|x86.ActiveCfg = Release|Any CPU + {88E165C6-5E27-4F48-942A-0D41A9A6326D}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -2725,6 +2739,7 @@ Global {FA726133-BC1C-D753-28C5-C9ACB44C0776} = {E276EF69-669A-43E0-88AC-8ABB17A9C026} {9A073412-4B64-48EB-A346-A56DE6847CCC} = {FA726133-BC1C-D753-28C5-C9ACB44C0776} {2C37454E-8624-47B8-A09B-ADE201C2B04C} = {E276EF69-669A-43E0-88AC-8ABB17A9C026} + {88E165C6-5E27-4F48-942A-0D41A9A6326D} = {E276EF69-669A-43E0-88AC-8ABB17A9C026} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {AB4EA6C9-5461-4024-BDC7-2AE0C3A85CD1} diff --git a/exercises/practice/flower-field/.docs/instructions.md b/exercises/practice/flower-field/.docs/instructions.md new file mode 100644 index 000000000..bbdae0c2c --- /dev/null +++ b/exercises/practice/flower-field/.docs/instructions.md @@ -0,0 +1,26 @@ +# Instructions + +Your task is to add flower counts to empty squares in a completed Flower Field garden. +The garden itself is a rectangle board composed of squares that are either empty (`' '`) or a flower (`'*'`). + +For each empty square, count the number of flowers adjacent to it (horizontally, vertically, diagonally). +If the empty square has no adjacent flowers, leave it empty. +Otherwise replace it with the count of adjacent flowers. + +For example, you may receive a 5 x 4 board like this (empty spaces are represented here with the '·' character for display on screen): + +```text +·*·*· +··*·· +··*·· +····· +``` + +Which your code should transform into this: + +```text +1*3*1 +13*31 +·2*2· +·111· +``` diff --git a/exercises/practice/flower-field/.docs/introduction.md b/exercises/practice/flower-field/.docs/introduction.md new file mode 100644 index 000000000..af9b61536 --- /dev/null +++ b/exercises/practice/flower-field/.docs/introduction.md @@ -0,0 +1,7 @@ +# Introduction + +[Flower Field][history] is a compassionate reimagining of the popular game Minesweeper. +The object of the game is to find all the flowers in the garden using numeric hints that indicate how many flowers are directly adjacent (horizontally, vertically, diagonally) to a square. +"Flower Field" shipped in regional versions of Microsoft Windows in Italy, Germany, South Korea, Japan and Taiwan. + +[history]: https://web.archive.org/web/20020409051321fw_/http://rcm.usr.dsi.unimi.it/rcmweb/fnm/ diff --git a/exercises/practice/flower-field/.editorconfig b/exercises/practice/flower-field/.editorconfig new file mode 100644 index 000000000..094632dfe --- /dev/null +++ b/exercises/practice/flower-field/.editorconfig @@ -0,0 +1,141 @@ +############################### +# Core EditorConfig Options # +############################### + +; This file is for unifying the coding style for different editors and IDEs. +; More information at: +; https://docs.microsoft.com/en-us/visualstudio/ide/editorconfig-code-style-settings-reference?view=vs-2017 +; https://docs.microsoft.com/en-us/visualstudio/ide/create-portable-custom-editor-options?view=vs-2017 + +root = true + +[*] +indent_style = space + +[FlowerField.cs] +indent_size = 4 + +############################### +# .NET Coding Conventions # +############################### + +# Organize usings +dotnet_sort_system_directives_first = true +dotnet_separate_import_directive_groups = true + +# this. preferences +dotnet_style_qualification_for_field = false:suggestion +dotnet_style_qualification_for_property = false:suggestion +dotnet_style_qualification_for_method = false:suggestion +dotnet_style_qualification_for_event = false:suggestion + +# Language keywords vs BCL types preferences +dotnet_style_predefined_type_for_locals_parameters_members = true:suggestion +dotnet_style_predefined_type_for_member_access = true:suggestion + +# Parentheses preferences +dotnet_style_parentheses_in_arithmetic_binary_operators = never_if_unnecessary:none +dotnet_style_parentheses_in_relational_binary_operators = never_if_unnecessary:none +dotnet_style_parentheses_in_other_binary_operators = never_if_unnecessary:none +dotnet_style_parentheses_in_other_operators = never_if_unnecessary:suggestion + +# Modifier preferences +dotnet_style_require_accessibility_modifiers = always:suggestion +dotnet_style_readonly_field = true:suggestion + +# Expression-level preferences +dotnet_style_object_initializer = true:suggestion +dotnet_style_collection_initializer = true:suggestion +dotnet_style_explicit_tuple_names = true:suggestion +dotnet_style_prefer_inferred_tuple_names = true:suggestion +dotnet_style_prefer_inferred_anonymous_type_member_names = true:suggestion +dotnet_style_prefer_auto_properties = true:suggestion +dotnet_style_prefer_is_null_check_over_reference_equality_method = true:suggestion +dotnet_style_prefer_conditional_expression_over_assignment = true:suggestion +dotnet_style_prefer_conditional_expression_over_return = true:suggestion +dotnet_style_coalesce_expression = true:suggestion +dotnet_style_null_propagation = true:suggestion + +############################### +# Naming Conventions # +############################### + +# Style Definitions +dotnet_naming_style.pascal_case_style.capitalization = pascal_case + +# Use PascalCase for constant fields +dotnet_naming_rule.constant_fields_should_be_pascal_case.severity = suggestion +dotnet_naming_rule.constant_fields_should_be_pascal_case.symbols = constant_fields +dotnet_naming_rule.constant_fields_should_be_pascal_case.style = pascal_case_style +dotnet_naming_symbols.constant_fields.applicable_kinds = field +dotnet_naming_symbols.constant_fields.applicable_accessibilities = * +dotnet_naming_symbols.constant_fields.required_modifiers = const + +############################### +# C# Code Style Rules # +############################### + +# var preferences +csharp_style_var_for_built_in_types = true:none +csharp_style_var_when_type_is_apparent = true:none +csharp_style_var_elsewhere = true:none + +# Expression-bodied members +csharp_style_expression_bodied_methods = true:suggestion +csharp_style_expression_bodied_constructors = true:suggestion +csharp_style_expression_bodied_operators = true:suggestion +csharp_style_expression_bodied_properties = true:suggestion +csharp_style_expression_bodied_indexers = true:suggestion +csharp_style_expression_bodied_accessors = true:suggestion + +# Pattern-matching preferences +csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion +csharp_style_pattern_matching_over_as_with_null_check = true:suggestion + +# Null-checking preferences +csharp_style_throw_expression = true:suggestion +csharp_style_conditional_delegate_call = true:suggestion + +# Modifier preferences +csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async:suggestion + +# Expression-level preferences +csharp_prefer_braces = true:none +csharp_prefer_simple_default_expression = true:suggestion +csharp_style_deconstructed_variable_declaration = true:suggestion +csharp_style_pattern_local_over_anonymous_function = true:suggestion +csharp_style_inlined_variable_declaration = true:suggestion + +############################### +# C# Formatting Rules # +############################### + +# New line preferences +csharp_new_line_before_open_brace = all +csharp_new_line_before_else = true +csharp_new_line_before_catch = true +csharp_new_line_before_finally = true +csharp_new_line_before_members_in_object_initializers = false +csharp_new_line_before_members_in_anonymous_types = false +csharp_new_line_between_query_expression_clauses = true + +# Indentation preferences +csharp_indent_case_contents = true +csharp_indent_switch_labels = true +csharp_indent_labels = flush_left + +# Space preferences +csharp_space_after_cast = false +csharp_space_after_keywords_in_control_flow_statements = true +csharp_space_between_method_declaration_parameter_list_parentheses = false +csharp_space_between_method_call_parameter_list_parentheses = false +csharp_space_before_colon_in_inheritance_clause = true +csharp_space_after_colon_in_inheritance_clause = true +csharp_space_around_binary_operators = before_and_after +csharp_space_between_method_declaration_empty_parameter_list_parentheses = false +csharp_space_between_method_call_name_and_opening_parenthesis = false +csharp_space_between_method_call_empty_parameter_list_parentheses = false + +# Wrapping preferences +csharp_preserve_single_line_blocks = true +csharp_preserve_single_line_statements = true diff --git a/exercises/practice/flower-field/.meta/Example.cs b/exercises/practice/flower-field/.meta/Example.cs new file mode 100644 index 000000000..9e54eaf0d --- /dev/null +++ b/exercises/practice/flower-field/.meta/Example.cs @@ -0,0 +1,57 @@ +public class FlowerField +{ + public static string[] Annotate(string[] input) + { + var results = new List(); + + var board = input; + + for (int i = 0; i < board.Length; i++) + { + var result = string.Empty; + + for (int j = 0; j < board[0].Length; j++) + { + if (board[i][j] == '*') + { + result += '*'; + } + else + { + var numMines = GetCountForSquare(board, i, j); + result += numMines == 0 + ? " " + : numMines.ToString(); + } + } + + results.Add(result); + } + + return results.ToArray(); + } + + private static int GetCountForSquare(string[] board, int x, int y) + { + var result = 0; + + for (int i = -1; i <= 1; i++) + { + for (int j = -1; j <= 1; j++) + { + try + { + if (board[x + i][y + j] == '*') + { + result++; + } + } + catch (IndexOutOfRangeException) + { + } + } + } + + return result; + } +} diff --git a/exercises/practice/flower-field/.meta/Generator.tpl b/exercises/practice/flower-field/.meta/Generator.tpl new file mode 100644 index 000000000..4c76aa5de --- /dev/null +++ b/exercises/practice/flower-field/.meta/Generator.tpl @@ -0,0 +1,24 @@ +public class {{ testClass }} +{ + {{- for test in tests }} + [Fact{{ if !for.first }}(Skip = "Remove this Skip property to run this test"){{ end }}] + public void {{ test.testMethod }}() + { + {{- if test.input.garden.empty? }} + Assert.Empty({{ testedClass }}.{{ test.testedMethod }}(Array.Empty())); + {{ else }} + string[] garden = [ + {{- for line in test.input.garden }} + {{ line | string.literal }}{{- if !for.last }},{{ end -}} + {{ end }} + ]; + string[] expected = [ + {{- for line in test.expected }} + {{ line | string.literal }}{{- if !for.last }},{{ end -}} + {{ end }} + ]; + Assert.Equal(expected, {{ testedClass }}.{{ test.testedMethod }}(garden)); + {{ end -}} + } + {{ end -}} +} diff --git a/exercises/practice/flower-field/.meta/config.json b/exercises/practice/flower-field/.meta/config.json new file mode 100644 index 000000000..99216a9c9 --- /dev/null +++ b/exercises/practice/flower-field/.meta/config.json @@ -0,0 +1,24 @@ +{ + "authors": [ + "robkeim" + ], + "contributors": [ + "BNAndras", + "ErikSchierboom", + "felix91gr", + "j2jensen", + "wolf99" + ], + "files": { + "solution": [ + "FlowerField.cs" + ], + "test": [ + "FlowerFieldTests.cs" + ], + "example": [ + ".meta/Example.cs" + ] + }, + "blurb": "Mark all the flowers in a garden." +} diff --git a/exercises/practice/flower-field/.meta/tests.toml b/exercises/practice/flower-field/.meta/tests.toml new file mode 100644 index 000000000..c2b24fdaf --- /dev/null +++ b/exercises/practice/flower-field/.meta/tests.toml @@ -0,0 +1,46 @@ +# This is an auto-generated file. +# +# Regenerating this file via `configlet sync` will: +# - Recreate every `description` key/value pair +# - Recreate every `reimplements` key/value pair, where they exist in problem-specifications +# - Remove any `include = true` key/value pair (an omitted `include` key implies inclusion) +# - Preserve any other key/value pair +# +# As user-added comments (using the # character) will be removed when this file +# is regenerated, comments can be added via a `comment` key. + +[237ff487-467a-47e1-9b01-8a891844f86c] +description = "no rows" + +[4b4134ec-e20f-439c-a295-664c38950ba1] +description = "no columns" + +[d774d054-bbad-4867-88ae-069cbd1c4f92] +description = "no flowers" + +[225176a0-725e-43cd-aa13-9dced501f16e] +description = "garden full of flowers" + +[3f345495-f1a5-4132-8411-74bd7ca08c49] +description = "flower surrounded by spaces" + +[6cb04070-4199-4ef7-a6fa-92f68c660fca] +description = "space surrounded by flowers" + +[272d2306-9f62-44fe-8ab5-6b0f43a26338] +description = "horizontal line" + +[c6f0a4b2-58d0-4bf6-ad8d-ccf4144f1f8e] +description = "horizontal line, flowers at edges" + +[a54e84b7-3b25-44a8-b8cf-1753c8bb4cf5] +description = "vertical line" + +[b40f42f5-dec5-4abc-b167-3f08195189c1] +description = "vertical line, flowers at edges" + +[58674965-7b42-4818-b930-0215062d543c] +description = "cross" + +[dd9d4ca8-9e68-4f78-a677-a2a70fd7a7b8] +description = "large garden" diff --git a/exercises/practice/flower-field/FlowerField.cs b/exercises/practice/flower-field/FlowerField.cs new file mode 100644 index 000000000..1375353c0 --- /dev/null +++ b/exercises/practice/flower-field/FlowerField.cs @@ -0,0 +1,7 @@ +public static class FlowerField +{ + public static string[] Annotate(string[] input) + { + throw new NotImplementedException("You need to implement this method."); + } +} diff --git a/exercises/practice/flower-field/FlowerField.csproj b/exercises/practice/flower-field/FlowerField.csproj new file mode 100644 index 000000000..a38815241 --- /dev/null +++ b/exercises/practice/flower-field/FlowerField.csproj @@ -0,0 +1,18 @@ + + + enable + enable + Exe + net9.0 + true + + + + + + + + + + + \ No newline at end of file diff --git a/exercises/practice/flower-field/FlowerFieldTests.cs b/exercises/practice/flower-field/FlowerFieldTests.cs new file mode 100644 index 000000000..b351631c6 --- /dev/null +++ b/exercises/practice/flower-field/FlowerFieldTests.cs @@ -0,0 +1,190 @@ +public class FlowerFieldTests +{ + [Fact] + public void No_rows() + { + Assert.Empty(FlowerField.Annotate(Array.Empty())); + } + + [Fact(Skip = "Remove this Skip property to run this test")] + public void No_columns() + { + string[] garden = [ + "" + ]; + string[] expected = [ + "" + ]; + Assert.Equal(expected, FlowerField.Annotate(garden)); + } + + [Fact(Skip = "Remove this Skip property to run this test")] + public void No_flowers() + { + string[] garden = [ + " ", + " ", + " " + ]; + string[] expected = [ + " ", + " ", + " " + ]; + Assert.Equal(expected, FlowerField.Annotate(garden)); + } + + [Fact(Skip = "Remove this Skip property to run this test")] + public void Garden_full_of_flowers() + { + string[] garden = [ + "***", + "***", + "***" + ]; + string[] expected = [ + "***", + "***", + "***" + ]; + Assert.Equal(expected, FlowerField.Annotate(garden)); + } + + [Fact(Skip = "Remove this Skip property to run this test")] + public void Flower_surrounded_by_spaces() + { + string[] garden = [ + " ", + " * ", + " " + ]; + string[] expected = [ + "111", + "1*1", + "111" + ]; + Assert.Equal(expected, FlowerField.Annotate(garden)); + } + + [Fact(Skip = "Remove this Skip property to run this test")] + public void Space_surrounded_by_flowers() + { + string[] garden = [ + "***", + "* *", + "***" + ]; + string[] expected = [ + "***", + "*8*", + "***" + ]; + Assert.Equal(expected, FlowerField.Annotate(garden)); + } + + [Fact(Skip = "Remove this Skip property to run this test")] + public void Horizontal_line() + { + string[] garden = [ + " * * " + ]; + string[] expected = [ + "1*2*1" + ]; + Assert.Equal(expected, FlowerField.Annotate(garden)); + } + + [Fact(Skip = "Remove this Skip property to run this test")] + public void Horizontal_line_flowers_at_edges() + { + string[] garden = [ + "* *" + ]; + string[] expected = [ + "*1 1*" + ]; + Assert.Equal(expected, FlowerField.Annotate(garden)); + } + + [Fact(Skip = "Remove this Skip property to run this test")] + public void Vertical_line() + { + string[] garden = [ + " ", + "*", + " ", + "*", + " " + ]; + string[] expected = [ + "1", + "*", + "2", + "*", + "1" + ]; + Assert.Equal(expected, FlowerField.Annotate(garden)); + } + + [Fact(Skip = "Remove this Skip property to run this test")] + public void Vertical_line_flowers_at_edges() + { + string[] garden = [ + "*", + " ", + " ", + " ", + "*" + ]; + string[] expected = [ + "*", + "1", + " ", + "1", + "*" + ]; + Assert.Equal(expected, FlowerField.Annotate(garden)); + } + + [Fact(Skip = "Remove this Skip property to run this test")] + public void Cross() + { + string[] garden = [ + " * ", + " * ", + "*****", + " * ", + " * " + ]; + string[] expected = [ + " 2*2 ", + "25*52", + "*****", + "25*52", + " 2*2 " + ]; + Assert.Equal(expected, FlowerField.Annotate(garden)); + } + + [Fact(Skip = "Remove this Skip property to run this test")] + public void Large_garden() + { + string[] garden = [ + " * * ", + " * ", + " * ", + " * *", + " * * ", + " " + ]; + string[] expected = [ + "1*22*1", + "12*322", + " 123*2", + "112*4*", + "1*22*2", + "111111" + ]; + Assert.Equal(expected, FlowerField.Annotate(garden)); + } +} diff --git a/exercises/practice/flower-field/packages.lock.json b/exercises/practice/flower-field/packages.lock.json new file mode 100644 index 000000000..6b3387771 --- /dev/null +++ b/exercises/practice/flower-field/packages.lock.json @@ -0,0 +1,170 @@ +{ + "version": 1, + "dependencies": { + "net9.0": { + "Exercism.Tests.xunit.v3": { + "type": "Direct", + "requested": "[0.1.0-beta1, )", + "resolved": "0.1.0-beta1", + "contentHash": "XjVtQWWxmHDDj7UMdkPKpBFFKnsW0tkBhlyJSfFFh+fWwGemyyJwJYhdsvWhiKKCY7zItB+mI/o0OQtOKQxUhA==", + "dependencies": { + "xunit.v3.extensibility.core": "1.1.0" + } + }, + "Microsoft.NET.Test.Sdk": { + "type": "Direct", + "requested": "[17.12.0, )", + "resolved": "17.12.0", + "contentHash": "kt/PKBZ91rFCWxVIJZSgVLk+YR+4KxTuHf799ho8WNiK5ZQpJNAEZCAWX86vcKrs+DiYjiibpYKdGZP6+/N17w==", + "dependencies": { + "Microsoft.CodeCoverage": "17.12.0", + "Microsoft.TestPlatform.TestHost": "17.12.0" + } + }, + "xunit.runner.visualstudio": { + "type": "Direct", + "requested": "[3.0.1, )", + "resolved": "3.0.1", + "contentHash": "lbyYtsBxA8Pz8kaf5Xn/Mj1mL9z2nlBWdZhqFaj66nxXBa4JwiTDm4eGcpSMet6du9TOWI6bfha+gQR6+IHawg==" + }, + "xunit.v3": { + "type": "Direct", + "requested": "[1.1.0, )", + "resolved": "1.1.0", + "contentHash": "1ckSz5GVswlM9TCk5bGdHOjnYwqAWjkeqxckoHawQIA8sTeuN+RCBUypCi5A/Um0XlczRx5TjAK5W6BbN0HLcQ==", + "dependencies": { + "xunit.analyzers": "1.20.0", + "xunit.v3.assert": "[1.1.0]", + "xunit.v3.core": "[1.1.0]" + } + }, + "Microsoft.Bcl.AsyncInterfaces": { + "type": "Transitive", + "resolved": "6.0.0", + "contentHash": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==" + }, + "Microsoft.CodeCoverage": { + "type": "Transitive", + "resolved": "17.12.0", + "contentHash": "4svMznBd5JM21JIG2xZKGNanAHNXplxf/kQDFfLHXQ3OnpJkayRK/TjacFjA+EYmoyuNXHo/sOETEfcYtAzIrA==" + }, + "Microsoft.Testing.Extensions.TrxReport.Abstractions": { + "type": "Transitive", + "resolved": "1.5.3", + "contentHash": "h34zKNpGyni66VH738mRHeXSnf3klSShUdavUWNhSfWICUUi5aXeI0LBvoX/ad93N0+9xBDU3Fyi6WfxrwKQGw==", + "dependencies": { + "Microsoft.Testing.Platform": "1.5.3" + } + }, + "Microsoft.Testing.Platform": { + "type": "Transitive", + "resolved": "1.5.3", + "contentHash": "WqJydnJ99dEKtquR9HwINz104ehWJKTXbQQrydGatlLRw14bmsx0pa8+E6KUXMYXZAimN0swWlDmcJGjjW4TIg==" + }, + "Microsoft.Testing.Platform.MSBuild": { + "type": "Transitive", + "resolved": "1.5.3", + "contentHash": "bOtpRMSPeT5YLQo+NNY8EtdNTphAUcmALjW4ABU7P0rb6yR2XAZau3TzNieLmR3lRuwudguWzzBhgcLRXwZh0A==", + "dependencies": { + "Microsoft.Testing.Platform": "1.5.3" + } + }, + "Microsoft.TestPlatform.ObjectModel": { + "type": "Transitive", + "resolved": "17.12.0", + "contentHash": "TDqkTKLfQuAaPcEb3pDDWnh7b3SyZF+/W9OZvWFp6eJCIiiYFdSB6taE2I6tWrFw5ywhzOb6sreoGJTI6m3rSQ==", + "dependencies": { + "System.Reflection.Metadata": "1.6.0" + } + }, + "Microsoft.TestPlatform.TestHost": { + "type": "Transitive", + "resolved": "17.12.0", + "contentHash": "MiPEJQNyADfwZ4pJNpQex+t9/jOClBGMiCiVVFuELCMSX2nmNfvUor3uFVxNNCg30uxDP8JDYfPnMXQzsfzYyg==", + "dependencies": { + "Microsoft.TestPlatform.ObjectModel": "17.12.0", + "Newtonsoft.Json": "13.0.1" + } + }, + "Newtonsoft.Json": { + "type": "Transitive", + "resolved": "13.0.1", + "contentHash": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==" + }, + "System.Collections.Immutable": { + "type": "Transitive", + "resolved": "8.0.0", + "contentHash": "AurL6Y5BA1WotzlEvVaIDpqzpIPvYnnldxru8oXJU2yFxFUy3+pNXjXd1ymO+RA0rq0+590Q8gaz2l3Sr7fmqg==" + }, + "System.Memory": { + "type": "Transitive", + "resolved": "4.6.0", + "contentHash": "OEkbBQoklHngJ8UD8ez2AERSk2g+/qpAaSWWCBFbpH727HxDq5ydVkuncBaKcKfwRqXGWx64dS6G1SUScMsitg==" + }, + "System.Reflection.Metadata": { + "type": "Transitive", + "resolved": "1.6.0", + "contentHash": "COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==" + }, + "xunit.analyzers": { + "type": "Transitive", + "resolved": "1.20.0", + "contentHash": "HElev2E9vFbPxwKRQtpCSSzLOu8M/N9EWBCB37v7SRx6z4Lbj19FxfLEig3v9jiI6s4b0l2uena91nEsTWl9jA==" + }, + "xunit.v3.assert": { + "type": "Transitive", + "resolved": "1.1.0", + "contentHash": "4D+eM08ImfhA+zLbRzi8HA4qsT98zDxgaCD7vCg8yFesokKsgSsqWsAmImHFjVymGVhVS7WFGb19d6v1k9i0xQ==", + "dependencies": { + "System.Collections.Immutable": "8.0.0", + "System.Memory": "4.6.0" + } + }, + "xunit.v3.common": { + "type": "Transitive", + "resolved": "1.1.0", + "contentHash": "Cq55z8pC7fOkfj+3TB/YQ6OW96qWqxKiMd15CtkIl37VtV9EsiUL4B4HsR6VLJCzkk7cBiXQ1ABVIcp3TCm6HQ==", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "6.0.0" + } + }, + "xunit.v3.core": { + "type": "Transitive", + "resolved": "1.1.0", + "contentHash": "kXP/1d3jnQ2m4skcdM3gSMmubI6P747D6KVswzeedysgFkLj2xJlfo7p7slsmtEnp8BZb8X6D92Hssd/UtVPMw==", + "dependencies": { + "Microsoft.Testing.Platform.MSBuild": "1.5.3", + "xunit.v3.extensibility.core": "[1.1.0]", + "xunit.v3.runner.inproc.console": "[1.1.0]" + } + }, + "xunit.v3.extensibility.core": { + "type": "Transitive", + "resolved": "1.1.0", + "contentHash": "AeQbbYN001x0c+B9pqwml6jZPovHz8O/sOp7jmrjz90rUzz/QPal12SlHLKYszR44CMnW4MsDam3RYT5pkYUxw==", + "dependencies": { + "xunit.v3.common": "[1.1.0]" + } + }, + "xunit.v3.runner.common": { + "type": "Transitive", + "resolved": "1.1.0", + "contentHash": "Q81J0VPuu8fpF+/1CIjThqKKUjnqh0TQrLlD0iORkF75KdsOV+iGWT8c3AVuY96kDoxXxkTf0ZvJsK6o9osc1A==", + "dependencies": { + "xunit.v3.common": "[1.1.0]" + } + }, + "xunit.v3.runner.inproc.console": { + "type": "Transitive", + "resolved": "1.1.0", + "contentHash": "lX/4TwIJe9ysCd5dqLk/Doq8ieYaZGivgf95xR59wRuSV+nHzHnyhpjXfaPUp8nkncUH1rOmJ85o1KebipisXQ==", + "dependencies": { + "Microsoft.Testing.Extensions.TrxReport.Abstractions": "1.5.3", + "Microsoft.Testing.Platform": "1.5.3", + "xunit.v3.extensibility.core": "[1.1.0]", + "xunit.v3.runner.common": "[1.1.0]" + } + } + } + } +} \ No newline at end of file