dotnet-installer/TestAssets/TestPackages/dotnet-portable/Program.cs

13 lines
211 B
C#
Raw Normal View History

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