Skip to content
This repository was archived by the owner on Dec 14, 2018. It is now read-only.

Commit e81bdbb

Browse files
committed
Downgrade to RTM packages for UWP
1 parent 69b4691 commit e81bdbb

File tree

3 files changed

+25
-4
lines changed

3 files changed

+25
-4
lines changed

src/Microsoft.Framework.Caching.Abstractions/project.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,21 @@
99
"frameworks": {
1010
"net45": { },
1111
"dnx451": { },
12-
"dotnet": {
12+
"dnxcore50": {
1313
"dependencies": {
1414
"System.Collections": "4.0.11-beta-*",
1515
"System.Threading": "4.0.11-beta-*",
1616
"System.Threading.Tasks": "4.0.11-beta-*"
1717
}
18+
},
19+
"dotnet": {
20+
"dependencies": {
21+
"System.Collections": "4.0.10",
22+
"System.Diagnostics.Debug": "4.0.10",
23+
"System.Resources.ResourceManager": "4.0.0",
24+
"System.Runtime": "4.0.20",
25+
"System.Threading.Tasks": "4.0.10"
26+
}
1827
}
1928
},
2029
"version": "1.0.0-*",

src/Microsoft.Framework.Caching.Memory/EntryLinkHelpers.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using System;
55
using System.Collections.Generic;
6-
#if DOTNET
6+
#if DOTNET || DNXCORE50
77
using System.Threading;
88
#else
99
using System.Runtime.Remoting;
@@ -14,7 +14,7 @@ namespace Microsoft.Framework.Caching.Memory
1414
{
1515
internal static class EntryLinkHelpers
1616
{
17-
#if DOTNET
17+
#if DOTNET || DNXCORE50
1818
private static readonly AsyncLocal<EntryLink> _contextLink = new AsyncLocal<EntryLink>();
1919

2020
public static EntryLink ContextLink

src/Microsoft.Framework.Caching.Memory/project.json

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,23 @@
1616
"frameworks": {
1717
"net45": { },
1818
"dnx451": { },
19-
"dotnet": {
19+
"dnxcore50": {
2020
"dependencies": {
2121
"System.Linq": "4.0.1-beta-*",
2222
"System.Threading": "4.0.11-beta-*"
2323
}
24+
},
25+
"dotnet": {
26+
"dependencies": {
27+
"System.Collections": "4.0.10",
28+
"System.Diagnostics.Debug": "4.0.10",
29+
"System.Linq": "4.0.0",
30+
"System.Resources.ResourceManager": "4.0.0",
31+
"System.Runtime": "4.0.20",
32+
"System.Runtime.Extensions": "4.0.10",
33+
"System.Threading": "4.0.10",
34+
"System.Threading.Tasks": "4.0.10"
35+
}
2436
}
2537
}
2638
}

0 commit comments

Comments
 (0)