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

Commit c858675

Browse files
committed
Downgrade to RTM packages for UWP
1 parent af8f193 commit c858675

File tree

5 files changed

+42
-6
lines changed

5 files changed

+42
-6
lines changed

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

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"frameworks": {
1313
"net45": { },
1414
"dnx451": { },
15-
"dotnet": {
15+
"dnxcore50": {
1616
"dependencies": {
1717
"System.Collections": "4.0.11-beta-*",
1818
"System.Collections.Concurrent": "4.0.11-beta-*",
@@ -23,6 +23,19 @@
2323
"System.Runtime.Extensions": "4.0.11-beta-*",
2424
"System.Runtime.InteropServices": "4.0.21-beta-*"
2525
}
26+
},
27+
"dotnet": {
28+
"dependencies": {
29+
"System.Collections": "4.0.10",
30+
"System.Collections.Concurrent": "4.0.10",
31+
"System.Diagnostics.Debug": "4.0.10",
32+
"System.Globalization": "4.0.10",
33+
"System.Linq": "4.0.0",
34+
"System.Reflection": "4.0.10",
35+
"System.Resources.ResourceManager": "4.0.0",
36+
"System.Runtime": "4.0.20",
37+
"System.Runtime.Extensions": "4.0.10"
38+
}
2639
}
2740
}
2841
}

src/Microsoft.Framework.Logging.Console/project.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,18 @@
1111
"frameworks": {
1212
"net45": { },
1313
"dnx451": { },
14-
"dotnet": {
14+
"dnxcore50": {
1515
"dependencies": {
1616
"System.Runtime": "4.0.21-beta-*",
1717
"System.Console": "4.0.0-beta-*",
1818
"System.IO": "4.0.11-beta-*",
1919
"System.Threading": "4.0.11-beta-*"
2020
}
21+
},
22+
"dotnet": {
23+
"dependencies": {
24+
"System.Console": "4.0.0-*"
25+
}
2126
}
2227
}
2328
}

src/Microsoft.Framework.Logging.Debug/project.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,13 @@
1313
},
1414
"dnx451": {
1515
},
16-
"dotnet": {
16+
"dnxcore50": {
1717
"dependencies": {
1818
"System.Collections": "4.0.11-beta-*",
1919
"System.Globalization": "4.0.11-beta-*",
2020
"System.Linq": "4.0.1-beta-*"
2121
}
22-
}
22+
},
23+
"dotnet": { }
2324
}
2425
}

src/Microsoft.Framework.Logging.TraceSource/project.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"System.Collections.Concurrent": ""
2121
}
2222
},
23-
"dotnet": {
23+
"dnxcore50": {
2424
"dependencies": {
2525
"System.Collections.Concurrent": "4.0.11-beta-*",
2626
"System.Collections": "4.0.11-beta-*",
@@ -29,6 +29,11 @@
2929
"System.Linq": "4.0.1-beta-*",
3030
"System.Threading": "4.0.11-beta-*"
3131
}
32+
},
33+
"dotnet": {
34+
"dependencies": {
35+
"System.Diagnostics.TraceSource": "4.0.0-*"
36+
}
3237
}
3338
}
3439
}

src/Microsoft.Framework.Logging/project.json

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"System.Collections.Concurrent": ""
2626
}
2727
},
28-
"dotnet": {
28+
"dnxcore50": {
2929
"dependencies": {
3030
"System.Collections.Concurrent": "4.0.11-beta-*",
3131
"System.Collections": "4.0.11-beta-*",
@@ -34,6 +34,18 @@
3434
"System.Linq": "4.0.1-beta-*",
3535
"System.Threading": "4.0.11-beta-*"
3636
}
37+
},
38+
"dotnet": {
39+
"dependencies": {
40+
"System.Collections": "4.0.10",
41+
"System.Diagnostics.Debug": "4.0.10",
42+
"System.Linq": "4.0.0",
43+
"System.Resources.ResourceManager": "4.0.0",
44+
"System.Runtime": "4.0.20",
45+
"System.Runtime.Extensions": "4.0.10",
46+
"System.Threading": "4.0.10",
47+
"System.Threading.Tasks": "4.0.10"
48+
}
3749
}
3850
}
3951
}

0 commit comments

Comments
 (0)