2016-07-15 08:31:50 -07:00
|
|
|
|
// Copyright (c) .NET Foundation and contributors. All rights reserved.
|
|
|
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
2016-05-27 13:24:39 -07:00
|
|
|
|
|
|
|
|
|
namespace Microsoft.DotNet.Cli.Build
|
|
|
|
|
{
|
|
|
|
|
public class CliDependencyVersions
|
|
|
|
|
{
|
2016-06-14 03:14:53 -05:00
|
|
|
|
public static readonly string SharedFrameworkVersion = "1.0.0";
|
|
|
|
|
public static readonly string SharedHostVersion = "1.0.1";
|
2016-06-14 02:21:59 -07:00
|
|
|
|
public static readonly string HostFxrVersion = "1.0.1";
|
2016-05-27 13:24:39 -07:00
|
|
|
|
|
|
|
|
|
public static readonly string SharedFrameworkChannel = "preview";
|
|
|
|
|
public static readonly string SharedHostChannel = "preview";
|
2016-06-12 15:33:02 -07:00
|
|
|
|
public static readonly string HostFxrChannel = "preview";
|
2016-05-27 13:24:39 -07:00
|
|
|
|
}
|
2016-06-12 15:33:02 -07:00
|
|
|
|
}
|