Adding support for output file name for apps.
This commit is contained in:
parent
856fb8d6d9
commit
03f5379165
9 changed files with 88 additions and 34 deletions
10
TestAssets/TestProjects/AppWithOutputAssemblyName/Program.cs
Normal file
10
TestAssets/TestProjects/AppWithOutputAssemblyName/Program.cs
Normal file
|
@ -0,0 +1,10 @@
|
|||
namespace AppWithOutputAssemblyName
|
||||
{
|
||||
public class MyApp
|
||||
{
|
||||
public static void Main()
|
||||
{
|
||||
System.Console.WriteLine("Hello, World!");
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"compilationOptions": {
|
||||
"outputName": "MyApp",
|
||||
"emitEntryPoint": true,
|
||||
"preserveCompilationContext": true
|
||||
},
|
||||
"dependencies": {
|
||||
"NETStandard.Library": "1.0.0-rc2-23901"
|
||||
},
|
||||
"frameworks": {
|
||||
"netstandardapp1.5": {
|
||||
"imports": "dnxcore50"
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue