
The following packages are changing: Microsoft.NetCore.App: 1.0.0-rc2-3002702 -> 1.0.0-rc3-002702 Microsoft.NETCore.DotNetHost: 1.0.1-rc2-002702-00 -> 1.0.1-rc3-002702-00 Microsoft.NETCore.DotNetHostPolicy: 1.0.1-rc2-002702-00 -> 1.0.1-rc3-002702-00 Microsoft.NETCore.DotNetHostResolver: 1.0.1-rc2-002702-00 -> 1.0.1-rc3-002702-00 Also publishing the *deb file to teh debian repo feed is disabled - https://github.com/dotnet/cli/issues/2973
13 lines
545 B
C#
13 lines
545 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Microsoft.DotNet.Cli.Build
|
|
{
|
|
public class BuildVersion : Version
|
|
{
|
|
public string SimpleVersion => $"{Major}.{Minor}.{Patch}.{CommitCountString}";
|
|
public string VersionSuffix => $"{ReleaseSuffix}-{CommitCountString}";
|
|
public string NuGetVersion => $"{Major}.{Minor}.{Patch}-{VersionSuffix}";
|
|
public string NetCoreAppVersion => $"{Major}.{Minor}.{Patch}-rc3-{CommitCountString}";
|
|
public string ProductionVersion => $"{Major}.{Minor}.{Patch}";
|
|
}
|
|
}
|