dotnet-installer/TestAssets/TestProjects/TestProjectToProjectDependencies/src/L12/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
182 B
C#

using System;
namespace ConsoleApplication
{
public class L12
{
public static string Value()
{
return "L12 " + L22.Value();
}
}
}