Skip to content

Commit

Permalink
nuspec updated to use license type expression
Browse files Browse the repository at this point in the history
  • Loading branch information
Artur Stolear committed Dec 21, 2018
1 parent cf2ccfa commit de312dc
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion nuspec/GitVersion.CommandLine.DotNetCore.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<title>GitVersion.CommandLine.DotNetCore</title>
<authors>GitTools and Contributors</authors>
<owners>GitTools and Contributors</owners>
<licenseUrl>http://www.opensource.org/licenses/mit-license.php</licenseUrl>
<license type="expression">MIT</license>
<projectUrl>https://github.com/GitTools/GitVersion</projectUrl>
<iconUrl>https://raw.githubusercontent.com/GitTools/GitVersion/master/docs/img/package_icon.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
Expand Down
2 changes: 1 addition & 1 deletion nuspec/GitVersion.CommandLine.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<title>GitVersion.CommandLine</title>
<authors>GitTools and Contributors</authors>
<owners>GitTools and Contributors</owners>
<licenseUrl>http://www.opensource.org/licenses/mit-license.php</licenseUrl>
<license type="expression">MIT</license>
<projectUrl>https://github.com/GitTools/GitVersion</projectUrl>
<iconUrl>https://raw.githubusercontent.com/GitTools/GitVersion/master/docs/img/package_icon.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
Expand Down
4 changes: 2 additions & 2 deletions src/GitTools.Core/GitTools.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<PackageTags>git tools</PackageTags>
<Description>Core library for GitTools</Description>
<Copyright>Copyright GitTools 2018.</Copyright>
<PackageLicenseUrl>https://github.com/GitTools/GitTools.Core/blob/master/LICENSE</PackageLicenseUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIconUrl>https://raw.github.com/GitTools/GitTools.Core/master/GitTools_logo.png</PackageIconUrl>
<DefineConstants>TRACE;LIBLOG_PORTABLE;</DefineConstants>
</PropertyGroup>
Expand All @@ -25,4 +25,4 @@
<PackageReference Include="System.Runtime.Serialization.Primitives" Version="4.3.0" />
<PackageReference Include="System.Runtime.Serialization.Formatters" Version="4.3.0" />
</ItemGroup>
</Project>
</Project>
2 changes: 1 addition & 1 deletion src/GitTools.Testing.Tests/GitTools.Testing.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<PackageTags>git tools testing</PackageTags>
<Copyright>Copyright GitTools 2015</Copyright>
<PackageProjectUrl>https://github.com/GitTools/GitTools.Core</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/GitTools/GitTools.Core/blob/master/LICENSE</PackageLicenseUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIconUrl>https://raw.github.com/GitTools/GitTools.Core/master/GitTools_logo.png</PackageIconUrl>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
Expand Down
2 changes: 1 addition & 1 deletion src/GitVersionCore/GitVersionCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<PackageTags>Git;Versioning;GitVersion;GitFlowVersion;GitFlow;GitHubFlow;SemVer</PackageTags>
<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>
<Copyright>Copyright GitTools 2018.</Copyright>
<PackageLicenseUrl>http://www.opensource.org/licenses/mit-license.php</PackageLicenseUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIconUrl>https://raw.githubusercontent.com/GitTools/GitVersion/master/docs/img/package_icon.png</PackageIconUrl>
<PackageReleaseNotes>https://github.com/GitTools/GitVersion/releases</PackageReleaseNotes>
<!--Additional assembly info -->
Expand Down
2 changes: 1 addition & 1 deletion src/GitVersionCore/NugetAssets/GitVersion.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<title>GitVersion</title>
<authors>GitTools and Contributors</authors>
<owners>GitTools and Contributors</owners>
<licenseUrl>http://www.opensource.org/licenses/mit-license.php</licenseUrl>
<license type="expression">MIT</license>
<projectUrl>https://github.com/GitTools/GitVersion</projectUrl>
<iconUrl>https://raw.githubusercontent.com/GitTools/GitVersion/master/docs/img/package_icon.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
Expand Down
1 change: 0 additions & 1 deletion src/GitVersionExe/GitVersion.Tool.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
<PackageTags>Git;Versioning;GitVersion;GitFlowVersion;GitFlow;GitHubFlow;SemVer</PackageTags>
<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>
<Copyright>Copyright GitTools 2018.</Copyright>
<PackageLicenseUrl>http://www.opensource.org/licenses/mit-license.php</PackageLicenseUrl>
<PackageIconUrl>https://raw.githubusercontent.com/GitTools/GitVersion/master/docs/img/package_icon.png</PackageIconUrl>
<PackageReleaseNotes>https://github.com/GitTools/GitVersion/releases</PackageReleaseNotes>
</PropertyGroup>
Expand Down
1 change: 1 addition & 0 deletions src/GitVersionExe/GitVersionExe.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<TargetFrameworks Condition=" '$(TargetFrameworks)' == '' ">net461;netcoreapp2.1</TargetFrameworks>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<PlatformTarget>AnyCPU</PlatformTarget>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<DocumentationFile>bin\$(Configuration)\GitVersion.xml</DocumentationFile>
<NoWarn>1591</NoWarn>
</PropertyGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/GitVersionTask/GitVersionTask.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="$(MSBuildThisFileDirectory)\UtilPack.Version.props" Condition="exists('$(MSBuildThisFileDirectory)\UtilPack.Version.props')" />
Expand All @@ -16,7 +16,7 @@
<PackageTags>Git Versioning GitVersion GitFlowVersion GitFlow GitHubFlow SemVer</PackageTags>
<Description>Stamps an assembly with git information based on SemVer.</Description>
<Copyright>Copyright GitTools 2018.</Copyright>
<PackageLicenseUrl>http://www.opensource.org/licenses/mit-license.php</PackageLicenseUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIconUrl>https://raw.githubusercontent.com/GitTools/GitVersion/master/docs/img/package_icon.png</PackageIconUrl>
<PackageReleaseNotes>https://github.com/GitTools/GitVersion/releases</PackageReleaseNotes>
<DevelopmentDependency>true</DevelopmentDependency>
Expand Down
6 changes: 3 additions & 3 deletions src/GitVersionTask/NugetAssets/GitVersionTask.nuspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>GitVersionTask</id>
Expand All @@ -8,7 +8,7 @@
<owners>GitTools and Contributors</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<developmentDependency>true</developmentDependency>
<licenseUrl>http://www.opensource.org/licenses/mit-license.php</licenseUrl>
<license type="expression">MIT</license>
<projectUrl>https://github.com/GitTools/GitVersion</projectUrl>
<iconUrl>https://raw.githubusercontent.com/GitTools/GitVersion/master/docs/img/package_icon.png</iconUrl>
<description>Stamps an assembly with git information based on SemVer.</description>
Expand All @@ -34,4 +34,4 @@
<file src="..\bin\$configuration$\**" target="build" />
<file src="..\UtilPack.Version.props" target="build" />
</files>
</package>
</package>

0 comments on commit de312dc

Please sign in to comment.