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

This commit is contained in:
Pavel Krymets 2016-09-06 14:10:13 -07:00 committed by GitHub
parent 4cfdc2ecda
commit 7dcbb27b6f
3 changed files with 13 additions and 4 deletions

View File

@ -5,7 +5,7 @@
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {
"Microsoft.AspNetCore.DataProtection.Redis": "1.1.0-*", "Microsoft.AspNetCore.DataProtection.Redis": "0.1.0-*",
"Microsoft.Extensions.DependencyInjection": "1.1.0-*", "Microsoft.Extensions.DependencyInjection": "1.1.0-*",
"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-*"

View File

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

View File

@ -2,12 +2,20 @@
"dependencies": { "dependencies": {
"dotnet-test-xunit": "2.2.0-*", "dotnet-test-xunit": "2.2.0-*",
"Microsoft.AspNetCore.DataProtection.Abstractions": "1.1.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-*", "Microsoft.AspNetCore.Testing": "1.1.0-*",
"Moq": "4.6.36-*", "Moq": "4.6.36-*",
"xunit": "2.2.0-*" "xunit": "2.2.0-*"
}, },
"frameworks": { "frameworks": {
"netcoreapp1.0": {
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0-*",
"type": "platform"
}
}
},
"net451": {} "net451": {}
}, },
"testRunner": "xunit", "testRunner": "xunit",