dotnet-installer/TestAssets/TestProjects/DependencyChangeTest/PortableApp_Standalone/Program.cs

13 lines
200 B
C#
Raw Normal View History

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