Bump OpenIddict to 4.4.0

This commit is contained in:
Kévin Chalet 2023-05-25 18:43:38 +02:00
parent 9cbf648e8b
commit 67c14ca9aa
4 changed files with 5 additions and 5 deletions

View File

@ -12,8 +12,8 @@ If you don't want to start from one of the recommended samples, you'll need to:
- **Update your `.csproj` file** to reference the latest `OpenIddict` packages:
```xml
<PackageReference Include="OpenIddict.AspNetCore" Version="4.3.0" />
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="4.3.0" />
<PackageReference Include="OpenIddict.AspNetCore" Version="4.4.0" />
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="4.4.0" />
```
- **Configure the OpenIddict core, server and validation services** in `Startup.ConfigureServices`.

View File

@ -6,7 +6,7 @@ To configure OpenIddict to use Entity Framework Core as the database for applica
- **Reference the `OpenIddict.EntityFrameworkCore` package**:
```xml
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="3.1.1" />
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="4.4.0" />
```
- **Create a database context deriving from `DbContext` (or `IdentityDbContext` when using ASP.NET Core Identity)**:

View File

@ -6,7 +6,7 @@ To configure OpenIddict to use Entity Framework 6.x as the database for applicat
- **Reference the `OpenIddict.EntityFramework` package**:
```xml
<PackageReference Include="OpenIddict.EntityFramework" Version="3.1.1" />
<PackageReference Include="OpenIddict.EntityFramework" Version="4.4.0" />
```
- **Create a database context deriving from `DbContext` and register the OpenIddict entities in the model**:

View File

@ -6,7 +6,7 @@ To configure OpenIddict to use MongoDB as the database for applications, authori
- **Reference the `OpenIddict.MongoDb` package**:
```xml
<PackageReference Include="OpenIddict.MongoDb" Version="3.1.1" />
<PackageReference Include="OpenIddict.MongoDb" Version="4.4.0" />
```
- **Configure OpenIddict to use the MongoDB stores**: