dotnet-installer/TestAssets/TestProjects/PortableTests/StandaloneApp/Program.cs

13 lines
202 B
C#
Raw Normal View History

using System;
namespace StandaloneApp
{
public static class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
}
}
}