Skip to content

Commit ee85989

Browse files
Merge pull request #214 from rabbitmq/rabbitmq-dotnet-client-213
Update to dotnetcore 1.0 RTM
2 parents fa39e3a + 64e193f commit ee85989

File tree

3 files changed

+22
-40
lines changed

3 files changed

+22
-40
lines changed

projects/client/RabbitMQ.Client/project.json

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -30,29 +30,16 @@
3030
}
3131
},
3232
*/
33-
//"netcore45": {},
3433
"netstandard1.5": {
3534
"buildOptions": {
3635
"define": [ "CORECLR" ]
3736
},
3837
"imports": ["dnxcore50", "portable-net45+win81"],
3938
"dependencies": {
40-
"NETStandard.Library": "1.5.0-rc2-24027",
41-
"System.Net.Security": "4.0.0-rc2-24027",
42-
"System.Net.NameResolution": "4.0.0-rc2-24027",
43-
"System.Threading.Thread": "4.0.0-rc2-24027"
44-
/*
45-
"System.Runtime": "4.1.0-rc2-24027",
46-
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-24027",
47-
"System.ComponentModel.EventBasedAsync": "4.0.11-rc2-24027",
48-
"System.Xml.ReaderWriter": "4.0.11-rc2-24027",
49-
"System.Xml.XDocument": "4.0.11-rc2-24027",
50-
"System.Xml.XmlDocument": "4.0.1-rc2-24027",
51-
"System.Xml.XmlSerializer": "4.0.11-rc2-24027",
52-
"System.Net.Sockets": "4.1.0-rc2-24027",
53-
"System.Threading": "4.0.11-rc2-24027",
54-
"System.Threading.Tasks": "4.0.11-rc2-24027"
55-
*/
39+
"NETStandard.Library": "1.6.0",
40+
"System.Net.Security": "4.0.0",
41+
"System.Net.NameResolution": "4.0.0",
42+
"System.Threading.Thread": "4.0.0"
5643
}
5744
}
5845
}

projects/client/Unit.Runner/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
"dependencies": {
2020
"Microsoft.NETCore.App": {
2121
"type": "platform",
22-
"version": "1.0.0-rc2-3002702"
22+
"version": "1.0.0"
2323
},
24-
"System.Runtime": "4.1.0-rc2-24027",
24+
"System.Runtime": "4.1.0",
2525
"NUnit": "*",
2626
"NUnitLite": "*",
2727
"Unit": "*"

projects/client/Unit/project.json

Lines changed: 16 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -10,38 +10,33 @@
1010
"frameworks": {
1111
"net451": {
1212
"dependencies": {
13-
"NUnit": "3.2.1",
13+
"NUnit": "3.4.0",
1414
"RabbitMQ.Client": "*",
15-
"dotnet-test-nunit": "3.4.0-alpha-1"
15+
"dotnet-test-nunit": "3.4.0-beta-1"
1616
}
1717
},
1818
"netcoreapp1.0": {
19-
"imports": "dnxcore50",
19+
"imports": [
20+
"netcoreapp1.0",
21+
"portable-net45+win8"
22+
],
2023
"buildOptions": {
2124
"define": [ "CORECLR" ]
2225
},
2326
"dependencies": {
2427
"Microsoft.NETCore.App": {
2528
"type": "platform",
26-
"version": "1.0.0-rc2-3002702"
29+
"version": "1.0.0"
2730
},
28-
"System.Runtime": "4.1.0-rc2-24027",
29-
"System.Collections": "4.0.11-rc2-24027",
30-
"System.Collections.NonGeneric": "4.0.1-rc2-24027",
31-
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-24027",
32-
"System.ComponentModel.EventBasedAsync": "4.0.11-rc2-24027",
33-
"System.Xml.ReaderWriter": "4.0.11-rc2-24027",
34-
"System.Xml.XDocument": "4.0.11-rc2-24027",
35-
"System.Xml.XmlDocument": "4.0.1-rc2-24027",
36-
"System.Xml.XmlSerializer": "4.0.11-rc2-24027",
37-
"System.Net.Security": "4.0.0-rc2-24027",
38-
"System.Net.Sockets": "4.1.0-rc2-24027",
39-
"System.Threading": "4.0.11-rc2-24027",
40-
"System.Threading.Tasks": "4.0.11-rc2-24027",
41-
"NUnit": "3.2.1",
42-
"RabbitMQ.Client": "*",
43-
"Microsoft.DiaSymReader": "1.0.8-rc2-60325",
44-
"dotnet-test-nunit": "3.4.0-alpha-1"
31+
"RabbitMQ.Client": {
32+
"target": "project"
33+
},
34+
"System.Collections.NonGeneric": "4.0.1",
35+
"System.Net.Security": "4.0.0",
36+
"System.Net.NameResolution": "4.0.0",
37+
"System.Threading.Thread": "4.0.0",
38+
"NUnit": "3.4.0",
39+
"dotnet-test-nunit": "3.4.0-beta-1"
4540
}
4641
}
4742
}

0 commit comments

Comments
 (0)