Adding a E2E test and a indirect dependency to TestAppDependencyGraph.

This commit is contained in:
Livar Cunha 2016-10-27 18:10:12 -07:00
parent fa6aa749bd
commit 83350434bc
2 changed files with 17 additions and 0 deletions

View file

@ -3,6 +3,7 @@
using System;
using System.Diagnostics;
using TestLibrary;
namespace TestApp
{
@ -11,6 +12,7 @@ namespace TestApp
public static int Main(string[] args)
{
Console.WriteLine("This string came from ProjectA");
Console.WriteLine($"{ProjectD.GetMessage()}");
return 0;
}
}