From 7d59cd55b10b5ddc125dcc6d400c85988be96430 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Jul 2026 00:12:41 +0000 Subject: [PATCH 1/2] Bump the nuget-dependencies group with 3 updates Bumps demaconsulting.pandoctool from 3.10.0 to 3.10.1 Bumps demaconsulting.sysml2tools.tool from 0.1.0-beta.13 to 0.1.0 Bumps SonarAnalyzer.CSharp from 10.29.0.143774 to 10.30.0.144632 --- updated-dependencies: - dependency-name: demaconsulting.pandoctool dependency-version: 3.10.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies - dependency-name: demaconsulting.sysml2tools.tool dependency-version: 0.1.0 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies - dependency-name: SonarAnalyzer.CSharp dependency-version: 10.30.0.144632 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-dependencies - dependency-name: SonarAnalyzer.CSharp dependency-version: 10.30.0.144632 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-dependencies ... Signed-off-by: dependabot[bot] --- .config/dotnet-tools.json | 4 ++-- .../DemaConsulting.NuGet.Caching.csproj | 2 +- .../DemaConsulting.NuGet.Caching.Tests.csproj | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index d17e8e3..6b234a0 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -9,7 +9,7 @@ ] }, "demaconsulting.pandoctool": { - "version": "3.10.0", + "version": "3.10.1", "commands": [ "pandoc" ] @@ -63,7 +63,7 @@ ] }, "demaconsulting.sysml2tools.tool": { - "version": "0.1.0-beta.13", + "version": "0.1.0", "commands": [ "sysml2tools" ] diff --git a/src/DemaConsulting.NuGet.Caching/DemaConsulting.NuGet.Caching.csproj b/src/DemaConsulting.NuGet.Caching/DemaConsulting.NuGet.Caching.csproj index 14bcd8b..4fcfcfc 100644 --- a/src/DemaConsulting.NuGet.Caching/DemaConsulting.NuGet.Caching.csproj +++ b/src/DemaConsulting.NuGet.Caching/DemaConsulting.NuGet.Caching.csproj @@ -86,7 +86,7 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/test/DemaConsulting.NuGet.Caching.Tests/DemaConsulting.NuGet.Caching.Tests.csproj b/test/DemaConsulting.NuGet.Caching.Tests/DemaConsulting.NuGet.Caching.Tests.csproj index 1f02932..cce6fad 100644 --- a/test/DemaConsulting.NuGet.Caching.Tests/DemaConsulting.NuGet.Caching.Tests.csproj +++ b/test/DemaConsulting.NuGet.Caching.Tests/DemaConsulting.NuGet.Caching.Tests.csproj @@ -65,7 +65,7 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive - + all runtime; build; native; contentfiles; analyzers; buildtransitive From 2b775a005518ea087175bdf95a6747ecf3dd1ea0 Mon Sep 17 00:00:00 2001 From: Malcolm Nixon Date: Mon, 27 Jul 2026 11:43:00 -0400 Subject: [PATCH 2/2] Remove unnecessary null-forgiving operator flagged by S8969 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../DemaConsulting.NuGet.Caching.Tests/NuGetCacheServerTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/DemaConsulting.NuGet.Caching.Tests/NuGetCacheServerTests.cs b/test/DemaConsulting.NuGet.Caching.Tests/NuGetCacheServerTests.cs index 13baea0..8f206af 100644 --- a/test/DemaConsulting.NuGet.Caching.Tests/NuGetCacheServerTests.cs +++ b/test/DemaConsulting.NuGet.Caching.Tests/NuGetCacheServerTests.cs @@ -241,7 +241,7 @@ private static bool IsV2FallbackRequest(object logEntry) return string.Equals(path, "/", StringComparison.Ordinal) || string.Equals(path, "/$metadata", StringComparison.OrdinalIgnoreCase) || string.Equals(path, "/FindPackagesById()", StringComparison.OrdinalIgnoreCase) - || path!.StartsWith("/Packages(", StringComparison.OrdinalIgnoreCase); + || path.StartsWith("/Packages(", StringComparison.OrdinalIgnoreCase); } ///