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

13 lines
210 B
C#
Raw Normal View History

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