dotnet-installer/TestAssets/TestProjects/PJLibWithMultipleFrameworks/Program.cs

13 lines
178 B
C#
Raw Normal View History

using System;
namespace Library
{
public class TestLib
{
public static void Test()
{
Console.WriteLine("Hello World!");
}
}
}