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;