Skip to content

Commit

Permalink
Update packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Rans4ckeR committed Mar 14, 2024
1 parent 4ff3a98 commit 12770c7
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 40 deletions.
22 changes: 20 additions & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ dotnet_diagnostic.IDE0005.severity = warning
dotnet_diagnostic.IDE0007.severity = warning
dotnet_diagnostic.IDE0008.severity = warning
dotnet_diagnostic.IDE0009.severity = warning
dotnet_diagnostic.IDE0010.severity = warning
dotnet_diagnostic.IDE0010.severity = none
dotnet_diagnostic.IDE0011.severity = warning
dotnet_diagnostic.IDE0016.severity = warning
dotnet_diagnostic.IDE0017.severity = warning
Expand Down Expand Up @@ -390,6 +390,20 @@ dotnet_diagnostic.SA1618.severity = none
dotnet_diagnostic.SA1619.severity = none
dotnet_diagnostic.CA2244.severity = warning
dotnet_diagnostic.CA2246.severity = warning
dotnet_diagnostic.ASP0025.severity = warning
dotnet_diagnostic.ASP0018.severity = warning
dotnet_diagnostic.ASP0015.severity = warning

# CS1591: Missing XML comment for publicly visible type or member
dotnet_diagnostic.CS1591.severity = none

# CA1303: Do not pass literals as localized parameters
dotnet_diagnostic.CA1303.severity = none

# CA1008: Enums should have zero value
dotnet_diagnostic.CA1008.severity = none
dotnet_diagnostic.API1002.severity = none
dotnet_diagnostic.API1003.severity = warning

[*.{cs,vb}]
dotnet_style_operator_placement_when_wrapping = beginning_of_line
Expand Down Expand Up @@ -530,7 +544,7 @@ dotnet_diagnostic.IDE0033.severity = warning
dotnet_diagnostic.IDE0070.severity = warning
dotnet_diagnostic.CA1816.severity = warning
dotnet_diagnostic.CA2201.severity = warning
dotnet_diagnostic.CA2208.severity = warning
dotnet_diagnostic.CA2208.severity = none
dotnet_diagnostic.CA2211.severity = warning
dotnet_diagnostic.CA2215.severity = warning
dotnet_diagnostic.CA2219.severity = warning
Expand All @@ -545,5 +559,9 @@ dotnet_diagnostic.CA2251.severity = warning
dotnet_diagnostic.CA2253.severity = warning
dotnet_diagnostic.CA2254.severity = warning
dotnet_diagnostic.CA2262.severity = warning
dotnet_diagnostic.CA1062.severity = none
dotnet_diagnostic.MSTEST0001.severity = warning
dotnet_diagnostic.MSTEST0006.severity = warning
dotnet_diagnostic.MSTEST0004.severity = warning
[*.vb]
dotnet_diagnostic.CA1047.severity = warning
76 changes: 38 additions & 38 deletions cncnet-server.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -37,41 +37,41 @@
<PackageReference Include="System.CommandLine.NamingConventionBinder" Version="2.0.0-beta4.22272.1" />
</ItemGroup>
<ItemGroup Condition="$(TargetFramework) == 'net9.0'">
<PackageReference Include="Microsoft.Extensions.Configuration" Version="9.0.0-preview.1.24080.9" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.0-preview.1.24080.9" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="9.0.0-preview.1.24080.9" />
<PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="9.0.0-preview.1.24080.9" />
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="9.0.0-preview.1.24080.9" />
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="9.0.0-preview.1.24080.9" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.0-preview.1.24080.9" />
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="9.0.0-preview.1.24080.9" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.0-preview.1.24080.9" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.0-preview.1.24080.9" />
<PackageReference Include="Microsoft.Extensions.Diagnostics" Version="9.0.0-preview.1.24080.9" />
<PackageReference Include="Microsoft.Extensions.Diagnostics.Abstractions" Version="9.0.0-preview.1.24080.9" />
<PackageReference Include="Microsoft.Extensions.FileProviders.Abstractions" Version="9.0.0-preview.1.24080.9" />
<PackageReference Include="Microsoft.Extensions.FileProviders.Physical" Version="9.0.0-preview.1.24080.9" />
<PackageReference Include="Microsoft.Extensions.FileSystemGlobbing" Version="9.0.0-preview.1.24080.9" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.0-preview.1.24080.9" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="9.0.0-preview.1.24080.9" />
<PackageReference Include="Microsoft.Extensions.Hosting.Systemd" Version="9.0.0-preview.1.24080.9" />
<PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="9.0.0-preview.1.24080.9" />
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.0-preview.1.24080.9" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.0-preview.1.24080.9" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.0-preview.1.24080.9" />
<PackageReference Include="Microsoft.Extensions.Logging.Configuration" Version="9.0.0-preview.1.24080.9" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="9.0.0-preview.1.24080.9" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="9.0.0-preview.1.24080.9" />
<PackageReference Include="Microsoft.Extensions.Logging.EventLog" Version="9.0.0-preview.1.24080.9" />
<PackageReference Include="Microsoft.Extensions.Logging.EventSource" Version="9.0.0-preview.1.24080.9" />
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.0-preview.1.24080.9" />
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="9.0.0-preview.1.24080.9" />
<PackageReference Include="Microsoft.Extensions.Primitives" Version="9.0.0-preview.1.24080.9" />
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="9.0.0-preview.1.24080.9" />
<PackageReference Include="System.Diagnostics.EventLog" Version="9.0.0-preview.1.24080.9" />
<PackageReference Include="System.ServiceProcess.ServiceController" Version="9.0.0-preview.1.24080.9" />
<PackageReference Include="System.Text.Encodings.Web" Version="9.0.0-preview.1.24080.9" />
<PackageReference Include="System.Text.Json" Version="9.0.0-preview.1.24080.9" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="9.0.0-preview.2.24128.5" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.0-preview.2.24128.5" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="9.0.0-preview.2.24128.5" />
<PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="9.0.0-preview.2.24128.5" />
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="9.0.0-preview.2.24128.5" />
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="9.0.0-preview.2.24128.5" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.0-preview.2.24128.5" />
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="9.0.0-preview.2.24128.5" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.0-preview.2.24128.5" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.0-preview.2.24128.5" />
<PackageReference Include="Microsoft.Extensions.Diagnostics" Version="9.0.0-preview.2.24128.5" />
<PackageReference Include="Microsoft.Extensions.Diagnostics.Abstractions" Version="9.0.0-preview.2.24128.5" />
<PackageReference Include="Microsoft.Extensions.FileProviders.Abstractions" Version="9.0.0-preview.2.24128.5" />
<PackageReference Include="Microsoft.Extensions.FileProviders.Physical" Version="9.0.0-preview.2.24128.5" />
<PackageReference Include="Microsoft.Extensions.FileSystemGlobbing" Version="9.0.0-preview.2.24128.5" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.0-preview.2.24128.5" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="9.0.0-preview.2.24128.5" />
<PackageReference Include="Microsoft.Extensions.Hosting.Systemd" Version="9.0.0-preview.2.24128.5" />
<PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="9.0.0-preview.2.24128.5" />
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.0-preview.2.24128.5" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.0-preview.2.24128.5" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.0-preview.2.24128.5" />
<PackageReference Include="Microsoft.Extensions.Logging.Configuration" Version="9.0.0-preview.2.24128.5" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="9.0.0-preview.2.24128.5" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="9.0.0-preview.2.24128.5" />
<PackageReference Include="Microsoft.Extensions.Logging.EventLog" Version="9.0.0-preview.2.24128.5" />
<PackageReference Include="Microsoft.Extensions.Logging.EventSource" Version="9.0.0-preview.2.24128.5" />
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.0-preview.2.24128.5" />
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="9.0.0-preview.2.24128.5" />
<PackageReference Include="Microsoft.Extensions.Primitives" Version="9.0.0-preview.2.24128.5" />
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="9.0.0-preview.2.24128.5" />
<PackageReference Include="System.Diagnostics.EventLog" Version="9.0.0-preview.2.24128.5" />
<PackageReference Include="System.ServiceProcess.ServiceController" Version="9.0.0-preview.2.24128.5" />
<PackageReference Include="System.Text.Encodings.Web" Version="9.0.0-preview.2.24128.5" />
<PackageReference Include="System.Text.Json" Version="9.0.0-preview.2.24128.5" />
</ItemGroup>
<ItemGroup Condition="$(TargetFramework) == 'net8.0'">
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
Expand All @@ -83,7 +83,7 @@
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.1" />
<PackageReference Include="Microsoft.Extensions.Diagnostics" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Diagnostics.Abstractions" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.FileProviders.Abstractions" Version="8.0.0" />
Expand All @@ -95,7 +95,7 @@
<PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Configuration" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0" />
Expand All @@ -108,6 +108,6 @@
<PackageReference Include="System.Diagnostics.EventLog" Version="8.0.0" />
<PackageReference Include="System.ServiceProcess.ServiceController" Version="8.0.0" />
<PackageReference Include="System.Text.Encodings.Web" Version="8.0.0" />
<PackageReference Include="System.Text.Json" Version="8.0.2" />
<PackageReference Include="System.Text.Json" Version="8.0.3" />
</ItemGroup>
</Project>

0 comments on commit 12770c7

Please sign in to comment.