Skip to content

Releases: dotnet/Nerdbank.GitVersioning

v2.0.4-beta

31 May 05:56
Compare
Choose a tag to compare
Merge pull request #119 from AArnott/BuildNumberFromVersionJson

Allow user control of build number integer

v1.6.35

07 May 05:16
Compare
Choose a tag to compare
Merge pull request #120 from onovotny/preserve-patch

v1.6.30

26 Apr 06:04
Compare
Choose a tag to compare

Fixes builds on mono on Linux and OSX

v1.6.25

21 Mar 14:43
Compare
Choose a tag to compare
Merge pull request #117 from AArnott/fix112

Add support for dotnet CLI on Linux

v1.6.21

11 Mar 15:43
Compare
Choose a tag to compare
Trim -beta from version

v1.6.19-beta

18 Feb 23:35
Compare
Choose a tag to compare
Update NB.GV LKG

Better support for .NET SDK

14 Feb 17:40
Compare
Choose a tag to compare

No collision with latest .NET SDK for AssemblyTitleAttribute, and built-in support for Atlassian Bamboo Cloud Build.

Support setting package versions in SDK projects

18 Dec 21:03
Compare
Choose a tag to compare

This release updates support for SDK (i.e. cross-targeting) projects so that package versions are also set the same way as assembly versions.

VS2017 SDK-based build support

17 Dec 19:18
Compare
Choose a tag to compare

Nerdbank.GitVersioning can successfully perform its functions on the SDK builds of .NET assemblies.

It can't yet influence the version of nuget packages that are built with the new SDK's Pack target. #93 tracks progress on this.

Install from NuGet

For folks not familiar with these new project types, they look like this:

<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
  <PropertyGroup>
    <OutputType>Exe</OutputType>
    <TargetFrameworks>netcoreapp1.0;net46</TargetFrameworks>
    <RuntimeIdentifier>win7-x86</RuntimeIdentifier>
  </PropertyGroup>
  <ItemGroup>
    <Compile Include="**\*.cs" />
  </ItemGroup>
  <ItemGroup>
    <PackageReference Include="Nerdbank.GitVersioning" Version="1.5.61" />
    <PackageReference Include="Microsoft.NETCore.App" Condition=" '$(TargetFramework)' == 'netcoreapp1.0' " Version="1.0.1" />
  </ItemGroup>
</Project>

First "stable" release

23 Dec 22:20
Compare
Choose a tag to compare

This has been a gradual evolution. But we finally feel we've got critical mass of useful features and stable track record to have our first official release.