dotnet-installer/test/TestApp/Program.cs

13 lines
197 B
C#
Raw Normal View History

using System;
namespace TestApp
{
public class Program
{
public static void Main(string[] args)
{
Console.WriteLine("This is a test app");
}
}
}