7cc90d9ad1
dotnet-build will produce a deps file for portable builds, and will now create "runnable" outputs for RID-less targets the outputs won't actually be runnable today because we need corehost changes and to generate a deps.json file for corehost to use.
31 lines
901 B
JSON
31 lines
901 B
JSON
{
|
|
"version": "1.0.0-*",
|
|
"compilationOptions": {
|
|
"emitEntryPoint": true
|
|
},
|
|
|
|
"dependencies": {
|
|
"NETStandard.Library": "1.0.0-rc2-23901",
|
|
"System.IO.Compression": "4.1.0-rc2-23901",
|
|
|
|
"Microsoft.DotNet.ProjectModel": { "target": "project" },
|
|
"Microsoft.DotNet.Cli.Utils": { "target": "project" },
|
|
"Microsoft.DotNet.Tools.Tests.Utilities": { "target": "project" },
|
|
|
|
"xunit": "2.1.0",
|
|
"dotnet-test-xunit": "1.0.0-dev-79755-47"
|
|
},
|
|
|
|
"frameworks": {
|
|
"netstandardapp1.5": {
|
|
"imports": [
|
|
"dnxcore50",
|
|
"portable-net45+win8"
|
|
]
|
|
}
|
|
},
|
|
|
|
"testRunner": "xunit",
|
|
|
|
"scripts": { "precompile": "dotnet build ../ArgumentsReflector/project.json --framework netstandardapp1.5 --runtime %compile:RuntimeIdentifier% --output %compile:RuntimeOutputDir%" }
|
|
}
|