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-11 04:29:58 +00:00
|
|
|
|
public static readonly string SharedFrameworkVersion = "1.0.0-rc3-004459-00";
|
|
|
|
|
public static readonly string SharedHostVersion = "1.0.1-rc3-004459-00";
|
2016-05-27 20:24:39 +00:00
|
|
|
|
|
|
|
|
|
public static readonly string SharedFrameworkChannel = "preview";
|
|
|
|
|
public static readonly string SharedHostChannel = "preview";
|
|
|
|
|
}
|
|
|
|
|
}
|