Fix warnings in project.json

PR #2493 introduced the new project.json schema. The tree has 118 files
with the old schema, which added several hundred warnings.

This change can't go in until PR #2864 does - it relies on those bug
fixes.
This commit is contained in:
Bill Wert 2016-05-12 19:03:08 -07:00
parent 9af3edfeda
commit ed3bd312cf
122 changed files with 847 additions and 594 deletions

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {
@ -30,4 +30,4 @@
] ]
} }
} }
} }

View file

@ -1,13 +1,15 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true,
"compile": {
"include": [
"../src/*.cs"
]
}
}, },
"compile": [
"../src/*.cs"
],
"dependencies": { "dependencies": {
"Newtonsoft.Json": "8.0.3", "Newtonsoft.Json": "8.0.3",
"Microsoft.AspNet.Mvc": "3.0.50813.1", "Microsoft.AspNet.Mvc": "3.0.50813.1",
"Unity.Mvc": "3.0.1304", "Unity.Mvc": "3.0.1304",
"dotnet-desktop-binding-redirects": "1.0.0-*" "dotnet-desktop-binding-redirects": "1.0.0-*"
@ -24,4 +26,4 @@
] ]
} }
} }
} }

View file

@ -1,13 +1,15 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true,
"compile": {
"include": [
"../src/*.cs"
]
}
}, },
"compile": [
"../src/*.cs"
],
"dependencies": { "dependencies": {
"Newtonsoft.Json": "8.0.3", "Newtonsoft.Json": "8.0.3",
"Microsoft.AspNet.Mvc": "3.0.50813.1", "Microsoft.AspNet.Mvc": "3.0.50813.1",
"Unity.Mvc": "3.0.1304", "Unity.Mvc": "3.0.1304",
"dotnet-desktop-binding-redirects": "1.0.0-*" "dotnet-desktop-binding-redirects": "1.0.0-*"
@ -24,4 +26,4 @@
] ]
} }
} }
} }

View file

@ -1,12 +1,14 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"dependencies": { "dependencies": {
"Microsoft.DotNet.Cli.Utils": { "target": "project" } "Microsoft.DotNet.Cli.Utils": {
"target": "project"
}
}, },
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"frameworks": { "frameworks": {
"net451": {} "net451": {}
} }
} }

View file

@ -4,10 +4,10 @@
"PackageWithFakeNativeDep": "1.0.0-*", "PackageWithFakeNativeDep": "1.0.0-*",
"Microsoft.NETCore.Platforms": "1.0.0-rc2-24027" "Microsoft.NETCore.Platforms": "1.0.0-rc2-24027"
}, },
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"frameworks": { "frameworks": {
"net451": {} "net451": {}
} }
} }

View file

@ -3,14 +3,13 @@
"dependencies": { "dependencies": {
"Microsoft.NETCore.Windows.ApiSets": "1.0.1-rc2-*" "Microsoft.NETCore.Windows.ApiSets": "1.0.1-rc2-*"
}, },
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"frameworks": { "frameworks": {
"net451": {} "net451": {}
}, },
"runtimes": "runtimes": {
{
"win7-x64": {} "win7-x64": {}
} }
} }

View file

@ -6,13 +6,15 @@
"Microsoft.Extensions.Logging.Console": "1.0.0-rc2-20254", "Microsoft.Extensions.Logging.Console": "1.0.0-rc2-20254",
"Microsoft.NETCore.Platforms": "1.0.0-rc2-24027" "Microsoft.NETCore.Platforms": "1.0.0-rc2-24027"
}, },
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true,
"compile": {
"include": [
"../src/*.cs"
]
}
}, },
"compile": [
"../src/*.cs"
],
"frameworks": { "frameworks": {
"net451": {} "net451": {}
} }
} }

View file

@ -6,14 +6,16 @@
"Microsoft.Extensions.Logging.Console": "1.0.0-rc2-20254", "Microsoft.Extensions.Logging.Console": "1.0.0-rc2-20254",
"Microsoft.NETCore.Platforms": "1.0.0-rc2-24027" "Microsoft.NETCore.Platforms": "1.0.0-rc2-24027"
}, },
"compilationOptions": { "buildOptions": {
"platform": "anycpu32bitpreferred", "platform": "anycpu32bitpreferred",
"emitEntryPoint": true "emitEntryPoint": true,
"compile": {
"include": [
"../src/*.cs"
]
}
}, },
"compile": [
"../src/*.cs"
],
"frameworks": { "frameworks": {
"net451": {} "net451": {}
} }
} }

View file

@ -6,12 +6,14 @@
"Microsoft.Extensions.Logging.Console": "1.0.0-rc2-20254", "Microsoft.Extensions.Logging.Console": "1.0.0-rc2-20254",
"Microsoft.NETCore.Platforms": "1.0.0-rc2-24027" "Microsoft.NETCore.Platforms": "1.0.0-rc2-24027"
}, },
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true,
"compile": {
"include": [
"../src/*.cs"
]
}
}, },
"compile": [
"../src/*.cs"
],
"frameworks": { "frameworks": {
"net451": {} "net451": {}
}, },
@ -20,4 +22,4 @@
"win7-x64": {}, "win7-x64": {},
"osx.10.11-x64": {} "osx.10.11-x64": {}
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": false "emitEntryPoint": false
}, },
"dependencies": { "dependencies": {
@ -28,4 +28,4 @@
] ]
} }
} }
} }

View file

@ -1,22 +1,21 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"frameworks": {
"frameworks": { "net46": {
"net46": { "dependencies": {
"dependencies": { "ClassLibrary1": {
"ClassLibrary1": { "target": "project"
"target": "project" },
}, "ClassLibrary2": {
"ClassLibrary2": { "target": "project"
"target": "project" },
}, "ClassLibrary3": {
"ClassLibrary3": { "target": "project"
"target": "project"
}
} }
} }
} }
} }
}

View file

@ -1,22 +1,21 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"frameworks": {
"frameworks": { "net46": {
"net46": { "dependencies": {
"dependencies": { "ClassLibrary1": {
"ClassLibrary1": { "target": "project"
"target": "project" },
}, "ClassLibrary2": {
"ClassLibrary2": { "target": "project"
"target": "project" },
}, "ClassLibrary3": {
"ClassLibrary3": { "target": "project"
"target": "project"
}
} }
} }
} }
} }
}

View file

@ -1,22 +1,21 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"frameworks": {
"frameworks": { "net46": {
"net46": { "dependencies": {
"dependencies": { "ClassLibrary1": {
"ClassLibrary1": { "target": "project"
"target": "project" },
}, "ClassLibrary2": {
"ClassLibrary2": { "target": "project"
"target": "project" },
}, "ClassLibrary3": {
"ClassLibrary3": { "target": "project"
"target": "project"
}
} }
} }
} }
} }
}

View file

@ -1,22 +1,21 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"frameworks": {
"frameworks": { "net46": {
"net46": { "dependencies": {
"dependencies": { "ClassLibrary1": {
"ClassLibrary1": { "target": "project"
"target": "project" },
}, "ClassLibrary2": {
"ClassLibrary2": { "target": "project"
"target": "project" },
}, "ClassLibrary3": {
"ClassLibrary3": { "target": "project"
"target": "project"
}
} }
} }
} }
} }
}

View file

@ -1,10 +1,9 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"frameworks": {
"frameworks": { "net46": {}
"net46": { } }
} }
}

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {
@ -8,11 +8,13 @@
"type": "platform", "type": "platform",
"version": "1.0.0-rc2-*" "version": "1.0.0-rc2-*"
}, },
"ThisIsNotARealDependencyAndIfSomeoneGoesAndAddsAProjectWithThisNameIWillFindThemAndPunishThem": { "target": "project" } "ThisIsNotARealDependencyAndIfSomeoneGoesAndAddsAProjectWithThisNameIWillFindThemAndPunishThem": {
"target": "project"
}
}, },
"frameworks": { "frameworks": {
"netcoreapp1.0": { "netcoreapp1.0": {
"imports": "dnxcore50" "imports": "dnxcore50"
} }
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {
@ -9,4 +9,4 @@
"frameworks": { "frameworks": {
"netcoreapp1.0": {} "netcoreapp1.0": {}
} }
} }

View file

@ -1,22 +1,21 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"frameworks": {
"frameworks": { "net46": {
"net46": { "dependencies": {
"dependencies": { "ClassLibrary1": {
"ClassLibrary1": { "target": "project"
"target": "project" },
}, "ClassLibrary2": {
"ClassLibrary2": { "target": "project"
"target": "project" },
}, "ClassLibrary3": {
"ClassLibrary3": { "target": "project"
"target": "project"
}
} }
} }
} }
} }
}

View file

@ -1,9 +1,13 @@
{ {
"version": "1.0.0", "version": "1.0.0",
"packInclude": {
"runtimes/": "runtimes/"
},
"frameworks": { "frameworks": {
"net45": {} "net45": {}
},
"packOptions": {
"files": {
"mappings": {
"runtimes/": "runtimes/"
}
}
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0", "version": "1.0.0",
"compilationOptions": { "buildOptions": {
"outputName": "dotnet-tool-with-output-name", "outputName": "dotnet-tool-with-output-name",
"emitEntryPoint": true "emitEntryPoint": true
}, },

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-rc-*", "version": "1.0.0-rc-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {
@ -8,7 +8,9 @@
"type": "platform", "type": "platform",
"version": "1.0.0-rc3-*" "version": "1.0.0-rc3-*"
}, },
"Microsoft.Extensions.DependencyModel": { "target": "project" } "Microsoft.Extensions.DependencyModel": {
"target": "project"
}
}, },
"frameworks": { "frameworks": {
"netcoreapp1.0": { "netcoreapp1.0": {
@ -18,4 +20,4 @@
] ]
} }
} }
} }

View file

@ -1,20 +1,28 @@
{ {
"version": "1.0.0-rc-*", "version": "1.0.0-rc-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true,
"compile": {
"include": [
"**/*.cs",
"../../../src/dotnet/CommandLine/*.cs"
]
}
}, },
"compile": [
"**/*.cs",
"../../../src/dotnet/CommandLine/*.cs"
],
"dependencies": { "dependencies": {
"Microsoft.NETCore.App": { "Microsoft.NETCore.App": {
"type": "platform", "type": "platform",
"version": "1.0.0-rc3-*" "version": "1.0.0-rc3-*"
}, },
"Microsoft.DotNet.Cli.Utils": { "target": "project" }, "Microsoft.DotNet.Cli.Utils": {
"Microsoft.DotNet.ProjectModel": { "target": "project" }, "target": "project"
"Microsoft.DotNet.Compiler.Common": { "target": "project" } },
"Microsoft.DotNet.ProjectModel": {
"target": "project"
},
"Microsoft.DotNet.Compiler.Common": {
"target": "project"
}
}, },
"frameworks": { "frameworks": {
"netcoreapp1.0": { "netcoreapp1.0": {
@ -24,4 +32,4 @@
] ]
} }
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-rc-*", "version": "1.0.0-rc-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"frameworks": { "frameworks": {
@ -14,4 +14,4 @@
}, },
"net451": {} "net451": {}
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-rc-*", "version": "1.0.0-rc-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {
@ -14,5 +14,4 @@
} }
} }
} }
} }

View file

@ -1,12 +1,12 @@
{ {
"version": "1.0.0", "version": "1.0.0",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {
"Microsoft.NETCore.App": "1.0.0-rc3-*" "Microsoft.NETCore.App": "1.0.0-rc3-*"
}, },
"frameworks": { "frameworks": {
"netcoreapp1.0": { } "netcoreapp1.0": {}
} }
} }

View file

@ -1,12 +1,12 @@
{ {
"version": "2.0.0", "version": "2.0.0",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {
"Microsoft.NETCore.App": "1.0.0-rc3-*" "Microsoft.NETCore.App": "1.0.0-rc3-*"
}, },
"frameworks": { "frameworks": {
"netcoreapp1.0": { } "netcoreapp1.0": {}
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0", "version": "1.0.0",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"frameworks": { "frameworks": {
@ -13,4 +13,4 @@
} }
} }
} }
} }

View file

@ -1,13 +1,13 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {
"Microsoft.NETCore.App": "1.0.0-rc3-*" "Microsoft.NETCore.App": "1.0.0-rc3-*"
}, },
"frameworks": { "frameworks": {
"netcoreapp1.0": { } "netcoreapp1.0": {}
}, },
"tools": { "tools": {
"dotnet-portable": { "dotnet-portable": {
@ -15,4 +15,4 @@
"target": "package" "target": "package"
} }
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {
@ -10,13 +10,12 @@
} }
}, },
"frameworks": { "frameworks": {
"netcoreapp1.0": { } "netcoreapp1.0": {}
}, },
"tools": { "tools": {
"ToolWithOutputName": { "ToolWithOutputName": {
"version": "1.0.0", "version": "1.0.0",
"target": "package" "target": "package"
} }
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {
@ -11,13 +11,12 @@
} }
}, },
"frameworks": { "frameworks": {
"netcoreapp1.0": { } "netcoreapp1.0": {}
}, },
"tools": { "tools": {
"dotnet-portable": { "dotnet-portable": {
"version": "1.0.0", "version": "1.0.0",
"target": "package" "target": "package"
} }
} }
} }

View file

@ -1,9 +1,8 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {
"Microsoft.NETCore.App": "1.0.0-rc3-*", "Microsoft.NETCore.App": "1.0.0-rc3-*",
"dotnet-hello": { "dotnet-hello": {
@ -12,6 +11,6 @@
} }
}, },
"frameworks": { "frameworks": {
"netcoreapp1.0": { } "netcoreapp1.0": {}
} }
} }

View file

@ -1,23 +1,24 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {
"Microsoft.NETCore.App": { "Microsoft.NETCore.App": {
"version": "1.0.0-rc3-*", "version": "1.0.0-rc3-*",
"type": "platform" "type": "platform"
}, },
"xunit.core": "2.1.0", "xunit.core": "2.1.0",
"xunit": { "xunit": {
"version": "2.1.0", "version": "2.1.0",
"type": "build" "type": "build"
} }
}, },
"frameworks": { "frameworks": {
"netcoreapp1.0": { "netcoreapp1.0": {
"imports": [ "portable-net451+win8" ] "imports": [
"portable-net451+win8"
]
} }
} }
} }

View file

@ -1,5 +1,5 @@
{ {
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {
@ -13,9 +13,9 @@
} }
}, },
"frameworks": { "frameworks": {
"netcoreapp1.0": { } "netcoreapp1.0": {}
}, },
"tools": { "tools": {
"dotnet-dependency-tool-invoker": { "dotnet-dependency-tool-invoker": {
"version": "1.0.0-*", "version": "1.0.0-*",
"imports": [ "imports": [
@ -24,4 +24,4 @@
] ]
} }
} }
} }

View file

@ -1,5 +1,5 @@
{ {
"compilationOptions": { "buildOptions": {
"outputName": "MyApp", "outputName": "MyApp",
"emitEntryPoint": true "emitEntryPoint": true
}, },
@ -7,6 +7,6 @@
"Microsoft.NETCore.App": "1.0.0-rc3-*" "Microsoft.NETCore.App": "1.0.0-rc3-*"
}, },
"frameworks": { "frameworks": {
"netcoreapp1.0": { } "netcoreapp1.0": {}
} }
} }

View file

@ -1,13 +1,13 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {
"Microsoft.NETCore.App": "1.0.0-rc3-*" "Microsoft.NETCore.App": "1.0.0-rc3-*"
}, },
"frameworks": { "frameworks": {
"netcoreapp1.0": { } "netcoreapp1.0": {}
}, },
"tools": { "tools": {
"dotnet-portable": { "dotnet-portable": {
@ -15,4 +15,4 @@
"target": "package" "target": "package"
} }
} }
} }

View file

@ -1,12 +1,12 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {
"Microsoft.NETCore.App": "1.0.0-rc3-*" "Microsoft.NETCore.App": "1.0.0-rc3-*"
}, },
"frameworks": { "frameworks": {
"netcoreapp1.0": { } "netcoreapp1.0": {}
} }
} }

View file

@ -1,5 +1,5 @@
{ {
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": {}, "dependencies": {},
@ -13,5 +13,4 @@
} }
} }
} }
} }

View file

@ -1,5 +1,5 @@
{ {
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": {}, "dependencies": {},
@ -19,8 +19,10 @@
}, },
"tools": { "tools": {
"dotnet-dependency-context-test": { "dotnet-dependency-context-test": {
"version": "1.0.0-*", "version": "1.0.0-*",
"imports": [ "dnxcore50" ] "imports": [
"dnxcore50"
]
} }
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true, "emitEntryPoint": true,
"preserveCompilationContext": true "preserveCompilationContext": true
}, },
@ -9,6 +9,11 @@
"DependencyContextValidator": "1.0.0-*" "DependencyContextValidator": "1.0.0-*"
}, },
"frameworks": { "frameworks": {
"netcoreapp1.0": { "imports": ["dnxcore50", "portable-net45+win8"] } "netcoreapp1.0": {
"imports": [
"dnxcore50",
"portable-net45+win8"
]
}
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {
@ -8,6 +8,11 @@
"DependencyContextValidator": "1.0.0-*" "DependencyContextValidator": "1.0.0-*"
}, },
"frameworks": { "frameworks": {
"netcoreapp1.0": { "imports": ["dnxcore50", "portable-net45+win8"] } "netcoreapp1.0": {
"imports": [
"dnxcore50",
"portable-net45+win8"
]
}
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true, "emitEntryPoint": true,
"preserveCompilationContext": true "preserveCompilationContext": true
}, },
@ -8,7 +8,6 @@
"DependencyContextValidator": "1.0.0-*" "DependencyContextValidator": "1.0.0-*"
}, },
"frameworks": { "frameworks": {
"net451": { "net451": {}
}
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true, "emitEntryPoint": true,
"preserveCompilationContext": true "preserveCompilationContext": true
}, },
@ -12,6 +12,11 @@
"DependencyContextValidator": "1.0.0-*" "DependencyContextValidator": "1.0.0-*"
}, },
"frameworks": { "frameworks": {
"netcoreapp1.0": { "imports": ["dnxcore50", "portable-net45+win8"] } "netcoreapp1.0": {
"imports": [
"dnxcore50",
"portable-net45+win8"
]
}
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {
@ -11,6 +11,11 @@
"DependencyContextValidator": "1.0.0-*" "DependencyContextValidator": "1.0.0-*"
}, },
"frameworks": { "frameworks": {
"netcoreapp1.0": { "imports": ["dnxcore50", "portable-net45+win8"] } "netcoreapp1.0": {
"imports": [
"dnxcore50",
"portable-net45+win8"
]
}
} }
} }

View file

@ -1,12 +1,14 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true,
"compilerName": "fsc",
"compile": {
"includeFiles": [
"Program.fs"
]
}
}, },
"compilerName": "fsc",
"compileFiles": [
"Program.fs"
],
"dependencies": { "dependencies": {
"Microsoft.FSharp.Core.netcore": "1.0.0-alpha-151221", "Microsoft.FSharp.Core.netcore": "1.0.0-alpha-151221",
"Microsoft.NETCore.App": "1.0.0-rc3-*" "Microsoft.NETCore.App": "1.0.0-rc3-*"
@ -29,4 +31,4 @@
] ]
} }
} }
} }

View file

@ -1,12 +1,14 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true,
"compilerName": "fsc",
"compile": {
"includeFiles": [
"Program.fs"
]
}
}, },
"compilerName": "fsc",
"compileFiles": [
"Program.fs"
],
"dependencies": { "dependencies": {
"TestLibrary": { "TestLibrary": {
"version": "1.0.0-*", "version": "1.0.0-*",
@ -30,4 +32,4 @@
"imports": "dnxcore50" "imports": "dnxcore50"
} }
} }
} }

View file

@ -1,12 +1,14 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true,
"compilerName": "fsc",
"compile": {
"includeFiles": [
"Program.fs"
]
}
}, },
"compilerName": "fsc",
"compileFiles": [
"Program.fs"
],
"dependencies": { "dependencies": {
"Microsoft.FSharp.Core.netcore": "1.0.0-alpha-151221", "Microsoft.FSharp.Core.netcore": "1.0.0-alpha-151221",
"Microsoft.NETCore.App": "1.0.0-rc3-*" "Microsoft.NETCore.App": "1.0.0-rc3-*"
@ -26,4 +28,4 @@
"imports": "dnxcore50" "imports": "dnxcore50"
} }
} }
} }

View file

@ -4,11 +4,6 @@
"Microsoft.FSharp.Core.netcore": "1.0.0-alpha-151221", "Microsoft.FSharp.Core.netcore": "1.0.0-alpha-151221",
"NETStandard.Library": "1.5.0-rc2-24027" "NETStandard.Library": "1.5.0-rc2-24027"
}, },
"compilerName": "fsc",
"compileFiles": [
"Helper2.fs",
"Helper.fs"
],
"tools": { "tools": {
"dotnet-compile-fsc": { "dotnet-compile-fsc": {
"version": "1.0.0-*", "version": "1.0.0-*",
@ -23,5 +18,14 @@
"netcoreapp1.0": { "netcoreapp1.0": {
"imports": "dnxcore50" "imports": "dnxcore50"
} }
},
"buildOptions": {
"compilerName": "fsc",
"compile": {
"includeFiles": [
"Helper2.fs",
"Helper.fs"
]
}
} }
} }

View file

@ -5,12 +5,14 @@
"Microsoft.AspNetCore.Hosting": "1.0.0-rc2-20113", "Microsoft.AspNetCore.Hosting": "1.0.0-rc2-20113",
"Microsoft.Extensions.Logging.Console": "1.0.0-rc2-20254" "Microsoft.Extensions.Logging.Console": "1.0.0-rc2-20254"
}, },
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true,
"compile": {
"include": [
"../src/*.cs"
]
}
}, },
"compile": [
"../src/*.cs"
],
"frameworks": { "frameworks": {
"netcoreapp1.0": { "netcoreapp1.0": {
"dependencies": { "dependencies": {
@ -25,4 +27,4 @@
] ]
} }
} }
} }

View file

@ -5,12 +5,14 @@
"Microsoft.AspNetCore.Hosting": "1.0.0-rc2-20113", "Microsoft.AspNetCore.Hosting": "1.0.0-rc2-20113",
"Microsoft.Extensions.Logging.Console": "1.0.0-rc2-20254" "Microsoft.Extensions.Logging.Console": "1.0.0-rc2-20254"
}, },
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true,
"compile": {
"include": [
"../src/*.cs"
]
}
}, },
"compile": [
"../src/*.cs"
],
"frameworks": { "frameworks": {
"netcoreapp1.0": { "netcoreapp1.0": {
"dependencies": { "dependencies": {
@ -22,4 +24,4 @@
] ]
} }
} }
} }

View file

@ -1,5 +1,5 @@
{ {
"compilationOptions": { "buildOptions": {
"outputName": "MyLibrary" "outputName": "MyLibrary"
}, },
"dependencies": { "dependencies": {
@ -8,4 +8,4 @@
"frameworks": { "frameworks": {
"netstandard1.5": {} "netstandard1.5": {}
} }
} }

View file

@ -1,12 +1,12 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {
"Microsoft.NETCore.App": "1.0.0-rc3-*" "Microsoft.NETCore.App": "1.0.0-rc3-*"
}, },
"frameworks": { "frameworks": {
"netcoreapp1.0": { } "netcoreapp1.0": {}
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {

View file

@ -1,5 +1,5 @@
{ {
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": {}, "dependencies": {},
@ -24,4 +24,4 @@
"someProperty": "someValue" "someProperty": "someValue"
} }
} }
} }

View file

@ -1,5 +1,5 @@
{ {
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true, "emitEntryPoint": true,
"preserveCompilationContext": true "preserveCompilationContext": true
}, },
@ -16,4 +16,4 @@
} }
} }
} }
} }

View file

@ -1,5 +1,5 @@
{ {
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": {}, "dependencies": {},
@ -11,8 +11,8 @@
"version": "1.0.0-rc3-*" "version": "1.0.0-rc3-*"
}, },
"System.Linq": "4.0.0" "System.Linq": "4.0.0"
}, },
"imports": "dnxcore50" "imports": "dnxcore50"
} }
} }
} }

View file

@ -1,5 +1,5 @@
{ {
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"frameworks": { "frameworks": {
@ -14,4 +14,4 @@
"imports": "dnxcore50" "imports": "dnxcore50"
} }
} }
} }

View file

@ -1,5 +1,5 @@
{ {
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"frameworks": { "frameworks": {
@ -30,4 +30,4 @@
"someProperty": "someValue" "someProperty": "someValue"
} }
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {
@ -9,11 +9,15 @@
"type": "platform", "type": "platform",
"version": "1.0.0-rc3-*" "version": "1.0.0-rc3-*"
}, },
"TestLibraryWithResources": { "target": "project" } "TestLibraryWithResources": {
"target": "project"
}
}, },
"frameworks": { "frameworks": {
"netcoreapp1.0": { "netcoreapp1.0": {
"imports": [ "portable-net45+win8" ] "imports": [
"portable-net45+win8"
]
} }
} }
} }

View file

@ -1,10 +1,9 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"frameworks": {
"frameworks": { "net451": {}
"net451": { } }
} }
}

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"frameworks": { "frameworks": {
@ -14,4 +14,4 @@
}, },
"net451": {} "net451": {}
} }
} }

View file

@ -1,11 +1,10 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"frameworks": {
"frameworks": { "net451": {},
"net451": { }, "net45": {}
"net45": { } }
} }
}

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true, "emitEntryPoint": true,
"preserveCompilationContext": true "preserveCompilationContext": true
}, },
@ -9,6 +9,6 @@
"Microsoft.NETCore.App": "1.0.0-rc3-*" "Microsoft.NETCore.App": "1.0.0-rc3-*"
}, },
"frameworks": { "frameworks": {
"netcoreapp1.0": { } "netcoreapp1.0": {}
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"nowarn": [ "nowarn": [
"CS1591" "CS1591"
], ],
@ -15,4 +15,4 @@
"frameworks": { "frameworks": {
"netstandard1.5": {} "netstandard1.5": {}
} }
} }

View file

@ -1,13 +1,13 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {
"Microsoft.NETCore.App": "1.0.0-rc3-*" "Microsoft.NETCore.App": "1.0.0-rc3-*"
}, },
"frameworks": { "frameworks": {
"netcoreapp1.0": { } "netcoreapp1.0": {}
}, },
"runtimes": { "runtimes": {
"win7-x64": {}, "win7-x64": {},
@ -19,4 +19,4 @@
"rhel.7.2-x64": {}, "rhel.7.2-x64": {},
"debian.8-x64": {} "debian.8-x64": {}
} }
} }

View file

@ -1,12 +1,12 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {
"Microsoft.NETCore.App": "1.0.0-rc3-*" "Microsoft.NETCore.App": "1.0.0-rc3-*"
}, },
"frameworks": { "frameworks": {
"netcoreapp1.0": { } "netcoreapp1.0": {}
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {
@ -8,11 +8,13 @@
"type": "platform", "type": "platform",
"version": "1.0.0-rc3-*" "version": "1.0.0-rc3-*"
}, },
"LibraryWithBuildDependency": { "target": "project" } "LibraryWithBuildDependency": {
"target": "project"
}
}, },
"frameworks": { "frameworks": {
"netcoreapp1.0": { "netcoreapp1.0": {
"imports": "dnxcore50" "imports": "dnxcore50"
} }
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true, "emitEntryPoint": true,
"outputName": "AppWithContentPackage" "outputName": "AppWithContentPackage"
}, },
@ -9,6 +9,11 @@
"SharedContentA": "1.0.0-*" "SharedContentA": "1.0.0-*"
}, },
"frameworks": { "frameworks": {
"netcoreapp1.0": { "imports": ["netstandardapp1.5", "dnxcore50"] } "netcoreapp1.0": {
"imports": [
"netstandardapp1.5",
"dnxcore50"
]
}
} }
} }

View file

@ -1,13 +1,18 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true,
"copyToOutput": {
"include": "testcontentfile.txt"
}
}, },
"dependencies": { "dependencies": {
"Microsoft.NETCore.App": "1.0.0-rc3-*" "Microsoft.NETCore.App": "1.0.0-rc3-*"
}, },
"content": "testcontentfile.txt",
"frameworks": { "frameworks": {
"netcoreapp1.0": { } "netcoreapp1.0": {}
},
"publishOptions": {
"include": "testcontentfile.txt"
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true, "emitEntryPoint": true,
"preserveCompilationContext": true "preserveCompilationContext": true
}, },
@ -12,6 +12,6 @@
"Microsoft.NETCore.App": "1.0.0-rc3-*" "Microsoft.NETCore.App": "1.0.0-rc3-*"
}, },
"frameworks": { "frameworks": {
"netcoreapp1.0": { } "netcoreapp1.0": {}
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"nowarn": [ "nowarn": [
"CS1591" "CS1591"
], ],
@ -15,4 +15,4 @@
"frameworks": { "frameworks": {
"netstandard1.5": {} "netstandard1.5": {}
} }
} }

View file

@ -1,13 +1,13 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {
"Microsoft.NETCore.App": "1.0.0-rc3-*" "Microsoft.NETCore.App": "1.0.0-rc3-*"
}, },
"frameworks": { "frameworks": {
"netcoreapp1.0": { } "netcoreapp1.0": {}
}, },
"scripts": { "scripts": {
"prepublish": [ "prepublish": [
@ -23,4 +23,4 @@
"echoscript postcompile_output ?%compile:ProjectPath%? ?%compile:Configuration%? ?%compile:OutputPath%? ?%compile:TargetFramework%? ?%compile:Runtime%?" "echoscript postcompile_output ?%compile:ProjectPath%? ?%compile:Configuration%? ?%compile:OutputPath%? ?%compile:TargetFramework%? ?%compile:Runtime%?"
] ]
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true, "emitEntryPoint": true,
"preserveCompilationContext": true "preserveCompilationContext": true
}, },
@ -12,7 +12,7 @@
"Microsoft.NETCore.App": "1.0.0-rc3-*" "Microsoft.NETCore.App": "1.0.0-rc3-*"
}, },
"frameworks": { "frameworks": {
"netcoreapp1.0": { } "netcoreapp1.0": {}
}, },
"scripts": { "scripts": {
"prepublish": [ "prepublish": [
@ -22,4 +22,4 @@
"echo postpublish_output ?%publish:ProjectPath%? ?%publish:Configuration%? ?%publish:OutputPath%? ?%publish:Framework%? ?%publish:Runtime%?" "echo postpublish_output ?%publish:ProjectPath%? ?%publish:Configuration%? ?%publish:OutputPath%? ?%publish:Framework%? ?%publish:Runtime%?"
] ]
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"nowarn": [ "nowarn": [
"CS1591" "CS1591"
], ],
@ -15,4 +15,4 @@
"frameworks": { "frameworks": {
"netcoreapp1.0": {} "netcoreapp1.0": {}
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {
@ -13,4 +13,4 @@
"frameworks": { "frameworks": {
"netcoreapp1.0": {} "netcoreapp1.0": {}
} }
} }

View file

@ -1,13 +1,13 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {
"Microsoft.NETCore.App": "1.0.0-rc3-*" "Microsoft.NETCore.App": "1.0.0-rc3-*"
}, },
"frameworks": { "frameworks": {
"netcoreapp1.0": { } "netcoreapp1.0": {}
}, },
"runtimes": { "runtimes": {
"win7-x64": {}, "win7-x64": {},
@ -19,4 +19,4 @@
"rhel.7.2-x64": {}, "rhel.7.2-x64": {},
"debian.8-x64": {} "debian.8-x64": {}
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true, "emitEntryPoint": true,
"preserveCompilationContext": true "preserveCompilationContext": true
}, },
@ -12,6 +12,6 @@
"Microsoft.NETCore.App": "1.0.0-rc3-*" "Microsoft.NETCore.App": "1.0.0-rc3-*"
}, },
"frameworks": { "frameworks": {
"netcoreapp1.0": { } "netcoreapp1.0": {}
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"nowarn": [ "nowarn": [
"CS1591" "CS1591"
], ],
@ -18,4 +18,4 @@
"frameworks": { "frameworks": {
"netstandard1.5": {} "netstandard1.5": {}
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": false "emitEntryPoint": false
}, },
"dependencies": {}, "dependencies": {},
@ -32,4 +32,4 @@
} }
} }
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"xmlDoc": true "xmlDoc": true
}, },
"dependencies": { "dependencies": {
@ -9,4 +9,4 @@
"frameworks": { "frameworks": {
"netstandard1.5": {} "netstandard1.5": {}
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {
@ -9,6 +9,6 @@
"Microsoft.NETCore.App": "1.0.0-rc3-*" "Microsoft.NETCore.App": "1.0.0-rc3-*"
}, },
"frameworks": { "frameworks": {
"netcoreapp1.0": { } "netcoreapp1.0": {}
} }
} }

View file

@ -1,12 +1,12 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {
"Microsoft.NETCore.App": "1.0.0-rc3-*" "Microsoft.NETCore.App": "1.0.0-rc3-*"
}, },
"frameworks": { "frameworks": {
"netcoreapp1.0": { } "netcoreapp1.0": {}
} }
} }

View file

@ -1,12 +1,12 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {
"Microsoft.NETCore.App": "1.0.0-rc3-*" "Microsoft.NETCore.App": "1.0.0-rc3-*"
}, },
"frameworks": { "frameworks": {
"netcoreapp1.0": { } "netcoreapp1.0": {}
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true, "emitEntryPoint": true,
"xmlDoc": true "xmlDoc": true
}, },
@ -8,6 +8,6 @@
"Microsoft.NETCore.App": "1.0.0-rc3-*" "Microsoft.NETCore.App": "1.0.0-rc3-*"
}, },
"frameworks": { "frameworks": {
"netcoreapp1.0": { } "netcoreapp1.0": {}
} }
} }

View file

@ -24,4 +24,4 @@
] ]
} }
} }
} }

View file

@ -1,11 +1,13 @@
{ {
"version": "1.0.0-preview2-*", "version": "1.0.0-preview2-*",
"compilationOptions": { "buildOptions": {
"keyFile": "../../tools/Key.snk", "keyFile": "../../tools/Key.snk",
"warningsAsErrors": true "warningsAsErrors": true
}, },
"dependencies": { "dependencies": {
"Microsoft.DotNet.ProjectModel": { "target": "project" }, "Microsoft.DotNet.ProjectModel": {
"target": "project"
},
"NuGet.Versioning": "3.5.0-rc-1285", "NuGet.Versioning": "3.5.0-rc-1285",
"NuGet.Packaging": "3.5.0-rc-1285", "NuGet.Packaging": "3.5.0-rc-1285",
"NuGet.Frameworks": "3.5.0-rc-1285", "NuGet.Frameworks": "3.5.0-rc-1285",

View file

@ -1,13 +1,19 @@
{ {
"version": "1.0.0-preview2-*", "version": "1.0.0-preview2-*",
"compilationOptions": { "buildOptions": {
"keyFile": "../../tools/Key.snk" "keyFile": "../../tools/Key.snk"
}, },
"dependencies": { "dependencies": {
"Microsoft.CodeAnalysis.CSharp": "1.3.0-beta1-20160429-01", "Microsoft.CodeAnalysis.CSharp": "1.3.0-beta1-20160429-01",
"Microsoft.DotNet.ProjectModel": { "target": "project" }, "Microsoft.DotNet.ProjectModel": {
"Microsoft.DotNet.Cli.Utils": { "target": "project" }, "target": "project"
"Microsoft.DotNet.Files": { "target": "project" } },
"Microsoft.DotNet.Cli.Utils": {
"target": "project"
},
"Microsoft.DotNet.Files": {
"target": "project"
}
}, },
"frameworks": { "frameworks": {
"net451": { "net451": {
@ -19,10 +25,10 @@
"type": "build" "type": "build"
}, },
"System.IO": { "System.IO": {
"type": "build" "type": "build"
}, },
"System.Threading.Tasks": { "System.Threading.Tasks": {
"type": "build" "type": "build"
} }
} }
}, },
@ -33,4 +39,4 @@
} }
}, },
"scripts": {} "scripts": {}
} }

View file

@ -1,12 +1,16 @@
{ {
"version": "1.0.0-preview2-*", "version": "1.0.0-preview2-*",
"compilationOptions": { "buildOptions": {
"keyFile": "../../tools/Key.snk" "keyFile": "../../tools/Key.snk"
}, },
"description": "Abstraction to interact with the file system and file paths.", "description": "Abstraction to interact with the file system and file paths.",
"dependencies": { "dependencies": {
"Microsoft.DotNet.Cli.Utils": { "target": "project" }, "Microsoft.DotNet.Cli.Utils": {
"Microsoft.DotNet.ProjectModel": { "target": "project" }, "target": "project"
},
"Microsoft.DotNet.ProjectModel": {
"target": "project"
},
"System.Linq.Expressions": "4.0.11-rc2-24027" "System.Linq.Expressions": "4.0.11-rc2-24027"
}, },
"frameworks": { "frameworks": {
@ -30,4 +34,4 @@
} }
}, },
"scripts": {} "scripts": {}
} }

View file

@ -1,17 +1,13 @@
{ {
"description": "Abstractions for making code that uses file system and environment testable.", "description": "Abstractions for making code that uses file system and environment testable.",
"version": "1.0.0-rc3-*", "version": "1.0.0-rc3-*",
"repository": { "buildOptions": {
"type": "git",
"url": "git://github.com/dotnet/cli"
},
"compilationOptions": {
"warningsAsErrors": true, "warningsAsErrors": true,
"keyFile": "../../tools/Key.snk", "keyFile": "../../tools/Key.snk",
"allowUnsafe": true "allowUnsafe": true
}, },
"frameworks": { "frameworks": {
"net451": { }, "net451": {},
"netstandard1.3": { "netstandard1.3": {
"dependencies": { "dependencies": {
"System.AppContext": "4.1.0-rc2-24027", "System.AppContext": "4.1.0-rc2-24027",
@ -25,5 +21,11 @@
} }
} }
}, },
"scripts": { } "scripts": {},
} "packOptions": {
"repository": {
"type": "git",
"url": "git://github.com/dotnet/cli"
}
}
}

View file

@ -1,10 +1,12 @@
{ {
"version": "1.0.0-preview2-*", "version": "1.0.0-preview2-*",
"compilationOptions": { "buildOptions": {
"keyFile": "../../tools/Key.snk" "keyFile": "../../tools/Key.snk"
}, },
"dependencies": { "dependencies": {
"Microsoft.DotNet.ProjectModel": { "target": "project" }, "Microsoft.DotNet.ProjectModel": {
"target": "project"
},
"System.Runtime.Loader": "4.0.0-rc2-24027" "System.Runtime.Loader": "4.0.0-rc2-24027"
}, },
"frameworks": { "frameworks": {
@ -12,4 +14,4 @@
"imports": "portable-net45+wp80+win8+wpa81+dnxcore50" "imports": "portable-net45+wp80+win8+wpa81+dnxcore50"
} }
} }
} }

View file

@ -1,11 +1,15 @@
{ {
"version": "1.0.0-preview2-*", "version": "1.0.0-preview2-*",
"compilationOptions": { "buildOptions": {
"keyFile": "../../tools/Key.snk" "keyFile": "../../tools/Key.snk"
}, },
"dependencies": { "dependencies": {
"Microsoft.DotNet.ProjectModel": { "target": "project" }, "Microsoft.DotNet.ProjectModel": {
"Microsoft.DotNet.Compiler.Common": { "target": "project" }, "target": "project"
},
"Microsoft.DotNet.Compiler.Common": {
"target": "project"
},
"Microsoft.CodeAnalysis.CSharp.Workspaces": "1.3.0-beta1-20160429-01" "Microsoft.CodeAnalysis.CSharp.Workspaces": "1.3.0-beta1-20160429-01"
}, },
"frameworks": { "frameworks": {
@ -29,4 +33,4 @@
] ]
} }
} }
} }

View file

@ -1,11 +1,13 @@
{ {
"version": "1.0.0-rc3-*", "version": "1.0.0-rc3-*",
"compilationOptions": { "buildOptions": {
"keyFile": "../../tools/Key.snk" "keyFile": "../../tools/Key.snk"
}, },
"description": "Types to model a .NET Project", "description": "Types to model a .NET Project",
"dependencies": { "dependencies": {
"Microsoft.Extensions.DependencyModel": { "target": "project" }, "Microsoft.Extensions.DependencyModel": {
"target": "project"
},
"Newtonsoft.Json": "7.0.1", "Newtonsoft.Json": "7.0.1",
"NuGet.Packaging": "3.5.0-rc-1285", "NuGet.Packaging": "3.5.0-rc-1285",
"NuGet.RuntimeModel": "3.5.0-rc-1285", "NuGet.RuntimeModel": "3.5.0-rc-1285",
@ -41,4 +43,4 @@
} }
} }
} }
} }

View file

@ -1,16 +1,13 @@
{ {
"version": "1.0.0-preview2-*", "version": "1.0.0-preview2-*",
"description": "Microsoft.DotNet.TestFramework Class Library", "description": "Microsoft.DotNet.TestFramework Class Library",
"tags": [ "buildOptions": {
""
],
"compilationOptions": {
"keyFile": "../../tools/Key.snk" "keyFile": "../../tools/Key.snk"
}, },
"projectUrl": "",
"licenseUrl": "",
"dependencies": { "dependencies": {
"Microsoft.DotNet.Cli.Utils": { "target": "project" } "Microsoft.DotNet.Cli.Utils": {
"target": "project"
}
}, },
"frameworks": { "frameworks": {
"netstandard1.5": { "netstandard1.5": {
@ -18,6 +15,13 @@
"portable-net45+wp80+win8+wpa81+dnxcore50" "portable-net45+wp80+win8+wpa81+dnxcore50"
] ]
}, },
"net451": { } "net451": {}
},
"packOptions": {
"projectUrl": "",
"licenseUrl": "",
"tags": [
""
]
} }
} }

View file

@ -1,11 +1,7 @@
{ {
"description": "Abstractions for reading `.deps` files.", "description": "Abstractions for reading `.deps` files.",
"version": "1.0.0-rc3-*", "version": "1.0.0-rc3-*",
"repository": { "buildOptions": {
"type": "git",
"url": "git://github.com/dotnet/cli"
},
"compilationOptions": {
"warningsAsErrors": true, "warningsAsErrors": true,
"keyFile": "../../tools/Key.snk" "keyFile": "../../tools/Key.snk"
}, },
@ -26,5 +22,11 @@
} }
} }
}, },
"scripts": {} "scripts": {},
} "packOptions": {
"repository": {
"type": "git",
"url": "git://github.com/dotnet/cli"
}
}
}

View file

@ -1,18 +1,16 @@
{ {
"description": "Abstractions for test runners to communicate to a tool, such as Visual Studio.", "description": "Abstractions for test runners to communicate to a tool, such as Visual Studio.",
"version": "1.0.0-preview2-*", "version": "1.0.0-preview2-*",
"repository": { "buildOptions": {
"type": "git",
"url": "git://github.com/dotnet/cli"
},
"compilationOptions": {
"warningsAsErrors": true, "warningsAsErrors": true,
"allowUnsafe": true, "allowUnsafe": true,
"keyFile": "../../tools/Key.snk" "keyFile": "../../tools/Key.snk"
}, },
"dependencies": { "dependencies": {
"Newtonsoft.Json": "7.0.1", "Newtonsoft.Json": "7.0.1",
"Microsoft.DotNet.ProjectModel": { "target": "project" }, "Microsoft.DotNet.ProjectModel": {
"target": "project"
},
"Microsoft.DiaSymReader": "1.0.6", "Microsoft.DiaSymReader": "1.0.6",
"Microsoft.DiaSymReader.Native": "1.3.3" "Microsoft.DiaSymReader.Native": "1.3.3"
}, },
@ -29,5 +27,11 @@
} }
} }
}, },
"scripts": {} "scripts": {},
} "packOptions": {
"repository": {
"type": "git",
"url": "git://github.com/dotnet/cli"
}
}
}

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {
@ -20,4 +20,4 @@
] ]
} }
} }
} }

Some files were not shown because too many files have changed in this diff Show more