From 7b8da20f5b8b7952a423d84298a4d8f266d6338e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 08:17:45 +0000 Subject: [PATCH 1/2] Bump Microsoft.VisualStudio.Threading.Analyzers from 17.14.15 to 18.7.23 --- updated-dependencies: - dependency-name: Microsoft.VisualStudio.Threading.Analyzers dependency-version: 18.7.23 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Directory.Build.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Directory.Build.props b/Directory.Build.props index 0a06f6f..42b17a4 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -32,7 +32,7 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive From 86f388e45d9636c9492aeea84a39569881546c37 Mon Sep 17 00:00:00 2001 From: Oleksandr Akhtyrskiy Date: Tue, 30 Jun 2026 08:35:05 -0600 Subject: [PATCH 2/2] Suppress VSTHRD103 warning for NUnit's Assert.That assertions in unit tests --- tests/Keystone.Cli.UnitTests/Keystone.Cli.UnitTests.csproj | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/Keystone.Cli.UnitTests/Keystone.Cli.UnitTests.csproj b/tests/Keystone.Cli.UnitTests/Keystone.Cli.UnitTests.csproj index 5bace5f..620657a 100644 --- a/tests/Keystone.Cli.UnitTests/Keystone.Cli.UnitTests.csproj +++ b/tests/Keystone.Cli.UnitTests/Keystone.Cli.UnitTests.csproj @@ -4,7 +4,9 @@ false true - $(NoWarn);CA1707 + + $(NoWarn);CA1707;VSTHRD103