Upgrade from PackageLicenseUrl to PackageLicenseExpression (#270)

The existing property is now considered legacy and results in a build warning: 

```
##[warning]C:\Program Files\dotnet\sdk\3.0.100\Sdks\NuGet.Build.Tasks.Pack\buildCrossTargeting\NuGet.Build.Tasks.Pack.targets(198,5): Warning NU5125: The 'licenseUrl' element will be deprecated. Consider using the 'license' element instead.
```
This commit is contained in:
Daniel Cazzulino
2019-10-25 16:42:05 -04:00
committed by Miguel de Icaza
parent 0d9ea2c409
commit 4e85b5117e

View File

@@ -11,7 +11,7 @@
<PackageId>Terminal.Gui</PackageId>
<PackageVersion>0.24</PackageVersion>
<Authors>Miguel de Icaza</Authors>
<PackageLicenseUrl>https://github.com/migueldeicaza/gui.cs/blob/master/LICENSE</PackageLicenseUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/migueldeicaza/gui.cs/</PackageProjectUrl>
<PackageTags>csharp, terminal, c#, f#, gui, toolkit, console</PackageTags>
<Description>Console-based user interface toolkit for .NET applications.</Description>