From 5c60a820b3ebed5a26b02bfc2b69780c9ae6c065 Mon Sep 17 00:00:00 2001 From: Brad Wilson Date: Tue, 12 Nov 2024 20:40:41 -0800 Subject: [PATCH] Latest dependencies --- src/Directory.Build.props | 6 +++--- .../Utility/CodeAnalyzerHelper.cs | 12 ++++++------ .../xunit.analyzers.tests.csproj | 10 +++++----- tools/builder/build.csproj | 2 +- tools/builder/models/BuildContext.cs | 2 +- 5 files changed, 16 insertions(+), 16 deletions(-) diff --git a/src/Directory.Build.props b/src/Directory.Build.props index a088ca79..1b1964a4 100644 --- a/src/Directory.Build.props +++ b/src/Directory.Build.props @@ -78,9 +78,9 @@ - - - + + + diff --git a/src/xunit.analyzers.tests/Utility/CodeAnalyzerHelper.cs b/src/xunit.analyzers.tests/Utility/CodeAnalyzerHelper.cs index 32aac83b..1368946f 100644 --- a/src/xunit.analyzers.tests/Utility/CodeAnalyzerHelper.cs +++ b/src/xunit.analyzers.tests/Utility/CodeAnalyzerHelper.cs @@ -61,10 +61,10 @@ static CodeAnalyzerHelper() new PackageIdentity("Microsoft.Extensions.Primitives", "8.0.0"), new PackageIdentity("System.Threading.Tasks.Extensions", "4.5.4"), new PackageIdentity("System.Text.Json", "8.0.0"), - new PackageIdentity("xunit.v3.assert", "0.6.0-pre.1"), - new PackageIdentity("xunit.v3.common", "0.6.0-pre.1"), - new PackageIdentity("xunit.v3.extensibility.core", "0.6.0-pre.1"), - new PackageIdentity("xunit.v3.runner.common", "0.6.0-pre.1") + new PackageIdentity("xunit.v3.assert", "0.6.0-pre.9"), + new PackageIdentity("xunit.v3.common", "0.6.0-pre.9"), + new PackageIdentity("xunit.v3.extensibility.core", "0.6.0-pre.9"), + new PackageIdentity("xunit.v3.runner.common", "0.6.0-pre.9") ) ); @@ -74,8 +74,8 @@ static CodeAnalyzerHelper() new PackageIdentity("Microsoft.Extensions.Primitives", "8.0.0"), new PackageIdentity("System.Threading.Tasks.Extensions", "4.5.4"), new PackageIdentity("System.Text.Json", "8.0.0"), - new PackageIdentity("xunit.v3.common", "0.6.0-pre.1"), - new PackageIdentity("xunit.v3.runner.utility", "0.6.0-pre.1") + new PackageIdentity("xunit.v3.common", "0.6.0-pre.9"), + new PackageIdentity("xunit.v3.runner.utility", "0.6.0-pre.9") ) ); } diff --git a/src/xunit.analyzers.tests/xunit.analyzers.tests.csproj b/src/xunit.analyzers.tests/xunit.analyzers.tests.csproj index 68ab3354..07973dc2 100644 --- a/src/xunit.analyzers.tests/xunit.analyzers.tests.csproj +++ b/src/xunit.analyzers.tests/xunit.analyzers.tests.csproj @@ -28,11 +28,11 @@ - - - - - + + + + + diff --git a/tools/builder/build.csproj b/tools/builder/build.csproj index d3724456..d8780257 100644 --- a/tools/builder/build.csproj +++ b/tools/builder/build.csproj @@ -16,7 +16,7 @@ - + diff --git a/tools/builder/models/BuildContext.cs b/tools/builder/models/BuildContext.cs index 84671d16..4fe9e60e 100644 --- a/tools/builder/models/BuildContext.cs +++ b/tools/builder/models/BuildContext.cs @@ -16,7 +16,7 @@ public partial IReadOnlyList GetSkippedAnalysisFolders() => partial void Initialize() { - consoleRunner = Path.Combine(NuGetPackageCachePath, "xunit.v3.runner.console", "0.6.0-pre.1", "tools", "net472", "xunit.v3.runner.console.exe"); + consoleRunner = Path.Combine(NuGetPackageCachePath, "xunit.v3.runner.console", "0.6.0-pre.9", "tools", "net472", "xunit.v3.runner.console.exe"); if (!File.Exists(consoleRunner)) throw new InvalidOperationException($"Cannot find console runner at '{consoleRunner}'"); }