Skip to content

Commit

Permalink
Upgrade nuget package to use built-in VS 2019 nuget packaging. (#30)
Browse files Browse the repository at this point in the history
No longer need a nuspec file maintained by hand. VS 2019 project file now includes nuget package management and packing.
  • Loading branch information
nCubed authored Oct 28, 2020
1 parent 855f767 commit c6603e9
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 26 deletions.
20 changes: 19 additions & 1 deletion DM.MovieApi/DM.MovieApi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<IncludeSymbols>true</IncludeSymbols>
<NoWarn>$(NoWarn);1591</NoWarn>
</PropertyGroup>

<PropertyGroup>
<PackageId>TheMovieDbWrapper</PackageId>
<Version>0.9.0</Version>
<Authors>Kindler Chase</Authors>
<Company>nCubed</Company>
<Product>TheMovieDb.org Wrapper</Product>
<Description>A C# wrapper for themoviedb.org API providing cross-platform support for Xamarin, iOS, Android, and all flavors of .NET.</Description>
<Copyright>Copyright 2016</Copyright>
<PackageProjectUrl>https://github.com/nCubed/TheMovieDbWrapper</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageTags>Movies Movie themoviedb themoviedb.org TMDB Film TV Television Actor Acress Director</PackageTags>
<PackageReleaseNotes>v0.9.0 is a full upgrade from Visual Studio PCL class library to the now recommeneded .netstandard class library.</PackageReleaseNotes>
<RepositoryUrl>https://github.com/nCubed/TheMovieDbWrapper</RepositoryUrl>
</PropertyGroup>

<ItemGroup>
Expand All @@ -12,4 +30,4 @@
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
</ItemGroup>

</Project>
</Project>
25 changes: 0 additions & 25 deletions TheMovieDbWrapper.nuspec

This file was deleted.

0 comments on commit c6603e9

Please sign in to comment.