dotnet-installer/TestAssets/TestProjects/TestProjectToProjectDependencies/src/L12/Program.cs

13 lines
182 B
C#
Raw Normal View History

2016-01-14 11:52:54 -08:00
using System;
namespace ConsoleApplication
{
public class L12
{
public static string Value()
{
return "L12 " + L22.Value();
}
}
}