Enable specifying output assembly name in compiler options

Addresses #1797
This commit is contained in:
moozzyk 2016-03-10 15:49:11 -08:00
parent 7c8158746e
commit 856fb8d6d9
8 changed files with 70 additions and 10 deletions

View file

@ -0,0 +1,6 @@
namespace LibraryWithOutputAssemblyName
{
public class MyClass
{
}
}

View file

@ -0,0 +1,13 @@
{
"compilationOptions": {
"outputName": "MyLibrary"
},
"dependencies": {
"NETStandard.Library": "1.0.0-rc2-23901"
},
"frameworks": {
"netstandardapp1.5": {
"imports": "dnxcore50"
}
}
}