dotnet-installer/TestAssets/NonRestoredTestProjects/PJAppWithSlnThatDoesNotRefCsproj/TestApp/Program.cs
2017-02-17 17:02:15 -08:00

17 lines
397 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace TestApp
{
public class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Hello from main");
Console.WriteLine(TestLibrary.Lib.GetMessage());
Console.WriteLine(subdir.Helper.GetMessage());
}
}
}