Skip to content

Commit a01f00e

Browse files
authored
Merge branch 'master' into master
2 parents 957707a + 6d14578 commit a01f00e

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

build.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ Task("Upload-AppVeyor-Artifacts")
445445
"NuGetExeBuild:GitVersion.Portable." + nugetVersion +".nupkg",
446446
"NuGetCommandLineBuild:GitVersion.CommandLine." + nugetVersion +".nupkg",
447447
"NuGetExeDotNetCoreBuild:GitVersion.CommandLine.DotNetCore." + nugetVersion +".nupkg",
448-
"NuGetRefBuild:GitVersion." + nugetVersion +".nupkg",
448+
"NuGetRefBuild:GitVersionCore." + nugetVersion +".nupkg",
449449
"NuGetTaskBuild:GitVersionTask." + nugetVersion +".nupkg",
450450
"zip:GitVersion_" + nugetVersion + ".zip",
451451
"zip-dotnetcore:GitVersionDotNetCore_" + nugetVersion + ".zip"

docs/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ Sets the `mode` of how GitVersion should create a new version. Read more at
9797
### increment
9898
The part of the SemVer to increment when GitVersion detects it needs to be increased, such as for commits after a tag: `Major`, `Minor`, `Patch`, `None`.
9999

100-
The special value `Inherit` means that GitVersion should find the parent branch (i.e. the branch where the current branch was branched from), and use its values for [increment](#increment), [prevent-increment-of-merged-branch-version](#prevent-increment-of-merged-branch-version) and [is-develop](#is-develop).
100+
The special value `Inherit` means that GitVersion should find the parent branch (i.e. the branch where the current branch was branched from), and use its values for [increment](#increment), [prevent-increment-of-merged-branch-version](#prevent-increment-of-merged-branch-version) and [tracks-release-branches](#tracks-release-branches).
101101

102102
### continuous-delivery-fallback-tag
103103
When using `mode: ContinuousDeployment`, the value specified in

src/GitVersionCore/GitVersionCore.csproj

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard1.3;net40</TargetFrameworks>
4+
<TargetFrameworks>netstandard1.3;net40</TargetFrameworks>
55
<OutputType>Library</OutputType>
66
<RootNamespace>GitVersion</RootNamespace>
77
<AssemblyName>GitVersionCore</AssemblyName>
@@ -13,7 +13,7 @@
1313
<PackageProjectUrl>https://github.com/GitTools/GitVersion</PackageProjectUrl>
1414
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
1515
<PackageTags>Git;Versioning;GitVersion;GitFlowVersion;GitFlow;GitHubFlow;SemVer</PackageTags>
16-
<Description>Derives SemVer information from a repository following GitFlow or GitHubFlow.</Description>
16+
<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 2015.</Copyright>
1818
<PackageLicenseUrl>http://www.opensource.org/licenses/mit-license.php</PackageLicenseUrl>
1919
<PackageIconUrl>https://raw.githubusercontent.com/GitTools/GitVersion/master/docs/img/package_icon.png</PackageIconUrl>
@@ -28,7 +28,7 @@
2828
<GenerateAssemblyVersionAttribute Condition="'$(GenerateAssemblyVersionAttribute)' == ''">false</GenerateAssemblyVersionAttribute>
2929
<GenerateNeutralResourcesLanguageAttribute Condition="'$(GenerateNeutralResourcesLanguageAttribute)' == ''">true</GenerateNeutralResourcesLanguageAttribute>
3030
</PropertyGroup>
31-
31+
3232
<PropertyGroup Condition="'$(TargetFramework)' == 'net40'">
3333
<DefineConstants>TRACE;NET40;NETDESKTOP</DefineConstants>
3434
</PropertyGroup>
@@ -51,12 +51,12 @@
5151
<OutputPath>bin\Release\</OutputPath>
5252
<DefineConstants>TRACE</DefineConstants>
5353
<DocumentationFile>bin\Release\GitVersionCore.xml</DocumentationFile>
54-
</PropertyGroup>
54+
</PropertyGroup>
5555

56-
<ItemGroup>
56+
<ItemGroup>
5757
<PackageReference Include="GitTools.Core" Version="$(PackageVersion_GitToolsCore)" />
5858
<PackageReference Include="YamlDotNet" Version="$(PackageVersion_YamlDotNet)" />
59-
<PackageReference Include="LibGit2Sharp.NativeBinaries" Version="$(PackageVersion_LibGit2SharpNativeBinaries)" PrivateAssets="contentFiles" />
59+
<PackageReference Include="LibGit2Sharp.NativeBinaries" Version="$(PackageVersion_LibGit2SharpNativeBinaries)" PrivateAssets="contentFiles" />
6060
</ItemGroup>
6161

6262
<ItemGroup Condition="'$(TargetFramework)' == 'net40' ">
@@ -67,13 +67,13 @@
6767
<Reference Include="Microsoft.CSharp" />
6868
<Reference Include="System.Data" />
6969
<Reference Include="System.Xml" />
70-
71-
70+
71+
7272
<PackageReference Include="AsyncBridge" Version="0.1.1">
7373
<PrivateAssets>All</PrivateAssets>
7474
</PackageReference>
7575
</ItemGroup>
76-
76+
7777
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.3'">
7878
<PackageReference Include="System.Net.Requests" Version="4.3.0" />
7979
<PackageReference Include="System.Net.Http" Version="4.3.2" />
@@ -82,7 +82,7 @@
8282
<PackageReference Include="System.Runtime.InteropServices.RuntimeInformation" Version="4.3.0" />
8383
<PackageReference Include="System.Reflection.TypeExtensions" Version="4.3.0" />
8484
<PackageReference Include="System.Text.Encoding.Extensions" Version="4.3.0" />
85-
<PackageReference Include="System.Threading" Version="4.3.0" />
85+
<PackageReference Include="System.Threading" Version="4.3.0" />
8686
</ItemGroup>
8787

8888
<ItemGroup>
@@ -91,7 +91,7 @@
9191
<Compile Remove="VersionAssemblyInfoResources\AddFormats\**\*.*" />
9292
<Compile Remove="VersionAssemblyInfoResources\Templates\**\*.*" />
9393
</ItemGroup>
94-
94+
9595
<ItemGroup>
9696
<EmbeddedResource Include="GitVersionInformationResources\AddFormats\**\*.*" />
9797
<EmbeddedResource Include="GitVersionInformationResources\Templates\**\*.*" />
@@ -106,4 +106,4 @@
106106
</None>
107107
</ItemGroup>
108108

109-
</Project>
109+
</Project>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<Project>
1+
<Project>
22
<PropertyGroup>
3-
<PackageVersion_UtilPackNuGetMSBuild>2.4.0</PackageVersion_UtilPackNuGetMSBuild>
3+
<PackageVersion_UtilPackNuGetMSBuild>2.6.0</PackageVersion_UtilPackNuGetMSBuild>
44
</PropertyGroup>
55
</Project>
66

0 commit comments

Comments
 (0)