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

13 lines
202 B
C#
Raw Normal View History

2016-03-27 00:16:39 +00:00
using System;
namespace ConsoleApplication
{
public class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}