diff --git a/articles/quickstart/native/maui/01-login.md b/articles/quickstart/native/maui/01-login.md index b29158def5..5478a78cbf 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. +Use the NuGet Package Manager (Tools -> Library Package Manager -> Package Manager Console) to install the `Auth0.OidcClient.MAUI` package (ensure to show pre-releases). Alternatively, you can use the Nuget Package Manager Console (`Install-Package`) or the `dotnet` CLI (`dotnet add`). ```ps -Install-Package Auth0.OidcClient.MAUI +Install-Package Auth0.OidcClient.MAUI -IncludePrerelease ``` ``` -dotnet add Auth0.OidcClient.MAUI +dotnet add Auth0.OidcClient.MAUI --prerelease ``` ## Platform specific configuration diff --git a/articles/quickstart/native/maui/index.yml b/articles/quickstart/native/maui/index.yml index f0dc62f629..77bccc2e83 100755 --- a/articles/quickstart/native/maui/index.yml +++ b/articles/quickstart/native/maui/index.yml @@ -11,6 +11,7 @@ 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 3fe52c952e..06126941fe 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. For platform specific con 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. +Use the NuGet Package Manager (Tools -> Library Package Manager -> Package Manager Console) to install the `Auth0.OidcClient.MAUI` package (ensure to show pre-releases). Alternatively, you can use the Nuget Package Manager Console (`Install-Package`) or the `dotnet` CLI (`dotnet add`). ```ps -Install-Package Auth0.OidcClient.MAUI +Install-Package Auth0.OidcClient.MAUI -IncludePrerelease ``` ``` -dotnet add Auth0.OidcClient.MAUI +dotnet add Auth0.OidcClient.MAUI --prerelease ``` ## Platform specific configuration