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:
parent
9af3edfeda
commit
ed3bd312cf
122 changed files with 847 additions and 594 deletions
|
@ -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": {}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -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": {}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -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": {}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue