Skip to content

Commit 70086a9

Browse files
authored
Update README.md
1 parent c7d431b commit 70086a9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
**`Clerk.Net.AspNetCore.Security`**: Clerk Authentication support for ASP.NET Core API. Compatible with .NET 8+.
1414

15-
These libraries are configured as native AoT compatible for .NET 8+ consumers.
15+
These libraries are configured as **Native AOT** compatible for .NET 8+ consumers.
1616

1717
**Caution:** As the Clerk OpenAPI spec is constantly changing, the core `Clerk.Net` library does not follow usual SemVer rules, with minor releases usually containing breaking changes. Major releases are only used for breaking changes at the framework level, not for codegen output.
1818

@@ -22,7 +22,7 @@ Make sure to add your `SecretKey` to your application configuration, ideally via
2222

2323
### DI Container Configuration (ASP.NET Core & Worker Services)
2424

25-
1. Install `Clerk.Net.DependencyInjection` from Nuget.
25+
1. Install `Clerk.Net.DependencyInjection` from Nuget or via the .NET CLI: `dotnet add package Clerk.Net.DependencyInjection`
2626
2. Add the following code to your service configuration:
2727

2828
```cs
@@ -79,7 +79,7 @@ For unit testing, see [Unit testing Kiota API clients](https://learn.microsoft.c
7979

8080
You should have a new or existing ASP.NET Core application created before continuing.
8181

82-
1. Install `Clerk.Net.AspNetCore.Security` to your project.
82+
1. Install `Clerk.Net.AspNetCore.Security` from Nuget or via the .NET CLI: `dotnet add package Clerk.Net.AspNetCore.Security`
8383
2. Call `AddClerkAuthentication` within your authentication builder, passing in an `Authority` - the Frontend URI of your Clerk instance - and an `AuthorizedParty` - the Frontend URL of your application:
8484
```csharp
8585
builder.Services.AddAuthentication(ClerkAuthenticationDefaults.AuthenticationScheme)

0 commit comments

Comments
 (0)