Merge pull request #2160 from dotnet/pakrym/no-arg-net451

Pass no additional arguments to net451 app in dotnet run
This commit is contained in:
Pavel Krymets 2016-03-31 11:23:31 -07:00
commit 429eb93cd9
4 changed files with 15 additions and 7 deletions

View file

@ -6,7 +6,7 @@ namespace ConsoleApplication
{
public static void Main(string[] args)
{
Console.WriteLine("NET451");
Console.WriteLine("NET451, ARGS: " + args.Length);
}
}
}