2016-05-16 22:30:53 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Microsoft.DotNet.Cli.Build
|
|
|
|
|
{
|
|
|
|
|
public class DependencyVersions
|
|
|
|
|
{
|
2016-05-26 18:11:22 +00:00
|
|
|
|
public static readonly string CoreCLRVersion = "1.0.2-rc3-24126-00";
|
2016-05-16 22:30:53 +00:00
|
|
|
|
|
2016-05-26 18:11:22 +00:00
|
|
|
|
public static readonly string SharedFrameworkVersion = "1.0.0-rc3-004312";
|
|
|
|
|
public static readonly string SharedHostVersion = "1.0.1-rc3-004312-00";
|
2016-05-16 22:30:53 +00:00
|
|
|
|
|
|
|
|
|
public static readonly string SharedFrameworkChannel = "preview";
|
|
|
|
|
public static readonly string SharedHostChannel = "preview";
|
|
|
|
|
}
|
|
|
|
|
}
|