From f6115f5a280918b4703c491821551e9b24630214 Mon Sep 17 00:00:00 2001 From: Frederik Prijck Date: Mon, 8 Jan 2024 12:05:49 +0100 Subject: [PATCH] Release MAUI quickstart for GA (#10356) * Release MAUI quickstart for GA * Update 01-login.md * Update interactive.md --- articles/quickstart/native/maui/01-login.md | 8 ++++---- articles/quickstart/native/maui/index.yml | 1 - articles/quickstart/native/maui/interactive.md | 8 ++++---- 3 files changed, 8 insertions(+), 9 deletions(-) diff --git a/articles/quickstart/native/maui/01-login.md b/articles/quickstart/native/maui/01-login.md index 3e4d7dbc85..3242d02d90 100755 --- a/articles/quickstart/native/maui/01-login.md +++ b/articles/quickstart/native/maui/01-login.md @@ -45,15 +45,15 @@ When following along with this quickstart, configure `myapp://callback` as the * Auth0 provides a [MAUI](https://www.nuget.org/packages/Auth0.OidcClient.MAUI/) SDK to simplify the process of implementing Auth0 authentication in MAUI applications. -Use the NuGet Package Manager (Tools -> Library Package Manager -> Package Manager Console) to install the `Auth0.OidcClient.MAUI` package (ensure to show pre-releases). +Use the NuGet Package Manager (Tools -> Library Package Manager -> Package Manager Console) to install the `Auth0.OidcClient.MAUI` package. Alternatively, you can use the Nuget Package Manager Console (`Install-Package`) or the `dotnet` CLI (`dotnet add`). ```ps -Install-Package Auth0.OidcClient.MAUI -IncludePrerelease +Install-Package Auth0.OidcClient.MAUI ``` ``` -dotnet add package Auth0.OidcClient.MAUI --prerelease +dotnet add package Auth0.OidcClient.MAUI ``` ## Platform specific configuration @@ -154,4 +154,4 @@ if (loginResult.IsError == false) var email = user.FindFirst(c => c.Type == "email")?.Value; var picture = user.FindFirst(c => c.Type == "picture")?.Value; } -``` \ No newline at end of file +``` diff --git a/articles/quickstart/native/maui/index.yml b/articles/quickstart/native/maui/index.yml index 77bccc2e83..f0dc62f629 100755 --- a/articles/quickstart/native/maui/index.yml +++ b/articles/quickstart/native/maui/index.yml @@ -11,7 +11,6 @@ language: framework: - maui hybrid: false -beta: true topics: - quickstart contentType: tutorial diff --git a/articles/quickstart/native/maui/interactive.md b/articles/quickstart/native/maui/interactive.md index 12075b1e4f..2f6da0b191 100644 --- a/articles/quickstart/native/maui/interactive.md +++ b/articles/quickstart/native/maui/interactive.md @@ -37,15 +37,15 @@ The MAUI SDK supports Android, iOS, macOS, and Windows. Continue reading for pla Auth0 provides a [MAUI](https://www.nuget.org/packages/Auth0.OidcClient.MAUI/) SDK to simplify the process of implementing Auth0 authentication in MAUI applications. -Use the NuGet Package Manager (Tools -> Library Package Manager -> Package Manager Console) to install the `Auth0.OidcClient.MAUI` package (ensure to show pre-releases). +Use the NuGet Package Manager (Tools -> Library Package Manager -> Package Manager Console) to install the `Auth0.OidcClient.MAUI` package. Alternatively, you can use the Nuget Package Manager Console (`Install-Package`) or the `dotnet` CLI (`dotnet add`). ```ps -Install-Package Auth0.OidcClient.MAUI -IncludePrerelease +Install-Package Auth0.OidcClient.MAUI ``` ``` -dotnet add package Auth0.OidcClient.MAUI --prerelease +dotnet add package Auth0.OidcClient.MAUI ``` ## Platform specific configuration @@ -200,4 +200,4 @@ Still having issues? Check out our [documentation](https://auth0.com/docs) or vi Now that your users can log in and log out, you will likely want to be able to retrieve the [profile information](https://auth0.com/docs/users/concepts/overview-user-profile) associated with authenticated users. For example, you may want to be able to display a logged-in user’s name or profile picture in your project. -The Auth0 SDK for MAUI provides user information through the `LoginResult.User` property. \ No newline at end of file +The Auth0 SDK for MAUI provides user information through the `LoginResult.User` property.