From 9eb140d9f2e81226c71818859269266263b46be6 Mon Sep 17 00:00:00 2001 From: Adam Date: Thu, 3 Oct 2024 13:57:49 -0600 Subject: [PATCH 1/2] version bump from beta --- Google.Authenticator/Google.Authenticator.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Google.Authenticator/Google.Authenticator.csproj b/Google.Authenticator/Google.Authenticator.csproj index 34fe6e7..740c33c 100644 --- a/Google.Authenticator/Google.Authenticator.csproj +++ b/Google.Authenticator/Google.Authenticator.csproj @@ -6,7 +6,7 @@ Google Authenticator Two-Factor Authentication Library (Not officially affiliated with Google.) Brandon Potter Brandon Potter - 3.3.0-beta1 + 3.3.0 Added the ability to use a different Time Step than the default 30 seconds Apache-2.0 https://github.com/BrandonPotter/GoogleAuthenticator From bc8f5d23128e0a74988099692bcb9842ce92b81b Mon Sep 17 00:00:00 2001 From: Adam Date: Mon, 22 Sep 2025 08:04:20 -0600 Subject: [PATCH 2/2] mac build fixes --- build/azure-pipeline.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/build/azure-pipeline.yaml b/build/azure-pipeline.yaml index c3b75c8..803adb1 100644 --- a/build/azure-pipeline.yaml +++ b/build/azure-pipeline.yaml @@ -34,6 +34,18 @@ jobs: - script: dotnet build ./Google.Authenticator.Tests/Google.Authenticator.Tests.csproj --configuration $(buildConfiguration) --no-restore --no-dependencies displayName: build tests + + - task: UseDotNet@2 + displayName: Install dotnet 6 + inputs: + packageType: sdk + version: 6.x + + - task: UseDotNet@2 + displayName: Install dotnet 7 + inputs: + packageType: sdk + version: 7.x - task: DotNetCoreCLI@2 displayName: test