From 2ccf34dc34912e0f1065f8425deae36ece553a9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Chalet?= Date: Fri, 29 May 2020 20:33:52 +0200 Subject: [PATCH] Update README.md and OpenIddict.sln --- OpenIddict.sln | 8 ++++++++ README.md | 25 ++++++++++++------------- 2 files changed, 20 insertions(+), 13 deletions(-) diff --git a/OpenIddict.sln b/OpenIddict.sln index 5f24b6c4..974ad7dd 100644 --- a/OpenIddict.sln +++ b/OpenIddict.sln @@ -67,11 +67,19 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "eng", "eng", "{6E8E862C-3F2 EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "root", "root", "{F6F3C8E0-BBD7-41A5-9E20-385DC185DBC0}" ProjectSection(SolutionItems) = preProject + .gitattributes = .gitattributes + .gitignore = .gitignore .travis.yml = .travis.yml + appveyor.yml = appveyor.yml + Build.cmd = Build.cmd + build.sh = build.sh Directory.Build.props = Directory.Build.props Directory.Build.targets = Directory.Build.targets global.json = global.json + LICENSE.md = LICENSE.md NuGet.config = NuGet.config + package-icon.png = package-icon.png + README.md = README.md EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OpenIddict.Validation", "src\OpenIddict.Validation\OpenIddict.Validation.csproj", "{17C10B53-278B-416F-9090-8531179BDF2E}" diff --git a/README.md b/README.md index 3bd6ba40..7569e995 100644 --- a/README.md +++ b/README.md @@ -18,18 +18,16 @@ OpenIddict natively supports **[Entity Framework Core](https://www.nuget.org/pac ### Compatibility matrix -| ASP.NET version | .NET runtime version | OpenIddict 2.0 | OpenIddict 2.0.1 | OpenIddict 3.0 (beta) | -|------------------|----------------------|--------------------|--------------------|-----------------------| -| ASP.NET Core 2.1 | .NET Framework 4.6.1 | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | -| ASP.NET Core 2.1 | .NET Core 2.1 | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | -| ASP.NET Core 3.1 | .NET Core 3.1 | :warning: | :heavy_check_mark: | :heavy_check_mark: | -| ASP.NET Core 5.0 | .NET 5.0 | :warning: | :heavy_check_mark: | :heavy_check_mark: | - -| OWIN/Katana version | .NET runtime version | OpenIddict 2.0 | OpenIddict 2.0.1 | OpenIddict 3.0 (beta) | -|---------------------|----------------------|----------------|------------------|-----------------------| -| OWIN/Katana 4.1 | .NET Framework 4.6.1 | :x: | :x: | :heavy_check_mark: | -| OWIN/Katana 4.1 | .NET Framework 4.7.2 | :x: | :x: | :heavy_check_mark: | -| OWIN/Katana 4.1 | .NET Framework 4.8 | :x: | :x: | :heavy_check_mark: | +| Web framework version | .NET runtime version | OpenIddict 2.0 | OpenIddict 2.0.1 | OpenIddict 3.0 (beta) | +|-----------------------|----------------------|--------------------|--------------------|-----------------------| +| ASP.NET Core 2.1 | .NET Framework 4.6.1 | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | +| ASP.NET Core 2.1 | .NET Core 2.1 | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | +| ASP.NET Core 3.1 | .NET Core 3.1 | :warning: | :heavy_check_mark: | :heavy_check_mark: | +| ASP.NET Core 5.0 | .NET 5.0 | :warning: | :heavy_check_mark: | :heavy_check_mark: | +| | | | | | +| OWIN/Katana 4.1 | .NET Framework 4.6.1 | :x: | :x: | :heavy_check_mark: | +| OWIN/Katana 4.1 | .NET Framework 4.7.2 | :x: | :x: | :heavy_check_mark: | +| OWIN/Katana 4.1 | .NET Framework 4.8 | :x: | :x: | :heavy_check_mark: | ### Why an OpenID Connect server? @@ -44,7 +42,8 @@ with the power to control who can access your API and the information that is ex ## Samples -**[Samples for the latest stable release can be found in the samples repository](https://github.com/openiddict/openiddict-samples).** +**[Samples for OpenIddict 3.0 can be found in the samples repository](https://github.com/openiddict/openiddict-samples).** +[Samples for OpenIddict 2.0.1 can be found in the master branch of the samples repository](https://github.com/openiddict/openiddict-samples/tree/master). --------------