Add test for dotnet run with multiple frameworks.

This commit is contained in:
Eric Erhardt 2016-10-13 17:26:21 -05:00
parent cbeb5b9912
commit 469f7be5c3
5 changed files with 103 additions and 0 deletions

View file

@ -0,0 +1,12 @@
using System;
namespace ConsoleApplication
{
public class Program
{
public static void Main()
{
Console.WriteLine("Hello World!");
}
}
}