Pass no additional arguments to net451 app

This commit is contained in:
Pavel Krymets 2016-03-31 09:00:25 -07:00
parent 1428eb81cf
commit 7e73e5c379
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);
}
}
}