Skip to content

Commit

Permalink
Simplify version mismatch guidance
Browse files Browse the repository at this point in the history
  • Loading branch information
josephdecock committed Sep 10, 2023
1 parent 42f3779 commit 984077f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion IdentityServer/v6/docs/content/quickstarts/0_overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Every quickstart has a reference solution - you can find the code in the [sample
The first thing you should do is install our templates:

```
dotnet new --install Duende.IdentityServer.Templates::6.3.1
dotnet new --install Duende.IdentityServer.Templates
```

They will be used as a starting point for the various tutorials.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ the quickstarts. To install the templates open a console window and type the
following command:

```console
dotnet new --install Duende.IdentityServer.Templates::6.3.1
dotnet new --install Duende.IdentityServer.Templates
```

## Create the Solution and IdentityServer Project
Expand Down
9 changes: 6 additions & 3 deletions IdentityServer/v6/docs/content/quickstarts/4_ef.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,14 @@ with the EntityFramework integration already added: *dotnet new isef*.
## Configure IdentityServer
### Install Duende.IdentityServer.EntityFramework
IdentityServer's Entity Framework integration is provided by the
*Duende.IdentityServer.EntityFramework* NuGet package. Run the following command
from the *src/IdentityServer* directory to install it:
*Duende.IdentityServer.EntityFramework* NuGet package. Run the following
commands from the *src/IdentityServer* directory to replace the
*Duende.IdentityServer* package with it. Replacing packages prevents any
dependency issues with version mismatches.

```console
dotnet add package Duende.IdentityServer.EntityFramework --version 6.3.1
dotnet remove package Duende.IdentityServer
dotnet add package Duende.IdentityServer.EntityFramework
```

### Install Microsoft.EntityFrameworkCore.Sqlite
Expand Down

0 comments on commit 984077f

Please sign in to comment.