This commit is contained in:
PiotrP 2016-05-03 17:44:08 -07:00 committed by Bryan
parent d9d8bb2f03
commit 82e6b0408a
2 changed files with 5 additions and 4 deletions

View file

@ -4,5 +4,5 @@
MAJOR_VERSION=1 MAJOR_VERSION=1
MINOR_VERSION=0 MINOR_VERSION=0
PATCH_VERSION=0 PATCH_VERSION=0
RELEASE_SUFFIX=rc2 RELEASE_SUFFIX=rc2-preview1
CHANNEL=beta CHANNEL=beta

View file

@ -9,9 +9,9 @@ namespace Microsoft.DotNet.Cli.Build
public class Monikers public class Monikers
{ {
public const string SharedFrameworkName = "Microsoft.NETCore.App"; public const string SharedFrameworkName = "Microsoft.NETCore.App";
public const string CLISdkBrandName = "Microsoft .NET Core SDK"; public const string CLISdkBrandName = "Microsoft .NET Core 1.0 RC2 - SDK Preview 1";
public const string SharedFxBrandName = "Microsoft .NET Core"; public const string SharedFxBrandName = "Microsoft .NET Core 1.0 RC2 - Runtime";
public const string SharedHostBrandName = "Microsoft .NET Core Host"; public const string SharedHostBrandName = "Microsoft .NET Core 1.0 RC2 - Host";
public static string GetProductMoniker(BuildTargetContext c, string artifactPrefix, string version) public static string GetProductMoniker(BuildTargetContext c, string artifactPrefix, string version)
{ {
@ -32,6 +32,7 @@ namespace Microsoft.DotNet.Cli.Build
case "beta": case "beta":
case "rc1": case "rc1":
case "rc2": case "rc2":
case "rc2-preview1":
case "rtm": case "rtm":
packageName = "dotnet"; packageName = "dotnet";
break; break;