dotnet-installer/TestAssets/TestProjects/TestAppWithLibrary/TestApp/Program.cs

18 lines
432 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;
using System.Diagnostics;
namespace TestApp
{
public class Program
{
2015-12-15 01:39:29 +00:00
public static int Main(string[] args)
{
2015-11-02 00:21:10 +00:00
Console.WriteLine(TestLibrary.Helper.GetMessage());
2015-12-15 01:39:29 +00:00
return 100;
}
}
}