dotnet-installer/test/TestApp/Program.cs

14 lines
223 B
C#
Raw Normal View History

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