Merge pull request #3413 from sokket/cycle

Adding check for self-referencing projects
This commit is contained in:
Jonathan Miller 2016-06-07 16:16:54 -07:00
commit 30ba1a1a61
6 changed files with 47 additions and 1 deletions

View file

@ -0,0 +1,12 @@
using System;
namespace ConsoleApplication
{
public class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}

View file

@ -0,0 +1,16 @@
{
"version": "1.0.0-*",
"buildOptions": {
"emitEntryPoint": true
},
"dependencies": {
"TestProjectWithSelfReferencingDependency": {
"target": "project"
}
},
"frameworks": {
"netcoreapp1.0": {
"imports": "dnxcore50"
}
}
}