From c02d27fd7b0ccef55372c406a93e2e944d2238c1 Mon Sep 17 00:00:00 2001 From: Gladwin Johnson <90415114+gladjohn@users.noreply.github.com> Date: Thu, 27 Feb 2025 14:17:56 -0800 Subject: [PATCH 1/3] Update benchmark-action.yml --- .github/workflows/benchmark-action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/benchmark-action.yml b/.github/workflows/benchmark-action.yml index 7a80383a9..c5241cd10 100644 --- a/.github/workflows/benchmark-action.yml +++ b/.github/workflows/benchmark-action.yml @@ -22,7 +22,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-dotnet@v4 with: - dotnet-version: '8.x' + dotnet-version: '9.x' - name: Run benchmark run: cd benchmark && dotnet run -c release -f net8.0 --filter 'Benchmarks.TokenAcquisitionBenchmark.*' --exporters json From cacd3afd8bd0af657c1bdc45209d25dc9d73005f Mon Sep 17 00:00:00 2001 From: Gladwin Johnson <90415114+gladjohn@users.noreply.github.com> Date: Thu, 27 Feb 2025 14:18:27 -0800 Subject: [PATCH 2/3] Update benchmark-action.yml --- .github/workflows/benchmark-action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/benchmark-action.yml b/.github/workflows/benchmark-action.yml index c5241cd10..69d051936 100644 --- a/.github/workflows/benchmark-action.yml +++ b/.github/workflows/benchmark-action.yml @@ -24,7 +24,7 @@ jobs: with: dotnet-version: '9.x' - name: Run benchmark - run: cd benchmark && dotnet run -c release -f net8.0 --filter 'Benchmarks.TokenAcquisitionBenchmark.*' --exporters json + run: cd benchmark && dotnet run -c release -f net9.0 --filter 'Benchmarks.TokenAcquisitionBenchmark.*' --exporters json - name: Download previous benchmark data uses: actions/cache@v4 From b0641cbec32b7f6159c9aac50930112beb25003f Mon Sep 17 00:00:00 2001 From: Gladwin Johnson <90415114+gladjohn@users.noreply.github.com> Date: Thu, 27 Feb 2025 14:19:24 -0800 Subject: [PATCH 3/3] Update Directory.Build.props --- benchmark/Directory.Build.props | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/benchmark/Directory.Build.props b/benchmark/Directory.Build.props index 2966aa1d9..0e9b6205f 100644 --- a/benchmark/Directory.Build.props +++ b/benchmark/Directory.Build.props @@ -2,12 +2,11 @@ <Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))" /> <PropertyGroup> <GenerateDocumentationFile>false</GenerateDocumentationFile> - <TargetFrameworks>net8.0</TargetFrameworks> + <TargetFrameworks>net9.0</TargetFrameworks> <IsPackable>false</IsPackable> <EnablePackageValidation>false</EnablePackageValidation> - <SignAssembly>True</SignAssembly> - <DelaySign>True</DelaySign> - <AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)..\build\msal.snk</AssemblyOriginatorKeyFile> + <SignAssembly>False</SignAssembly> + <DelaySign>False</DelaySign> <ImplicitUsings>enable</ImplicitUsings> <Nullable>enable</Nullable> </PropertyGroup>