Browse Source

Update the packages descriptions

pull/975/head
Kévin Chalet 6 years ago
parent
commit
e27eb09637
  1. 2
      src/OpenIddict.Abstractions/OpenIddict.Abstractions.csproj
  2. 2
      src/OpenIddict.AspNetCore/OpenIddict.AspNetCore.csproj
  3. 2
      src/OpenIddict.EntityFramework.Models/OpenIddict.EntityFramework.Models.csproj
  4. 2
      src/OpenIddict.EntityFrameworkCore.Models/OpenIddict.EntityFrameworkCore.Models.csproj
  5. 2
      src/OpenIddict.MongoDb.Models/OpenIddict.MongoDb.Models.csproj
  6. 2
      src/OpenIddict.Owin/OpenIddict.Owin.csproj
  7. 2
      src/OpenIddict.Server.Owin/OpenIddict.Server.Owin.csproj
  8. 5
      src/OpenIddict.Server/OpenIddict.Server.csproj
  9. 2
      src/OpenIddict.Validation.Owin/OpenIddict.Validation.Owin.csproj
  10. 2
      src/OpenIddict.Validation.ServerIntegration/OpenIddict.Validation.ServerIntegration.csproj
  11. 2
      src/OpenIddict.Validation.SystemNetHttp/OpenIddict.Validation.SystemNetHttp.csproj
  12. 5
      src/OpenIddict.Validation/OpenIddict.Validation.csproj
  13. 5
      src/OpenIddict/OpenIddict.csproj

2
src/OpenIddict.Abstractions/OpenIddict.Abstractions.csproj

@ -5,7 +5,7 @@
</PropertyGroup>
<PropertyGroup>
<Description>OpenIddict's abstractions.</Description>
<Description>Abstractions and primitives used by the OpenIddict components.</Description>
</PropertyGroup>
<ItemGroup>

2
src/OpenIddict.AspNetCore/OpenIddict.AspNetCore.csproj

@ -7,7 +7,7 @@
</PropertyGroup>
<PropertyGroup>
<Description>Easy-to-use OpenID Connect stack for ASP.NET Core.</Description>
<Description>Versatile OpenID Connect stack for ASP.NET Core 2.1, 3.1 and 5.0.</Description>
<PackageTags>$(PackageTags);aspnetcore;server;validation</PackageTags>
</PropertyGroup>

2
src/OpenIddict.EntityFramework.Models/OpenIddict.EntityFramework.Models.csproj

@ -5,7 +5,7 @@
</PropertyGroup>
<PropertyGroup>
<Description>Relational entities for the Entity Framework 6.x stores.</Description>
<Description>Relational entities for the OpenIddict Entity Framework 6.x stores.</Description>
<PackageTags>$(PackageTags);entityframework;models</PackageTags>
</PropertyGroup>

2
src/OpenIddict.EntityFrameworkCore.Models/OpenIddict.EntityFrameworkCore.Models.csproj

@ -5,7 +5,7 @@
</PropertyGroup>
<PropertyGroup>
<Description>Relational entities for the Entity Framework Core stores.</Description>
<Description>Relational entities for the OpenIddict Entity Framework Core stores.</Description>
<PackageTags>$(PackageTags);entityframeworkcore;models</PackageTags>
</PropertyGroup>

2
src/OpenIddict.MongoDb.Models/OpenIddict.MongoDb.Models.csproj

@ -7,7 +7,7 @@
</PropertyGroup>
<PropertyGroup>
<Description>Document-oriented entities for the MongoDB stores.</Description>
<Description>Document-oriented entities for the OpenIddict MongoDB stores.</Description>
<PackageTags>$(PackageTags);mongodb;models</PackageTags>
</PropertyGroup>

2
src/OpenIddict.Owin/OpenIddict.Owin.csproj

@ -7,7 +7,7 @@
</PropertyGroup>
<PropertyGroup>
<Description>Easy-to-use OpenID Connect stack for ASP.NET 4.x/OWIN.</Description>
<Description>Versatile OpenID Connect stack for OWIN/Katana 4.1 (compatible with ASP.NET 4.6.1 and newer).</Description>
<PackageTags>$(PackageTags);aspnet;katana;owin;server;validation</PackageTags>
</PropertyGroup>

2
src/OpenIddict.Server.Owin/OpenIddict.Server.Owin.csproj

@ -5,7 +5,7 @@
</PropertyGroup>
<PropertyGroup>
<Description>OWIN/ASP.NET 4.x integration package for the OpenIddict server services.</Description>
<Description>OWIN/Katana integration package for the OpenIddict server services (compatible with ASP.NET 4.6.1 and newer).</Description>
<PackageTags>$(PackageTags);server;aspnet;katana;owin</PackageTags>
</PropertyGroup>

5
src/OpenIddict.Server/OpenIddict.Server.csproj

@ -5,7 +5,10 @@
</PropertyGroup>
<PropertyGroup>
<Description>OpenID Connect server components for OpenIddict.</Description>
<Description>OpenIddict authorization server services.
Note: this package only contains the generic/host-agnostic server components.
To use the server feature on ASP.NET Core or OWIN/Katana, reference the OpenIddict.Server.AspNetCore or OpenIddict.Server.Owin package.</Description>
<PackageTags>$(PackageTags);server</PackageTags>
</PropertyGroup>

2
src/OpenIddict.Validation.Owin/OpenIddict.Validation.Owin.csproj

@ -5,7 +5,7 @@
</PropertyGroup>
<PropertyGroup>
<Description>OWIN/ASP.NET 4.x integration package for the OpenIddict validation services.</Description>
<Description>OWIN/Katana integration package for the OpenIddict validation services (compatible with ASP.NET 4.6.1 and newer).</Description>
<PackageTags>$(PackageTags);validation;aspnet;katana;owin</PackageTags>
</PropertyGroup>

2
src/OpenIddict.Validation.ServerIntegration/OpenIddict.Validation.ServerIntegration.csproj

@ -5,7 +5,7 @@
</PropertyGroup>
<PropertyGroup>
<Description>OpenID Connect validation/server integration for OpenIddict.</Description>
<Description>Local server integration package for the OpenIddict validation services.</Description>
<PackageTags>$(PackageTags);server;validation</PackageTags>
</PropertyGroup>

2
src/OpenIddict.Validation.SystemNetHttp/OpenIddict.Validation.SystemNetHttp.csproj

@ -5,7 +5,7 @@
</PropertyGroup>
<PropertyGroup>
<Description>OpenID Connect validation/System.Net.Http integration for OpenIddict.</Description>
<Description>System.Net.Http integration package for the OpenIddict validation services.</Description>
<PackageTags>$(PackageTags);http;httpclient;validation</PackageTags>
</PropertyGroup>

5
src/OpenIddict.Validation/OpenIddict.Validation.csproj

@ -5,7 +5,10 @@
</PropertyGroup>
<PropertyGroup>
<Description>OpenID Connect validation components for OpenIddict.</Description>
<Description>OpenIddict token validation services.
Note: this package only contains the generic/host-agnostic validation components.
To use the validation feature on ASP.NET Core or OWIN/Katana, reference the OpenIddict.Validation.AspNetCore or OpenIddict.Validation.Owin package.</Description>
<PackageTags>$(PackageTags);validation</PackageTags>
</PropertyGroup>

5
src/OpenIddict/OpenIddict.csproj

@ -7,7 +7,10 @@
</PropertyGroup>
<PropertyGroup>
<Description>Easy-to-use OpenID Connect server for ASP.NET 4.x/OWIN and ASP.NET Core.</Description>
<Description>Versatile OpenID Connect stack for .NET.
Note: this metapackage only references the generic core, server and validation packages.
To use these features on ASP.NET Core or OWIN/Katana/ASP.NET 4.x, reference the OpenIddict.AspNetCore or OpenIddict.Owin package.</Description>
</PropertyGroup>
<ItemGroup>

Loading…
Cancel
Save