dotnet-installer/build_projects/shared-build-targets-utils/DependencyVersions.cs
Senthil e9e4427b42 Update core-setup dependency versions (#3231)
Pick up host with JIT_PATH property
2016-05-25 23:12:19 -07:00

18 lines
576 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Microsoft.DotNet.Cli.Build
{
public class DependencyVersions
{
public static readonly string CoreCLRVersion = "1.0.2-rc3-24123-01";
public static readonly string SharedFrameworkVersion = "1.0.0-rc3-004308";
public static readonly string SharedHostVersion = "1.0.1-rc3-004308-00";
public static readonly string SharedFrameworkChannel = "preview";
public static readonly string SharedHostChannel = "preview";
}
}