dotnet-installer/TestAssets/TestProjects/TestAppWithContents/Program.cs

17 lines
398 B
C#
Raw Normal View History

// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
2015-12-15 01:39:29 +00:00
namespace ConsoleApplication
{
public class Program
{
public static int Main(string[] args)
{
Console.WriteLine("Hello World!");
2016-09-08 21:40:46 +00:00
return 0;
2015-12-15 01:39:29 +00:00
}
}
}