Updated Redis cache project to support .NET Core

This commit is contained in:
Kiran Challa 2016-08-26 09:01:04 -07:00
Родитель 3d1faa0592
Коммит 14cf36d4f5
3 изменённых файлов: 20 добавлений и 3 удалений

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

@ -6,6 +6,14 @@
"Microsoft.Extensions.Caching.Redis": "1.1.0-*"
},
"frameworks": {
"net451": {}
"net451": {},
"netcoreapp1.0": {
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0-*",
"type": "platform"
}
}
}
}
}

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

@ -23,7 +23,7 @@
"dependencies": {
"Microsoft.Extensions.Caching.Abstractions": "1.1.0-*",
"Microsoft.Extensions.Options": "1.1.0-*",
"StackExchange.Redis.StrongName": "1.0.333"
"StackExchange.Redis.StrongName": "1.1.604-alpha"
},
"frameworks": {
"net451": {
@ -32,6 +32,7 @@
"type": "build"
}
}
}
},
"netstandard1.5": {}
}
}

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

@ -9,6 +9,14 @@
},
"testRunner": "xunit",
"frameworks": {
"netcoreapp1.0": {
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0-*",
"type": "platform"
}
}
},
"net451": {}
}
}