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

18 lines
542 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Microsoft.DotNet.Cli.Build
{
public class CliDependencyVersions
{
public static readonly string SharedFrameworkVersion = "1.0.0";
public static readonly string SharedHostVersion = "1.0.1";
public static readonly string SharedFrameworkChannel = "preview";
public static readonly string SharedHostChannel = "preview";
2016-06-12 22:33:02 +00:00
public static readonly string HostFxrChannel = "preview";
}
2016-06-12 22:33:02 +00:00
}