Skip to content

Commit

Permalink
Fix NuGet package properties
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcelGosselin committed May 25, 2020
1 parent a686145 commit ad304c6
Showing 1 changed file with 17 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,23 @@
<TargetFramework>netstandard2.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>


<!-- NuGet Package properties -->
<PropertyGroup>
<Authors>Marcel Gosselin</Authors>
<Title>Helper methods to provide compile-time checks of typed ActionResult return type.</Title>
<Description>
Adds helper methods overrides to AspNetCore's ControllerBase `Ok`, `Created`, ... that
allow compile-time checks that what is returned matches the return type in
`Task&lt;ActionResult&lt;MyReturnType&gt;&gt;`
</Description>
<PackageLicenseExpression>MIT-0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/MarcelGosselin/AspNetCore.TypedActionResults</PackageProjectUrl>
<PackageTags>aspnetcore;actionresult;typed</PackageTags>
<RepositoryUrl>https://github.com/MarcelGosselin/AspNetCore.TypedActionResults.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.5" />
<PackageReference Include="GitVersionTask" Version="5.3.4">
Expand Down

0 comments on commit ad304c6

Please sign in to comment.