diff --git a/guides/getting-started.html b/guides/getting-started.html index b8743a3..e20df96 100644 --- a/guides/getting-started.html +++ b/guides/getting-started.html @@ -102,8 +102,8 @@ using individual user accounts authentication is strongly recommended as it automatically includes the default ASP.NET Core Identity UI, based on Razor Pages.
Update your .csproj
file to reference the latest OpenIddict
packages:
<PackageReference Include="OpenIddict.AspNetCore" Version="4.1.0" />
-<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="4.1.0" />
+<PackageReference Include="OpenIddict.AspNetCore" Version="4.2.0" />
+<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="4.2.0" />
Configure the OpenIddict core, server and validation services in Startup.ConfigureServices
.
Here's an example for the client credentials grant, used in machine-to-machine scenarios: