dotnet-installer/build_projects/dotnet-cli-build/CliDependencyVersions.cs

17 lines
683 B
C#
Raw Normal View History

// 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.
namespace Microsoft.DotNet.Cli.Build
{
public class CliDependencyVersions
{
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";
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-06-12 15:33:02 -07:00
}