abort build when an unresolved dependency is found (#2696)

This commit is contained in:
Andrew Stanton-Nurse 2016-04-28 10:02:05 -07:00
parent f8300f8747
commit b98bc1289d
13 changed files with 122 additions and 8 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,18 @@
{
"version": "1.0.0-*",
"compilationOptions": {
"emitEntryPoint": true
},
"dependencies": {
"Microsoft.NETCore.App": {
"type": "platform",
"version": "1.0.0-rc2-*"
},
"ThisIsNotARealDependencyAndIfSomeoneGoesAndAddsAProjectWithThisNameIWillFindThemAndPunishThem": { "target": "project" }
},
"frameworks": {
"netcoreapp1.0": {
"imports": "dnxcore50"
}
}
}