trim build dependencies from output

This commit is contained in:
Andrew Stanton-Nurse 2016-05-02 19:51:12 -07:00
parent afa471cde3
commit 08c4aae6a9
11 changed files with 209 additions and 51 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,23 @@
{
"version": "1.0.0-*",
"compilationOptions": {
"emitEntryPoint": true
},
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0-rc2-*",
"type": "platform"
},
"xunit.core": "2.1.0",
"xunit": {
"version": "2.1.0",
"type": "build"
}
},
"frameworks": {
"netcoreapp1.0": {
"imports": [ "portable-net451+win8" ]
}
}
}

View file

@ -0,0 +1,18 @@
{
"version": "1.0.0-*",
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0-rc2-*",
"type": "platform"
},
},
"frameworks": {
"netcoreapp1.0": {
"imports": [ "portable-net451+win8" ]
}
},
"runtimes": {
"win7-x64": {},
"win7-x86": {}
}
}