Merge pull request #8 from aspnet/pakrym/netcoreapp

Target netcoreapp and reference NETCore.App
This commit is contained in:
Pavel Krymets 2016-10-31 10:52:06 -07:00 committed by GitHub
commit 1d35166e11
1 changed files with 15 additions and 3 deletions

View File

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