From e312af9fd98d75d8ea6f914f58955804305010de Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 13 Nov 2025 21:04:25 +0000 Subject: [PATCH 1/3] Bump BenchmarkDotNet and BenchmarkDotNet.Diagnostics.Windows Bumps BenchmarkDotNet from 0.15.6 to 0.15.7 Bumps BenchmarkDotNet.Diagnostics.Windows from 0.15.6 to 0.15.7 --- updated-dependencies: - dependency-name: BenchmarkDotNet dependency-version: 0.15.7 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: BenchmarkDotNet.Diagnostics.Windows dependency-version: 0.15.7 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- performance/benchmark/PerformanceTests.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/performance/benchmark/PerformanceTests.csproj b/performance/benchmark/PerformanceTests.csproj index b3c779c35..7e4937daf 100644 --- a/performance/benchmark/PerformanceTests.csproj +++ b/performance/benchmark/PerformanceTests.csproj @@ -14,8 +14,8 @@ CA1822 - - + + From d86f230343fa55dd4ae55f18ca914e527f4a2637 Mon Sep 17 00:00:00 2001 From: Vincent Biret Date: Fri, 14 Nov 2025 10:12:49 -0500 Subject: [PATCH 2/3] ci: updates build scripts reader path Signed-off-by: Vincent Biret --- build.cmd | 4 ++-- build.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/build.cmd b/build.cmd index 43cc95956..07daf7b6c 100644 --- a/build.cmd +++ b/build.cmd @@ -6,9 +6,9 @@ dotnet msbuild %PROJ% /t:restore /p:Configuration=Release dotnet msbuild %PROJ% /t:build /p:Configuration=Release dotnet msbuild %PROJ% /t:pack /p:Configuration=Release;PackageOutputPath=%~dp0artifacts -Echo Building Microsoft.OpenApi.Readers +Echo Building Microsoft.OpenApi.YamlReader -SET PROJ=%~dp0src\Microsoft.OpenApi.Readers\Microsoft.OpenApi.Readers.csproj +SET PROJ=%~dp0src\Microsoft.OpenApi.YamlReader\Microsoft.OpenApi.YamlReader.csproj dotnet msbuild %PROJ% /t:restore /p:Configuration=Release dotnet msbuild %PROJ% /t:build /p:Configuration=Release dotnet msbuild %PROJ% /t:pack /p:Configuration=Release;PackageOutputPath=%~dp0artifacts diff --git a/build.sh b/build.sh index e716aa272..0de30b6df 100755 --- a/build.sh +++ b/build.sh @@ -7,9 +7,9 @@ dotnet msbuild "$PROJ" /t:restore /p:Configuration=Release dotnet msbuild "$PROJ" /t:build /p:Configuration=Release dotnet msbuild "$PROJ" /t:pack "/p:Configuration=Release;PackageOutputPath=$(dirname "$0")/artifacts" -echo "Building Microsoft.OpenApi.Readers" +echo "Building Microsoft.OpenApi.YamlReader" -PROJ="$(dirname "$0")/src/Microsoft.OpenApi.Readers/Microsoft.OpenApi.Readers.csproj" +PROJ="$(dirname "$0")/src/Microsoft.OpenApi.YamlReader/Microsoft.OpenApi.YamlReader.csproj" dotnet msbuild "$PROJ" /t:restore /p:Configuration=Release dotnet msbuild "$PROJ" /t:build /p:Configuration=Release dotnet msbuild "$PROJ" /t:pack "/p:Configuration=Release;PackageOutputPath=$(dirname "$0")/artifacts" From 1e75f9a5d7021a8505eeeab730339b3b7e619baa Mon Sep 17 00:00:00 2001 From: Vincent Biret Date: Fri, 14 Nov 2025 10:13:50 -0500 Subject: [PATCH 3/3] ci: suppresses error about compiler mismatch for performance test project --- performance/benchmark/PerformanceTests.csproj | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/performance/benchmark/PerformanceTests.csproj b/performance/benchmark/PerformanceTests.csproj index 7e4937daf..53c0784d7 100644 --- a/performance/benchmark/PerformanceTests.csproj +++ b/performance/benchmark/PerformanceTests.csproj @@ -11,7 +11,8 @@ true Release false - CA1822 + + CA1822;CS9057;