Updated Redis repository project to support .NET Core (#175)

This commit is contained in:
Pavel Krymets 2016-09-06 14:10:13 -07:00 коммит произвёл GitHub
Родитель 4cfdc2ecda
Коммит 7dcbb27b6f
3 изменённых файлов: 13 добавлений и 4 удалений

Просмотреть файл

@ -5,7 +5,7 @@
"emitEntryPoint": true
},
"dependencies": {
"Microsoft.AspNetCore.DataProtection.Redis": "1.1.0-*",
"Microsoft.AspNetCore.DataProtection.Redis": "0.1.0-*",
"Microsoft.Extensions.DependencyInjection": "1.1.0-*",
"Microsoft.Extensions.Logging": "1.1.0-*",
"Microsoft.Extensions.Logging.Console": "1.1.0-*"

Просмотреть файл

@ -14,10 +14,11 @@
},
"dependencies": {
"Microsoft.AspNetCore.DataProtection": "1.1.0-*",
"StackExchange.Redis.StrongName": "1.1.603"
"StackExchange.Redis.StrongName": "1.1.604-alpha"
},
"frameworks": {
"net451": {}
"net451": {},
"netstandard1.5": {}
},
"buildOptions": {
"allowUnsafe": true,

Просмотреть файл

@ -2,12 +2,20 @@
"dependencies": {
"dotnet-test-xunit": "2.2.0-*",
"Microsoft.AspNetCore.DataProtection.Abstractions": "1.1.0-*",
"Microsoft.AspNetCore.DataProtection.Redis": "1.1.0-*",
"Microsoft.AspNetCore.DataProtection.Redis": "0.1.0-*",
"Microsoft.AspNetCore.Testing": "1.1.0-*",
"Moq": "4.6.36-*",
"xunit": "2.2.0-*"
},
"frameworks": {
"netcoreapp1.0": {
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0-*",
"type": "platform"
}
}
},
"net451": {}
},
"testRunner": "xunit",