diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4eaacc0c..c4983522 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,15 +22,6 @@ jobs: uses: actions/setup-dotnet@v3 with: dotnet-version: '8.0.404' - - - name: dotnet version details before - run: dotnet --info - - - name: List workloads before uninstall - run: dotnet workload list - - - name: workload version - run: dotnet workload --version - name: Install .NET Android and iOS workload run: dotnet workload install android ios maui --version 8.0.404 @@ -38,30 +29,17 @@ jobs: - name: workload update version run: dotnet workload update --version 8.0.404 - - name: workload version after update - run: dotnet workload --version - - - name: List workloads - run: dotnet workload list - - - name: dotnet version details + - name: Dotnet framework and workload versions run: dotnet --info - - name: List workloads - run: dotnet workload list - - - name: Update workloads - run: dotnet workload update - - - name: List workloads after update - run: dotnet workload list - - name: Setup NuGet uses: nuget/setup-nuget@v1 - name: Restore NuGet - run: dotnet restore Auth0.OidcClient.All.sln - + run: nuget restore Auth0.OidcClient.All.sln + + - name: Setup MSBuild + uses: microsoft/setup-msbuild@v1.1 - name: Build run: msbuild Auth0.OidcClient.All.sln -t:rebuild -verbosity:diag -property:Configuration=Release diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bbc4c3b0..8da5d348 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,9 +34,11 @@ jobs: - name: Install .NET uses: actions/setup-dotnet@v3 + with: + dotnet-version: '8.0.404' - name: Install .NET Android and iOS workload - run: dotnet workload install android ios maui + run: dotnet workload install android ios maui --version 8.0.404 - name: Setup NuGet uses: nuget/setup-nuget@v1 diff --git a/.github/workflows/snyk.yml b/.github/workflows/snyk.yml index 52893e98..d3e9f686 100644 --- a/.github/workflows/snyk.yml +++ b/.github/workflows/snyk.yml @@ -42,9 +42,11 @@ jobs: - name: Install .NET uses: actions/setup-dotnet@v3 + with: + dotnet-version: '8.0.404' - name: Install .NET Android and iOS workload - run: dotnet workload install android ios maui + run: dotnet workload install android ios maui --version 8.0.404 - name: Setup NuGet uses: nuget/setup-nuget@v1 diff --git a/src/Auth0.OidcClient.Android/Auth0.OidcClient.Android.csproj b/src/Auth0.OidcClient.Android/Auth0.OidcClient.Android.csproj index 215fd989..f784095d 100644 --- a/src/Auth0.OidcClient.Android/Auth0.OidcClient.Android.csproj +++ b/src/Auth0.OidcClient.Android/Auth0.OidcClient.Android.csproj @@ -46,7 +46,7 @@ - + diff --git a/src/Auth0.OidcClient.AndroidX/Auth0.OidcClient.AndroidX.csproj b/src/Auth0.OidcClient.AndroidX/Auth0.OidcClient.AndroidX.csproj index 494ba890..6de1f934 100644 --- a/src/Auth0.OidcClient.AndroidX/Auth0.OidcClient.AndroidX.csproj +++ b/src/Auth0.OidcClient.AndroidX/Auth0.OidcClient.AndroidX.csproj @@ -40,7 +40,7 @@ - 6.0.0 + 5.2.1 1.3.0.6 diff --git a/src/Auth0.OidcClient.Core/Auth0.OidcClient.Core.csproj b/src/Auth0.OidcClient.Core/Auth0.OidcClient.Core.csproj index 63c43dd8..0a608a22 100644 --- a/src/Auth0.OidcClient.Core/Auth0.OidcClient.Core.csproj +++ b/src/Auth0.OidcClient.Core/Auth0.OidcClient.Core.csproj @@ -13,8 +13,7 @@ ..\..\build\Auth0OidcClientStrongName.snk - - + diff --git a/src/Auth0.OidcClient.MAUI/Auth0.OidcClient.MAUI.csproj b/src/Auth0.OidcClient.MAUI/Auth0.OidcClient.MAUI.csproj index 366e36b8..77672f7c 100644 --- a/src/Auth0.OidcClient.MAUI/Auth0.OidcClient.MAUI.csproj +++ b/src/Auth0.OidcClient.MAUI/Auth0.OidcClient.MAUI.csproj @@ -26,7 +26,7 @@ true - + diff --git a/src/Auth0.OidcClient.UWP/Auth0.OidcClient.UWP.csproj b/src/Auth0.OidcClient.UWP/Auth0.OidcClient.UWP.csproj index 3c5f85b8..e06c970d 100644 --- a/src/Auth0.OidcClient.UWP/Auth0.OidcClient.UWP.csproj +++ b/src/Auth0.OidcClient.UWP/Auth0.OidcClient.UWP.csproj @@ -39,6 +39,6 @@ - + \ No newline at end of file diff --git a/src/Auth0.OidcClient.WPF/Auth0.OidcClient.WPF.csproj b/src/Auth0.OidcClient.WPF/Auth0.OidcClient.WPF.csproj index 5e36e3d8..5c527338 100644 --- a/src/Auth0.OidcClient.WPF/Auth0.OidcClient.WPF.csproj +++ b/src/Auth0.OidcClient.WPF/Auth0.OidcClient.WPF.csproj @@ -24,7 +24,7 @@ - 6.0.0 + 5.2.1 diff --git a/src/Auth0.OidcClient.WinForms/Auth0.OidcClient.WinForms.csproj b/src/Auth0.OidcClient.WinForms/Auth0.OidcClient.WinForms.csproj index f656b9cf..8d12cc95 100644 --- a/src/Auth0.OidcClient.WinForms/Auth0.OidcClient.WinForms.csproj +++ b/src/Auth0.OidcClient.WinForms/Auth0.OidcClient.WinForms.csproj @@ -24,7 +24,7 @@ - 6.0.0 + 5.2.1 diff --git a/src/Auth0.OidcClient.iOS/Auth0.OidcClient.iOS.csproj b/src/Auth0.OidcClient.iOS/Auth0.OidcClient.iOS.csproj index bed75ee3..9536cafd 100644 --- a/src/Auth0.OidcClient.iOS/Auth0.OidcClient.iOS.csproj +++ b/src/Auth0.OidcClient.iOS/Auth0.OidcClient.iOS.csproj @@ -40,7 +40,7 @@ - 6.0.0 + 5.2.1 \ No newline at end of file diff --git a/test/Android/Android.csproj b/test/Android/Android.csproj index 02f3f5a5..274ffd68 100644 --- a/test/Android/Android.csproj +++ b/test/Android/Android.csproj @@ -89,7 +89,7 @@ - 6.0.0 + 5.2.1 diff --git a/test/UWP/UWP.csproj b/test/UWP/UWP.csproj index 31c084c8..d8fad9af 100644 --- a/test/UWP/UWP.csproj +++ b/test/UWP/UWP.csproj @@ -141,7 +141,7 @@ - 6.0.0 + 5.2.1 6.2.12 diff --git a/test/WPF/WPF.csproj b/test/WPF/WPF.csproj index 79d56d66..182770c1 100644 --- a/test/WPF/WPF.csproj +++ b/test/WPF/WPF.csproj @@ -107,7 +107,7 @@ - 6.0.0 + 5.2.1 diff --git a/test/WinForms/WinForms.csproj b/test/WinForms/WinForms.csproj index e080e02f..d71042e3 100644 --- a/test/WinForms/WinForms.csproj +++ b/test/WinForms/WinForms.csproj @@ -123,7 +123,7 @@ - 6.0.0 + 5.2.1 diff --git a/test/iOS/iOS.csproj b/test/iOS/iOS.csproj index d0bb2f37..32a595da 100644 --- a/test/iOS/iOS.csproj +++ b/test/iOS/iOS.csproj @@ -129,7 +129,7 @@ - 6.0.0 + 5.2.1