Adding a CLI Test: Execute a 1.0 tool in a netcoreapp1.1 project

https://github.com/dotnet/cli/issues/6229
This commit is contained in:
John Beisner 2017-04-14 09:40:46 -07:00
commit f56306cc62
8 changed files with 144 additions and 0 deletions

View file

@ -0,0 +1,15 @@
// 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;
namespace ConsoleApplication
{
public class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}