Skip to content

Commit 413e6fb

Browse files
deps
1 parent 2af6f48 commit 413e6fb

File tree

7 files changed

+25
-16
lines changed

7 files changed

+25
-16
lines changed

.editorconfig

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# To learn more about .editorconfig see https://aka.ms/editorconfigdocs
1+
# To learn more about .editorconfig see https://aka.ms/editorconfigdocs
22
###############################
33
# Core EditorConfig Options #
44
###############################
@@ -209,6 +209,22 @@ dotnet_diagnostic.RCS1202.severity = silent
209209
# RCS1075: Avoid empty catch clause that catches System.Exception
210210
dotnet_diagnostic.RCS1075.severity = silent
211211

212+
# CS1998: Async method lacks 'await' operators and will run synchronously
213+
dotnet_diagnostic.CS1998.severity = none
214+
215+
# RCS1267: Use string interpolation instead of 'string.Concat'
216+
dotnet_diagnostic.RCS1267.severity = none
217+
218+
# IDE0270: Null check can be simplified
219+
dotnet_diagnostic.IDE0270.severity = none
220+
dotnet_diagnostic.RCS1021.severity = silent
221+
222+
# CA2016: Forward the 'CancellationToken' parameter to methods
223+
dotnet_diagnostic.CA2016.severity = none
224+
225+
# IDE0079: Remove unnecessary suppression
226+
dotnet_diagnostic.IDE0079.severity = none
227+
212228
[*.vb]
213229
# Modifier preferences
214230
visual_basic_preferred_modifier_order = Partial,Default,Private,Protected,Public,Friend,NotOverridable,Overridable,MustOverride,Overloads,Overrides,MustInherit,NotInheritable,Static,Shared,Shadows,ReadOnly,WriteOnly,Dim,Const,WithEvents,Widening,Narrowing,Custom,Async:suggestion
Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
11
global using System;
22
global using System.Collections.Generic;
3-
global using System.ComponentModel;
43
global using System.Data;
54
global using System.Data.Common;
65
global using System.Globalization;
7-
global using System.Linq;
8-
global using System.Text;
9-
global using System.Text.RegularExpressions;
106
global using System.Threading;
117
global using System.Transactions;
12-
global using FizzCode.LightWeight.AdoNet;
138
global using FizzCode.LightWeight.Configuration;
149
global using Microsoft.Extensions.Configuration;

LightWeight.AdoNet.DbConnection/LightWeight.AdoNet.DbConnection.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
</PropertyGroup>
1616

1717
<ItemGroup>
18-
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.5" />
18+
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.6" />
1919
<PackageReference Include="Roslynator.Formatting.Analyzers" Version="4.13.1">
2020
<PrivateAssets>all</PrivateAssets>
2121
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

LightWeight.Configuration/LightWeight.Configuration.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
</PropertyGroup>
1616

1717
<ItemGroup>
18-
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.5" />
19-
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="9.0.5" />
20-
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.5" />
18+
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.6" />
19+
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="9.0.6" />
20+
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.6" />
2121
<PackageReference Include="Roslynator.Formatting.Analyzers" Version="4.13.1">
2222
<PrivateAssets>all</PrivateAssets>
2323
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

LightWeight.MsTest/LightWeight.MsTest.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
</PropertyGroup>
1616

1717
<ItemGroup>
18-
<PackageReference Include="MSTest.TestFramework" Version="3.9.0" />
18+
<PackageReference Include="MSTest.TestFramework" Version="3.9.3" />
1919
<PackageReference Include="Roslynator.Formatting.Analyzers" Version="4.13.1">
2020
<PrivateAssets>all</PrivateAssets>
2121
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

LightWeight/Global.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,5 @@
88
global using System.Reflection;
99
global using System.Security;
1010
global using System.Text;
11-
global using System.Text.Json;
1211
global using System.Text.Json.Serialization;
13-
global using System.Text.Json.Serialization.Metadata;
1412
global using System.Text.RegularExpressions;

Tests/LightWeight.AdoNet.Tests/LightWeight.AdoNetTests.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.0" />
9-
<PackageReference Include="MSTest.TestAdapter" Version="3.9.0" />
10-
<PackageReference Include="MSTest.TestFramework" Version="3.9.0" />
8+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
9+
<PackageReference Include="MSTest.TestAdapter" Version="3.9.3" />
10+
<PackageReference Include="MSTest.TestFramework" Version="3.9.3" />
1111
<PackageReference Include="Roslynator.Formatting.Analyzers" Version="4.13.1">
1212
<PrivateAssets>all</PrivateAssets>
1313
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

0 commit comments

Comments
 (0)