Merge pull request #2177 from dotnet/pakrym/disable-json-message

Do not write json error message to stderr
This commit is contained in:
Pavel Krymets 2016-03-31 16:31:07 -07:00
commit e4cdc250e9
5 changed files with 35 additions and 2 deletions

View file

@ -0,0 +1,12 @@
using System;
namespace ConsoleApplication
{
public class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}

View file

@ -0,0 +1 @@
{}

View file

@ -0,0 +1,20 @@
{
"version": "1.0.0-*",
"compilationOptions": {
"emitEntryPoint": true
},
"dependencies": {
"NETStandard.Library": "1.5.0-rc2-23930"
},
"frameworks": {
"netstandardapp1.5": {
"imports": "dnxcore50"
}
},
"tools": {
"dotnet-portable": {
"version": "1.0.0",
"target": "package"
}
}
}