Transition to netstandard.

- dotnet5.X => netstandard1.y (where y = x-1).
- DNXCore50 => netstandardapp1.5.
- Applied the same changes to ifdefs.
This commit is contained in:
N. Taylor Mullen 2016-03-01 13:36:17 -08:00
parent bfc2ac4c14
commit f6752030dd
1 changed files with 7 additions and 4 deletions

View File

@ -17,12 +17,15 @@
"wwwroot/**/*" "wwwroot/**/*"
], ],
"frameworks": { "frameworks": {
"dnx451": { }, "dnx451": {},
"dnxcore50": { "netstandardapp1.5": {
"dependencies": { "dependencies": {
"NETStandard.Library": "1.0.0-*" "NETStandard.Library": "1.0.0-*"
}, },
"imports": "portable-net451+win8" "imports": [
} "dnxcore50",
"portable-net451+win8"
]
}
} }
} }