Skip to content

Commit ac79c76

Browse files
authored
build: update NuGet dependencies (#2198)
- ReactiveUI.Primitives 5.8.0 -> 6.0.0 - TUnit 1.57.0 -> 1.58.0 - Microsoft.VisualStudio.Threading.Analyzers 17.14.15 -> 18.7.23 - SonarAnalyzer.CSharp 10.27.0.140913 -> 10.28.0.143324 Disable SonarAnalyzer S5332 (insecure http) in the test tree: the newer Sonar release flags test-only http:// URLs that are not real endpoints. Legacy System.* (4.x) and the held-back Microsoft.CodeAnalysis.* Roslyn toolchain are intentionally left unchanged per renovate.json; the framework-aligned ASP.NET / Extensions / System.Text.Json bands are already at their latest patch.
1 parent 9bc6754 commit ac79c76

2 files changed

Lines changed: 9 additions & 4 deletions

File tree

src/Directory.Packages.props

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

77
<PropertyGroup Label="Shared Version Variables">
8-
<PrimitivesVersion>5.8.0</PrimitivesVersion>
9-
<TUnitVersion>1.57.0</TUnitVersion>
8+
<PrimitivesVersion>6.0.0</PrimitivesVersion>
9+
<TUnitVersion>1.58.0</TUnitVersion>
1010
</PropertyGroup>
1111

1212
<PropertyGroup Label="Framework-Aligned Versions">
@@ -21,7 +21,7 @@
2121
<MicrosoftCodeAnalysisWorkspacesVersion>4.14.0</MicrosoftCodeAnalysisWorkspacesVersion>
2222

2323
<SourceLinkVersion>10.0.300</SourceLinkVersion>
24-
<ThreadingAnalyzersVersion>17.14.15</ThreadingAnalyzersVersion>
24+
<ThreadingAnalyzersVersion>18.7.23</ThreadingAnalyzersVersion>
2525
<NetFrameworkReferenceAssembliesVersion>1.0.3</NetFrameworkReferenceAssembliesVersion>
2626
</PropertyGroup>
2727

@@ -43,7 +43,7 @@
4343
<ItemGroup Label="Analyzers">
4444
<PackageVersion Include="StyleSharp.Analyzers" Version="3.13.4"/>
4545
<PackageVersion Include="Roslynator.Analyzers" Version="4.15.0"/>
46-
<PackageVersion Include="SonarAnalyzer.CSharp" Version="10.27.0.140913"/>
46+
<PackageVersion Include="SonarAnalyzer.CSharp" Version="10.28.0.143324"/>
4747
<PackageVersion Include="Microsoft.CodeAnalysis.Analyzers" Version="$(MicrosoftCodeAnalysisAnalyzersVersion)"/>
4848
<PackageVersion Include="Microsoft.CodeAnalysis.PublicApiAnalyzers" Version="5.0.0-1.25277.114"/>
4949
</ItemGroup>

src/tests/.editorconfig

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,8 @@ dotnet_diagnostic.CA1063.severity = none # Implement IDisposable correctly
1111
dotnet_diagnostic.CA1065.severity = none # Do not raise exceptions in unexpected locations
1212
dotnet_diagnostic.CA1812.severity = none # Avoid uninstantiated internal classes (test fixtures/DTOs)
1313
dotnet_diagnostic.CA2213.severity = none # Disposable fields should be disposed
14+
15+
###################
16+
# SonarAnalyzer (S) — relaxed for test projects
17+
###################
18+
dotnet_diagnostic.S5332.severity = none # Using http protocol is insecure (test URLs are not real endpoints)

0 commit comments

Comments
 (0)