dotnet-installer/TestAssets/TestProjects/TestProjectToProjectDependencies/src/L0/Program.cs
Eric Erhardt 3d14caceff Test directory refactoring step 1.
Moving TestProjects and TestPackages under root 'TestAssets' folder.

Partial fix #1250
2016-02-08 20:35:22 -06:00

12 lines
216 B
C#

using System;
namespace ConsoleApplication
{
public class L0
{
public static void Main(string[] args)
{
Console.WriteLine("L0 " + L11.Value() + L12.Value());
}
}
}