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-*",
"compilationOptions": {
"buildOptions": {
"emitEntryPoint": true
},
"dependencies": {
@ -30,4 +30,4 @@
]
}
}
}
}

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,6 +1,6 @@
{
"version": "1.0.0-*",
"compilationOptions": {
"buildOptions": {
"emitEntryPoint": true,
"preserveCompilationContext": true
},
@ -9,6 +9,11 @@
"DependencyContextValidator": "1.0.0-*"
},
"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-*",
"compilationOptions": {
"buildOptions": {
"emitEntryPoint": true
},
"dependencies": {
@ -8,6 +8,11 @@
"DependencyContextValidator": "1.0.0-*"
},
"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-*",
"compilationOptions": {
"buildOptions": {
"emitEntryPoint": true,
"preserveCompilationContext": true
},
@ -8,7 +8,6 @@
"DependencyContextValidator": "1.0.0-*"
},
"frameworks": {
"net451": {
}
"net451": {}
}
}
}

View file

@ -1,6 +1,6 @@
{
"version": "1.0.0-*",
"compilationOptions": {
"buildOptions": {
"emitEntryPoint": true,
"preserveCompilationContext": true
},
@ -12,6 +12,11 @@
"DependencyContextValidator": "1.0.0-*"
},
"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-*",
"compilationOptions": {
"buildOptions": {
"emitEntryPoint": true
},
"dependencies": {
@ -11,6 +11,11 @@
"DependencyContextValidator": "1.0.0-*"
},
"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-*",
"compilationOptions": {
"emitEntryPoint": true
"buildOptions": {
"emitEntryPoint": true,
"compilerName": "fsc",
"compile": {
"includeFiles": [
"Program.fs"
]
}
},
"compilerName": "fsc",
"compileFiles": [
"Program.fs"
],
"dependencies": {
"Microsoft.FSharp.Core.netcore": "1.0.0-alpha-151221",
"Microsoft.NETCore.App": "1.0.0-rc3-*"
@ -29,4 +31,4 @@
]
}
}
}
}

View file

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

View file

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

View file

@ -4,11 +4,6 @@
"Microsoft.FSharp.Core.netcore": "1.0.0-alpha-151221",
"NETStandard.Library": "1.5.0-rc2-24027"
},
"compilerName": "fsc",
"compileFiles": [
"Helper2.fs",
"Helper.fs"
],
"tools": {
"dotnet-compile-fsc": {
"version": "1.0.0-*",
@ -23,5 +18,14 @@
"netcoreapp1.0": {
"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.Extensions.Logging.Console": "1.0.0-rc2-20254"
},
"compilationOptions": {
"emitEntryPoint": true
"buildOptions": {
"emitEntryPoint": true,
"compile": {
"include": [
"../src/*.cs"
]
}
},
"compile": [
"../src/*.cs"
],
"frameworks": {
"netcoreapp1.0": {
"dependencies": {
@ -25,4 +27,4 @@
]
}
}
}
}

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,17 +1,13 @@
{
"description": "Abstractions for making code that uses file system and environment testable.",
"version": "1.0.0-rc3-*",
"repository": {
"type": "git",
"url": "git://github.com/dotnet/cli"
},
"compilationOptions": {
"buildOptions": {
"warningsAsErrors": true,
"keyFile": "../../tools/Key.snk",
"allowUnsafe": true
},
"frameworks": {
"net451": { },
"net451": {},
"netstandard1.3": {
"dependencies": {
"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-*",
"compilationOptions": {
"buildOptions": {
"keyFile": "../../tools/Key.snk"
},
"dependencies": {
"Microsoft.DotNet.ProjectModel": { "target": "project" },
"Microsoft.DotNet.ProjectModel": {
"target": "project"
},
"System.Runtime.Loader": "4.0.0-rc2-24027"
},
"frameworks": {
@ -12,4 +14,4 @@
"imports": "portable-net45+wp80+win8+wpa81+dnxcore50"
}
}
}
}

View file

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

View file

@ -1,11 +1,13 @@
{
"version": "1.0.0-rc3-*",
"compilationOptions": {
"buildOptions": {
"keyFile": "../../tools/Key.snk"
},
"description": "Types to model a .NET Project",
"dependencies": {
"Microsoft.Extensions.DependencyModel": { "target": "project" },
"Microsoft.Extensions.DependencyModel": {
"target": "project"
},
"Newtonsoft.Json": "7.0.1",
"NuGet.Packaging": "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-*",
"description": "Microsoft.DotNet.TestFramework Class Library",
"tags": [
""
],
"compilationOptions": {
"buildOptions": {
"keyFile": "../../tools/Key.snk"
},
"projectUrl": "",
"licenseUrl": "",
"dependencies": {
"Microsoft.DotNet.Cli.Utils": { "target": "project" }
"Microsoft.DotNet.Cli.Utils": {
"target": "project"
}
},
"frameworks": {
"netstandard1.5": {
@ -18,6 +15,13 @@
"portable-net45+wp80+win8+wpa81+dnxcore50"
]
},
"net451": { }
"net451": {}
},
"packOptions": {
"projectUrl": "",
"licenseUrl": "",
"tags": [
""
]
}
}
}

View file

@ -1,11 +1,7 @@
{
"description": "Abstractions for reading `.deps` files.",
"version": "1.0.0-rc3-*",
"repository": {
"type": "git",
"url": "git://github.com/dotnet/cli"
},
"compilationOptions": {
"buildOptions": {
"warningsAsErrors": true,
"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.",
"version": "1.0.0-preview2-*",
"repository": {
"type": "git",
"url": "git://github.com/dotnet/cli"
},
"compilationOptions": {
"buildOptions": {
"warningsAsErrors": true,
"allowUnsafe": true,
"keyFile": "../../tools/Key.snk"
},
"dependencies": {
"Newtonsoft.Json": "7.0.1",
"Microsoft.DotNet.ProjectModel": { "target": "project" },
"Microsoft.DotNet.ProjectModel": {
"target": "project"
},
"Microsoft.DiaSymReader": "1.0.6",
"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-*",
"compilationOptions": {
"buildOptions": {
"emitEntryPoint": true
},
"dependencies": {
@ -20,4 +20,4 @@
]
}
}
}
}

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