Skip to content

Commit de312dc

Browse files
author
Artur Stolear
committed
nuspec updated to use license type expression
1 parent cf2ccfa commit de312dc

File tree

10 files changed

+13
-13
lines changed

10 files changed

+13
-13
lines changed

nuspec/GitVersion.CommandLine.DotNetCore.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<title>GitVersion.CommandLine.DotNetCore</title>
77
<authors>GitTools and Contributors</authors>
88
<owners>GitTools and Contributors</owners>
9-
<licenseUrl>http://www.opensource.org/licenses/mit-license.php</licenseUrl>
9+
<license type="expression">MIT</license>
1010
<projectUrl>https://github.com/GitTools/GitVersion</projectUrl>
1111
<iconUrl>https://raw.githubusercontent.com/GitTools/GitVersion/master/docs/img/package_icon.png</iconUrl>
1212
<requireLicenseAcceptance>false</requireLicenseAcceptance>

nuspec/GitVersion.CommandLine.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<title>GitVersion.CommandLine</title>
77
<authors>GitTools and Contributors</authors>
88
<owners>GitTools and Contributors</owners>
9-
<licenseUrl>http://www.opensource.org/licenses/mit-license.php</licenseUrl>
9+
<license type="expression">MIT</license>
1010
<projectUrl>https://github.com/GitTools/GitVersion</projectUrl>
1111
<iconUrl>https://raw.githubusercontent.com/GitTools/GitVersion/master/docs/img/package_icon.png</iconUrl>
1212
<requireLicenseAcceptance>false</requireLicenseAcceptance>

src/GitTools.Core/GitTools.Core.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<PackageTags>git tools</PackageTags>
1313
<Description>Core library for GitTools</Description>
1414
<Copyright>Copyright GitTools 2018.</Copyright>
15-
<PackageLicenseUrl>https://github.com/GitTools/GitTools.Core/blob/master/LICENSE</PackageLicenseUrl>
15+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1616
<PackageIconUrl>https://raw.github.com/GitTools/GitTools.Core/master/GitTools_logo.png</PackageIconUrl>
1717
<DefineConstants>TRACE;LIBLOG_PORTABLE;</DefineConstants>
1818
</PropertyGroup>
@@ -25,4 +25,4 @@
2525
<PackageReference Include="System.Runtime.Serialization.Primitives" Version="4.3.0" />
2626
<PackageReference Include="System.Runtime.Serialization.Formatters" Version="4.3.0" />
2727
</ItemGroup>
28-
</Project>
28+
</Project>

src/GitTools.Testing.Tests/GitTools.Testing.Tests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<PackageTags>git tools testing</PackageTags>
2020
<Copyright>Copyright GitTools 2015</Copyright>
2121
<PackageProjectUrl>https://github.com/GitTools/GitTools.Core</PackageProjectUrl>
22-
<PackageLicenseUrl>https://github.com/GitTools/GitTools.Core/blob/master/LICENSE</PackageLicenseUrl>
22+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
2323
<PackageIconUrl>https://raw.github.com/GitTools/GitTools.Core/master/GitTools_logo.png</PackageIconUrl>
2424
</PropertyGroup>
2525
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">

src/GitVersionCore/GitVersionCore.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<PackageTags>Git;Versioning;GitVersion;GitFlowVersion;GitFlow;GitHubFlow;SemVer</PackageTags>
1616
<Description>Derives SemVer information from a repository following GitFlow or GitHubFlow. This is the Core library which both GitVersion cli and Task use allowing programatic usage of GitVersion.</Description>
1717
<Copyright>Copyright GitTools 2018.</Copyright>
18-
<PackageLicenseUrl>http://www.opensource.org/licenses/mit-license.php</PackageLicenseUrl>
18+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1919
<PackageIconUrl>https://raw.githubusercontent.com/GitTools/GitVersion/master/docs/img/package_icon.png</PackageIconUrl>
2020
<PackageReleaseNotes>https://github.com/GitTools/GitVersion/releases</PackageReleaseNotes>
2121
<!--Additional assembly info -->

src/GitVersionCore/NugetAssets/GitVersion.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<title>GitVersion</title>
77
<authors>GitTools and Contributors</authors>
88
<owners>GitTools and Contributors</owners>
9-
<licenseUrl>http://www.opensource.org/licenses/mit-license.php</licenseUrl>
9+
<license type="expression">MIT</license>
1010
<projectUrl>https://github.com/GitTools/GitVersion</projectUrl>
1111
<iconUrl>https://raw.githubusercontent.com/GitTools/GitVersion/master/docs/img/package_icon.png</iconUrl>
1212
<requireLicenseAcceptance>false</requireLicenseAcceptance>

src/GitVersionExe/GitVersion.Tool.csproj

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
<PackageTags>Git;Versioning;GitVersion;GitFlowVersion;GitFlow;GitHubFlow;SemVer</PackageTags>
1414
<Description>Derives SemVer information from a repository following GitFlow or GitHubFlow. This is the .NET Core Global Tool allowing usage of GitVersion from command line.</Description>
1515
<Copyright>Copyright GitTools 2018.</Copyright>
16-
<PackageLicenseUrl>http://www.opensource.org/licenses/mit-license.php</PackageLicenseUrl>
1716
<PackageIconUrl>https://raw.githubusercontent.com/GitTools/GitVersion/master/docs/img/package_icon.png</PackageIconUrl>
1817
<PackageReleaseNotes>https://github.com/GitTools/GitVersion/releases</PackageReleaseNotes>
1918
</PropertyGroup>

src/GitVersionExe/GitVersionExe.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<TargetFrameworks Condition=" '$(TargetFrameworks)' == '' ">net461;netcoreapp2.1</TargetFrameworks>
88
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
99
<PlatformTarget>AnyCPU</PlatformTarget>
10+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1011
<DocumentationFile>bin\$(Configuration)\GitVersion.xml</DocumentationFile>
1112
<NoWarn>1591</NoWarn>
1213
</PropertyGroup>

src/GitVersionTask/GitVersionTask.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk">
33

44
<Import Project="$(MSBuildThisFileDirectory)\UtilPack.Version.props" Condition="exists('$(MSBuildThisFileDirectory)\UtilPack.Version.props')" />
@@ -16,7 +16,7 @@
1616
<PackageTags>Git Versioning GitVersion GitFlowVersion GitFlow GitHubFlow SemVer</PackageTags>
1717
<Description>Stamps an assembly with git information based on SemVer.</Description>
1818
<Copyright>Copyright GitTools 2018.</Copyright>
19-
<PackageLicenseUrl>http://www.opensource.org/licenses/mit-license.php</PackageLicenseUrl>
19+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
2020
<PackageIconUrl>https://raw.githubusercontent.com/GitTools/GitVersion/master/docs/img/package_icon.png</PackageIconUrl>
2121
<PackageReleaseNotes>https://github.com/GitTools/GitVersion/releases</PackageReleaseNotes>
2222
<DevelopmentDependency>true</DevelopmentDependency>

src/GitVersionTask/NugetAssets/GitVersionTask.nuspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
33
<metadata>
44
<id>GitVersionTask</id>
@@ -8,7 +8,7 @@
88
<owners>GitTools and Contributors</owners>
99
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1010
<developmentDependency>true</developmentDependency>
11-
<licenseUrl>http://www.opensource.org/licenses/mit-license.php</licenseUrl>
11+
<license type="expression">MIT</license>
1212
<projectUrl>https://github.com/GitTools/GitVersion</projectUrl>
1313
<iconUrl>https://raw.githubusercontent.com/GitTools/GitVersion/master/docs/img/package_icon.png</iconUrl>
1414
<description>Stamps an assembly with git information based on SemVer.</description>
@@ -34,4 +34,4 @@
3434
<file src="..\bin\$configuration$\**" target="build" />
3535
<file src="..\UtilPack.Version.props" target="build" />
3636
</files>
37-
</package>
37+
</package>

0 commit comments

Comments
 (0)