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!");
}
}
}