Adding support for output file name for apps.

This commit is contained in:
moozzyk 2016-03-16 16:39:59 -07:00
parent 856fb8d6d9
commit 03f5379165
9 changed files with 88 additions and 34 deletions

View file

@ -0,0 +1,10 @@
namespace AppWithOutputAssemblyName
{
public class MyApp
{
public static void Main()
{
System.Console.WriteLine("Hello, World!");
}
}
}