Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions guides/getting-started/creating-your-own-server-instance.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,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.AspNetCore` and `OpenIddict.EntityFrameworkCore` packages:

```xml
<PackageReference Include="OpenIddict.AspNetCore" Version="7.3.0" />
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="7.3.0" />
<PackageReference Include="OpenIddict.AspNetCore" Version="7.5.0" />
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="7.5.0" />
```

- **Register your Entity Framework Core database context and configure the OpenIddict core services** in `Program.cs`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ If you don't want to start from one of the recommended samples, you'll need to:
- **Reference the `OpenIddict.AspNetCore` package**:

```xml
<PackageReference Include="OpenIddict.AspNetCore" Version="7.3.0" />
<PackageReference Include="OpenIddict.AspNetCore" Version="7.5.0" />
```

- **Configure the OpenIddict validation services** in `Startup.ConfigureServices`:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ in web and desktop applications. If you want to use a non-interactive flow like
- **Update your `.csproj` file** to reference the latest `OpenIddict` package:

```xml
<PackageReference Include="OpenIddict" Version="7.3.0" />
<PackageReference Include="OpenIddict" Version="7.5.0" />
```

- **Configure the OpenIddict client services** in `Program.cs` (or `Startup.cs` if you use the regular ASP.NET Core web host):
Expand Down Expand Up @@ -72,8 +72,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.AspNetCore` and `OpenIddict.EntityFrameworkCore` packages:

```xml
<PackageReference Include="OpenIddict.AspNetCore" Version="7.3.0" />
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="7.3.0" />
<PackageReference Include="OpenIddict.AspNetCore" Version="7.5.0" />
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="7.5.0" />
```

- **Configure the OpenIddict core services** in `Program.cs` (or `Startup.cs`, depending on whether you're using the minimal host or the regular host):
Expand Down
4 changes: 2 additions & 2 deletions guides/migration/60-to-70.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ For that, update your `.csproj` file to reference the `OpenIddict` 7.x packages.
```xml
<ItemGroup>
<PackageReference Include="OpenIddict.AspNetCore" Version="6.4.0" /> <!-- [!code remove] -->
<PackageReference Include="OpenIddict.AspNetCore" Version="7.3.0" /> <!-- [!code add] -->
<PackageReference Include="OpenIddict.AspNetCore" Version="7.5.0" /> <!-- [!code add] -->

<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="6.4.0" /> <!-- [!code remove] -->
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="7.3.0" /> <!-- [!code add] -->
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="7.5.0" /> <!-- [!code add] -->
</ItemGroup>
```

Expand Down
6 changes: 3 additions & 3 deletions integrations/aspnet-core.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ To configure the ASP.NET Core integration, you'll need to:
(depending on whether you need the client and/or server and/or validation features in your project):

```xml
<PackageReference Include="OpenIddict.Client.AspNetCore" Version="7.3.0" />
<PackageReference Include="OpenIddict.Server.AspNetCore" Version="7.3.0" />
<PackageReference Include="OpenIddict.Validation.AspNetCore" Version="7.3.0" />
<PackageReference Include="OpenIddict.Client.AspNetCore" Version="7.5.0" />
<PackageReference Include="OpenIddict.Server.AspNetCore" Version="7.5.0" />
<PackageReference Include="OpenIddict.Validation.AspNetCore" Version="7.5.0" />
```

- **Call `UseAspNetCore()` for each OpenIddict feature (client, server and validation) you want to add**:
Expand Down
2 changes: 1 addition & 1 deletion integrations/entity-framework-core.md
Original file line number Diff line number Diff line change
Expand Up @@ -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="7.3.0" />
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="7.5.0" />
```

- **Create a database context deriving from `DbContext` (or `IdentityDbContext` when using ASP.NET Core Identity)**:
Expand Down
2 changes: 1 addition & 1 deletion integrations/entity-framework.md
Original file line number Diff line number Diff line change
Expand Up @@ -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="7.3.0" />
<PackageReference Include="OpenIddict.EntityFramework" Version="7.5.0" />
```

- **Create a database context deriving from `DbContext` and register the OpenIddict entities in the model**:
Expand Down
2 changes: 1 addition & 1 deletion integrations/mongodb.md
Original file line number Diff line number Diff line change
Expand Up @@ -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="7.3.0" />
<PackageReference Include="OpenIddict.MongoDb" Version="7.5.0" />
```

- **Configure OpenIddict to use the MongoDB stores**:
Expand Down
2 changes: 1 addition & 1 deletion integrations/operating-systems.md
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ To configure the operating system integration, you'll need to:
- **Reference the `OpenIddict.Client.SystemIntegration` package**:

```xml
<PackageReference Include="OpenIddict.Client.SystemIntegration" Version="7.3.0" />
<PackageReference Include="OpenIddict.Client.SystemIntegration" Version="7.5.0" />
```

- **Call `UseSystemIntegration()` in the client options**:
Expand Down
Loading
Loading