Add Dispatcher packages descriptions (#507)

Addresses aspnet/Home#2656
This commit is contained in:
Jass Bagga 2018-01-04 11:02:05 -08:00 committed by GitHub
parent c66d5240d1
commit 8502900c18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -1,11 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Abstractions for dispatching.</Description>
<Description>ASP.NET Core abstractions for dispatching requests to endpoints and use addresses to generate URLs.</Description>
<TargetFramework>netstandard2.0</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageTags>aspnetcore;routing</PackageTags>
<PackageTags>aspnetcore;routing;dispatcher</PackageTags>
</PropertyGroup>
<ItemGroup>

View File

@ -1,12 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>API for dispatching.</Description>
<Description>ASP.NET Core middleware for dispatching requests to endpoints and use addresses to generate URLs.</Description>
<TargetFramework>netstandard2.0</TargetFramework>
<DefineConstants>$(DefineConstants);DISPATCHER</DefineConstants>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageTags>aspnetcore;routing</PackageTags>
<PackageTags>aspnetcore;routing;dispatcher</PackageTags>
</PropertyGroup>
<ItemGroup>