Skip to content

Commit 932fdd3

Browse files
authored
docs: fix the command for NuGet Package Manager console inthe Readme file (#44)
* docs: fix the command for NuGet Package Manager console Also, specify that the command is for the NuGet Package Manager console. * docs: fix filenames * docs: remove an unnecessary character
1 parent bfdbf0e commit 932fdd3

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,10 @@ You can expose your JWKs through a JWKS endpoint and share them with your APIs.
129129

130130
# ℹ️ Installing
131131

132-
To install `NetDevPack.Security.Jwt` in your API, use the following command
132+
To install `NetDevPack.Security.Jwt` in your API, use the following command in the NuGet Package Manager console:
133133

134134
```bash
135-
dotnet add package NetDevPack.Security.Jwt
135+
Install-Package NetDevPack.Security.Jwt
136136
```
137137

138138
Alternatively, you can use the .NET Core command line interface:
@@ -141,7 +141,7 @@ Alternatively, you can use the .NET Core command line interface:
141141
dotnet add package NetDevPack.Security.Jwt
142142
```
143143

144-
Next, modify the Configure method in your `startup.cs` or `program.cs` file:
144+
Next, modify the Configure method in your `Startup.cs` or `program.cs` file:
145145

146146
```c#
147147
builder.Services.AddJwksManager().UseJwtValidation();
@@ -462,4 +462,3 @@ Many developers are unsure about which algorithm to use for signing their JWTs.
462462
# License
463463

464464
NetDevPack.Security.Jwt is Open Source software and is released under the MIT license. This license allow the use of NetDevPack.Security.Jwt in free and commercial applications and libraries without restrictions.
465-
p

0 commit comments

Comments
 (0)