Skip to content

Commit

Permalink
update beta info
Browse files Browse the repository at this point in the history
  • Loading branch information
frederikprijck committed Nov 6, 2023
1 parent 89e28e0 commit 5f2e66d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions articles/quickstart/native/maui/01-login.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions articles/quickstart/native/maui/index.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ language:
framework:
- maui
hybrid: false
beta: true
topics:
- quickstart
contentType: tutorial
Expand Down
6 changes: 3 additions & 3 deletions articles/quickstart/native/maui/interactive.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5f2e66d

Please sign in to comment.