Skip to content

Commit 6d0148c

Browse files
committed
Upgraded test nuget packages.
1 parent c1482c2 commit 6d0148c

File tree

3 files changed

+15
-6
lines changed

3 files changed

+15
-6
lines changed

.editorconfig

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ csharp_style_expression_bodied_constructors = false:silent
8585
csharp_style_expression_bodied_indexers = true:silent
8686
csharp_style_expression_bodied_lambdas = true:silent
8787
csharp_style_expression_bodied_local_functions = false:silent
88-
csharp_style_expression_bodied_methods = false:silent
88+
csharp_style_expression_bodied_methods = true:silent
8989
csharp_style_expression_bodied_operators = false:silent
9090
csharp_style_expression_bodied_properties = true:silent
9191

@@ -219,6 +219,13 @@ dotnet_naming_style.begins_with_i.word_separator =
219219
dotnet_naming_style.begins_with_i.capitalization = pascal_case
220220
csharp_style_prefer_local_over_anonymous_function = true:suggestion
221221
csharp_style_prefer_tuple_swap = true:suggestion
222+
csharp_style_prefer_method_group_conversion = true:silent
223+
csharp_style_prefer_top_level_statements = true:silent
224+
csharp_style_prefer_primary_constructors = true:suggestion
225+
csharp_prefer_system_threading_lock = true:suggestion
226+
csharp_style_prefer_utf8_string_literals = true:suggestion
227+
csharp_style_allow_blank_line_after_token_in_conditional_expression_experimental = true:silent
228+
csharp_style_allow_blank_line_after_token_in_arrow_expression_clause_experimental = true:silent
222229

223230
[*.{cs,vb}]
224231
dotnet_style_operator_placement_when_wrapping = beginning_of_line
@@ -240,6 +247,8 @@ dotnet_style_prefer_inferred_anonymous_type_member_names = true:suggestion
240247
dotnet_style_prefer_compound_assignment = true:suggestion
241248
dotnet_style_prefer_simplified_interpolation = true:suggestion
242249
dotnet_style_namespace_match_folder = true:suggestion
250+
dotnet_style_prefer_collection_expression = when_types_loosely_match:suggestion
251+
dotnet_style_predefined_type_for_member_access = true:silent
243252

244253
# YAML Files
245254
[*.{yml,yaml}]

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "9.0.100",
3+
"version": "9.0.201",
44
"rollForward": "latestPatch"
55
}
66
}

src/IdParser.Core.Test/IdParser.Core.Test.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
55
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
66
<AssemblyTitle>IdParser.Core.Test</AssemblyTitle>
77
<Product>IdParser.Core.Test</Product>
@@ -25,9 +25,9 @@
2525
</ItemGroup>
2626
<ItemGroup>
2727
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.0" />
28-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
29-
<PackageReference Include="xunit" Version="2.9.2" />
30-
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
28+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
29+
<PackageReference Include="xunit" Version="2.9.3" />
30+
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.2">
3131
<PrivateAssets>all</PrivateAssets>
3232
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
3333
</PackageReference>

0 commit comments

Comments
 (0)