Skip to content

Commit

Permalink
Release maui-1.0.0 (#317)
Browse files Browse the repository at this point in the history
  • Loading branch information
frederikprijck authored Jan 4, 2024
1 parent 39322ae commit bd76017
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ This library makes use of the [IdentityModel/IdentityModel.OidcClient](https://g

## Documentation

- [MAUI Quickstart](https://auth0.com/docs/quickstart/native/maui) - our interactive guide for quickly adding login, logout and user information to a MAUI application using Auth0.
- [UWP Quickstart](https://auth0.com/docs/quickstart/native/windows-uwp-csharp) - our interactive guide for quickly adding login, logout and user information to a UWP application using Auth0.
- [WPF/WinForms Quickstart](https://auth0.com/docs/quickstart/native/wpf-winforms) - our interactive guide for quickly adding login, logout and user information to a WPF and WinForms application using Auth0.
- [Xamarin Quickstart](https://auth0.com/docs/quickstart/native/xamarin) - our interactive guide for quickly adding login, logout and user information to a Xamarin application using Auth0.
Expand Down Expand Up @@ -41,6 +42,7 @@ Install-Package Auth0.OidcClient.WPF
Install-Package Auth0.OidcClient.WinForms
Install-Package Auth0.OidcClient.iOS
Install-Package Auth0.OidcClient.AndroidX
Install-Package Auth0.OidcClient.MAUI
```

> *Note*: As `Auth0.OidcClient.Android` relies on [support libraries](https://developer.android.com/topic/libraries/support-library) which have been deprecated by Google since 2019, there is no way for `Auth0.OidcClient.Android` to ever work on .NET 6 and above. If you wish to integrate Auth0 in an Android application, use `Auth0.OidcClient.AndroidX` instead.
Expand Down Expand Up @@ -78,6 +80,8 @@ var auth0Client = new Auth0Client(new Auth0ClientOptions
});
```

> ℹ️ Note that MAUI needs more specific configuration, ensure to read [our instructions for MAUI](ster/src/Auth0.OidcClient.MAUI) when you are targetting MAUI.
## API reference
Read [the full API reference](https://auth0.github.io/auth0-oidc-client-net) to find out about the public API's this SDK exposes.

Expand Down
5 changes: 4 additions & 1 deletion nuget/Auth0.OidcClient.MAUI.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package>
<metadata>
<id>Auth0.OidcClient.MAUI</id>
<version>1.0.0-beta.1</version>
<version>1.0.0</version>
<authors>Auth0</authors>
<owners>Auth0</owners>
<license type="expression">Apache-2.0</license>
Expand All @@ -11,6 +11,9 @@
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Auth0 OIDC Client for MAUI apps</description>
<releaseNotes>
Version 1.0.0
- Initial release for adding support for MAUI on Android, iOS, macOS, and Windows.

Version 1.0.0-beta.1
- Update README

Expand Down
2 changes: 1 addition & 1 deletion src/Auth0.OidcClient.MAUI/.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.0-beta.1
1.0.0
4 changes: 1 addition & 3 deletions src/Auth0.OidcClient.MAUI/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,12 @@

Integrate Auth0 in a MAUI application targetting iOS, macOS or Android by using the `Auth0.OIdcClient.MAUI` SDK.

> ℹ️ This SDK is available in **Beta**! Try it out today, any feedback is appreciated. Just as with any beta release, **using this in production is highly discouraged**.
## Install the SDK

The SDK can be installed through Nuget:

```sh
Install-Package Auth0.OIdcClient.MAUI -IncludePrerelease
Install-Package Auth0.OIdcClient.MAUI
```

## Configuring the SDK
Expand Down

0 comments on commit bd76017

Please sign in to comment.