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

12 lines
227 B
C#

using System;
namespace ConsoleApplication
{
public class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Hello I prefer the cli runtime World!");
}
}
}