Bump OpenIddict to 3.1.1

This commit is contained in:
Kévin Chalet 2021-08-27 13:26:12 +02:00
parent 161084c20e
commit 8050387529
3 changed files with 5 additions and 5 deletions

View File

@ -3,7 +3,7 @@
To configure OpenIddict to use MongoDB as the database for applications, authorizations, scopes and tokens, you'll need to:
- **Reference the `OpenIddict.MongoDb` package**:
```xml
<PackageReference Include="OpenIddict.MongoDb" Version="3.1.0" />
<PackageReference Include="OpenIddict.MongoDb" Version="3.1.1" />
```
- **Configure OpenIddict to use the MongoDB stores**:

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="3.1.0" />
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="3.1.0" />
<PackageReference Include="OpenIddict.AspNetCore" Version="3.1.1" />
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="3.1.1" />
```
- **Configure the OpenIddict core, server and validation services** in `Startup.ConfigureServices`.

View File

@ -13,8 +13,8 @@ For that, update your `.csproj` file to reference the `OpenIddict.AspNetCore` 3.
```xml
<ItemGroup>
<PackageReference Include="OpenIddict.AspNetCore" Version="3.1.0" />
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="3.1.0" />
<PackageReference Include="OpenIddict.AspNetCore" Version="3.1.1" />
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="3.1.1" />
</ItemGroup>
```