Updated Redis repository project to support .NET Core (#175)
This commit is contained in:
parent
4cfdc2ecda
commit
7dcbb27b6f
|
|
@ -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-*"
|
||||||
|
|
|
||||||
|
|
@ -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,
|
||||||
|
|
|
||||||
|
|
@ -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",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue