Target netcoreapp and reference NETCore.App

This commit is contained in:
Pavel Krymets 2016-10-28 14:55:07 -07:00
parent b7f3ea4451
commit 75ab32926b
1 changed files with 15 additions and 3 deletions

View File

@ -14,10 +14,22 @@
"Microsoft.Extensions.Logging": "1.1.0-*", "Microsoft.Extensions.Logging": "1.1.0-*",
"Microsoft.Extensions.Logging.Console": "1.1.0-*", "Microsoft.Extensions.Logging.Console": "1.1.0-*",
"Microsoft.Extensions.Options.ConfigurationExtensions": "1.1.0-*", "Microsoft.Extensions.Options.ConfigurationExtensions": "1.1.0-*",
"NETStandard.Library": "1.6.1-*"
}, },
"frameworks": { "frameworks": {
"netstandard1.3": {}, "netcoreapp1.0": {
"net451": {} "dependencies": {
"Microsoft.NETCore.App": "1.1.0-*"
}
},
"netcoreapp1.1": {
"dependencies": {
"Microsoft.NETCore.App": "1.1.0-*"
}
},
"net451": {
"dependencies": {
"NETStandard.Library": "1.6.1-*"
}
}
} }
} }