2016-05-28 00:48:49 +00:00
|
|
|
|
using System;
|
2016-05-27 20:24:39 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Microsoft.DotNet.Cli.Build
|
|
|
|
|
{
|
|
|
|
|
public class CliDependencyVersions
|
|
|
|
|
{
|
2016-06-14 08:14:53 +00:00
|
|
|
|
public static readonly string SharedFrameworkVersion = "1.0.0";
|
|
|
|
|
public static readonly string SharedHostVersion = "1.0.1";
|
2016-05-27 20:24:39 +00:00
|
|
|
|
|
|
|
|
|
public static readonly string SharedFrameworkChannel = "preview";
|
|
|
|
|
public static readonly string SharedHostChannel = "preview";
|
|
|
|
|
}
|
|
|
|
|
}
|