Microsoft.NETCore.App no longer supports netstandard
Any project that references Microsoft.NETCore.App must target netcoreapp1.0. Moving app projects to netcoreapp1.0; moving library projects to reference NETStandard.Library.
This commit is contained in:
parent
a087de2f87
commit
fad7477ea5
18 changed files with 185 additions and 78 deletions
|
@ -3,14 +3,21 @@
|
|||
"dependencies": {
|
||||
"TwoTargetLargeP4": {
|
||||
"target": "project"
|
||||
},
|
||||
"Microsoft.NETCore.App": {
|
||||
"type": "platform",
|
||||
"version": "1.0.0-rc3-004336"
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"netcoreapp1.0": {},
|
||||
"netstandard1.5": {}
|
||||
"netcoreapp1.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"type": "platform",
|
||||
"version": "1.0.0-rc3-004336"
|
||||
}
|
||||
}
|
||||
},
|
||||
"netstandard1.5": {
|
||||
"dependencies": {
|
||||
"NETStandard.Library": "1.5.0-rc3-24127-01"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue