From 82e6b0408ab4e01d504856f0ca44824c691d7024 Mon Sep 17 00:00:00 2001 From: PiotrP Date: Tue, 3 May 2016 17:44:08 -0700 Subject: [PATCH] WiP --- branchinfo.txt | 2 +- scripts/dotnet-cli-build/Utils/Monikers.cs | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/branchinfo.txt b/branchinfo.txt index 63cf71251..15703d376 100644 --- a/branchinfo.txt +++ b/branchinfo.txt @@ -4,5 +4,5 @@ MAJOR_VERSION=1 MINOR_VERSION=0 PATCH_VERSION=0 -RELEASE_SUFFIX=rc2 +RELEASE_SUFFIX=rc2-preview1 CHANNEL=beta diff --git a/scripts/dotnet-cli-build/Utils/Monikers.cs b/scripts/dotnet-cli-build/Utils/Monikers.cs index 6e62fc181..e9cf29a37 100644 --- a/scripts/dotnet-cli-build/Utils/Monikers.cs +++ b/scripts/dotnet-cli-build/Utils/Monikers.cs @@ -9,9 +9,9 @@ namespace Microsoft.DotNet.Cli.Build public class Monikers { public const string SharedFrameworkName = "Microsoft.NETCore.App"; - public const string CLISdkBrandName = "Microsoft .NET Core SDK"; - public const string SharedFxBrandName = "Microsoft .NET Core"; - public const string SharedHostBrandName = "Microsoft .NET Core Host"; + public const string CLISdkBrandName = "Microsoft .NET Core 1.0 RC2 - SDK Preview 1"; + public const string SharedFxBrandName = "Microsoft .NET Core 1.0 RC2 - Runtime"; + public const string SharedHostBrandName = "Microsoft .NET Core 1.0 RC2 - Host"; public static string GetProductMoniker(BuildTargetContext c, string artifactPrefix, string version) { @@ -32,6 +32,7 @@ namespace Microsoft.DotNet.Cli.Build case "beta": case "rc1": case "rc2": + case "rc2-preview1": case "rtm": packageName = "dotnet"; break;