13 lines
314 B
C#
13 lines
314 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";
|
|
public static readonly string JitVersion = "1.0.2";
|
|
}
|
|
}
|