Skip to content

Commit

Permalink
Release support for .NET6 for iOS and AndroidX (#279)
Browse files Browse the repository at this point in the history
  • Loading branch information
frederikprijck authored Sep 20, 2023
1 parent 2d06718 commit 40ed6c3
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 13 deletions.
5 changes: 4 additions & 1 deletion nuget/Auth0.OidcClient.Android.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package>
<metadata>
<id>Auth0.OidcClient.Android</id>
<version>3.4.1</version>
<version>3.5.0</version>
<authors>Auth0</authors>
<owners>Auth0</owners>
<license type="expression">Apache-2.0</license>
Expand All @@ -12,6 +12,9 @@
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Auth0 OIDC Client for Xamarin Android apps</description>
<releaseNotes>
Version 3.5.0
- Set Android Target Framework Version to v11

Version 3.4.1
- Do not lowercase org_name claim

Expand Down
6 changes: 5 additions & 1 deletion nuget/Auth0.OidcClient.AndroidX.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package>
<metadata>
<id>Auth0.OidcClient.AndroidX</id>
<version>3.4.1</version>
<version>3.5.0</version>
<authors>Auth0</authors>
<owners>Auth0</owners>
<license type="expression">Apache-2.0</license>
Expand All @@ -12,6 +12,10 @@
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Auth0 OIDC Client for Xamarin AndroidX apps</description>
<releaseNotes>
Version 3.5.0
- Set Android Target Framework Version to v11
- Support .NET6 and above

Version 3.4.1
- Do not lowercase org_name claim

Expand Down
5 changes: 4 additions & 1 deletion nuget/Auth0.OidcClient.iOS.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package>
<metadata>
<id>Auth0.OidcClient.iOS</id>
<version>3.5.1</version>
<version>3.6.0</version>
<authors>Auth0</authors>
<owners>Auth0</owners>
<license type="expression">Apache-2.0</license>
Expand All @@ -12,6 +12,9 @@
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Auth0 OIDC Client for Xamarin iOS apps</description>
<releaseNotes>
Version 3.6.0
- Support .NET6 and above

Version 3.5.1
- Do not lowercase org_name claim

Expand Down
6 changes: 3 additions & 3 deletions src/Auth0.OidcClient.Android/Auth0.OidcClient.Android.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<AssemblyName>Auth0.OidcClient</AssemblyName>
<Product>Auth0.OidcClient</Product>
<AssemblyTitle>Auth0.OidcClient.Android</AssemblyTitle>
<AssemblyVersion>3.4.1</AssemblyVersion>
<AssemblyFileVersion>3.4.1</AssemblyFileVersion>
<Version>3.4.1</Version>
<AssemblyVersion>3.5.0</AssemblyVersion>
<AssemblyFileVersion>3.5.0</AssemblyFileVersion>
<Version>3.5.0</Version>
<NeutralLanguage>en</NeutralLanguage>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<DefineConstants>$(DefineConstants);</DefineConstants>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<AssemblyName>Auth0.OidcClient</AssemblyName>
<Product>Auth0.OidcClient</Product>
<AssemblyTitle>Auth0.OidcClient.AndroidX</AssemblyTitle>
<AssemblyVersion>3.4.1</AssemblyVersion>
<AssemblyFileVersion>3.4.1</AssemblyFileVersion>
<Version>3.4.1</Version>
<AssemblyVersion>3.5.0</AssemblyVersion>
<AssemblyFileVersion>3.5.0</AssemblyFileVersion>
<Version>3.5.0</Version>
<NeutralLanguage>en</NeutralLanguage>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<DefineConstants>$(DefineConstants);</DefineConstants>
Expand Down
8 changes: 4 additions & 4 deletions src/Auth0.OidcClient.iOS/Auth0.OidcClient.iOS.csproj
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<Project Sdk="Xamarin.Legacy.Sdk/0.2.0-alpha4">
<Project Sdk="Xamarin.Legacy.Sdk/0.2.0-alpha4">
<PropertyGroup>
<TargetFrameworks>xamarin.ios10;net6.0-ios</TargetFrameworks>
<RootNamespace>Auth0.OidcClient</RootNamespace>
<AssemblyName>Auth0.OidcClient</AssemblyName>
<AssemblyTitle>Auth0.OidcClient.iOS</AssemblyTitle>
<Product>Auth0.OidcClient</Product>
<AssemblyVersion>3.5.1</AssemblyVersion>
<AssemblyFileVersion>3.5.1</AssemblyFileVersion>
<Version>3.5.1</Version>
<AssemblyVersion>3.6.0</AssemblyVersion>
<AssemblyFileVersion>3.6.0</AssemblyFileVersion>
<Version>3.6.0</Version>
<NeutralLanguage>en</NeutralLanguage>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<DefineConstants>$(DefineConstants);</DefineConstants>
Expand Down

0 comments on commit 40ed6c3

Please sign in to comment.