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

Commit 779c286

Browse files
authored
Merge pull request #231 from ServiceStack/netcore
Add Redis Sentinel tests to .NET Core
2 parents 2f7a5f5 + a627be5 commit 779c286

43 files changed

Lines changed: 2785 additions & 258 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

lib/netstandard1.1/ServiceStack.Client.deps.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
"targets": {
88
".NETStandard,Version=v1.1": {},
99
".NETStandard,Version=v1.1/": {
10-
"ServiceStack.Client/1.0.4.0": {
10+
"ServiceStack.Client/1.0.27.0": {
1111
"dependencies": {
1212
"System.Net.Requests": "4.0.11",
1313
"System.ServiceModel.Primitives": "4.1.0",
1414
"System.Xml.XmlSerializer": "4.0.11",
1515
"NETStandard.Library": "1.6.0",
16-
"ServiceStack.Interfaces": "1.0.4.0",
17-
"ServiceStack.Text": "1.0.4.0"
16+
"ServiceStack.Interfaces": "1.0.27.0",
17+
"ServiceStack.Text": "1.0.27.0"
1818
},
1919
"runtime": {
2020
"ServiceStack.Client.dll": {}
@@ -329,7 +329,7 @@
329329
"System.Xml.ReaderWriter": "4.0.11"
330330
}
331331
},
332-
"ServiceStack.Interfaces/1.0.4.0": {
332+
"ServiceStack.Interfaces/1.0.27.0": {
333333
"dependencies": {
334334
"System.Runtime": "4.1.0",
335335
"System.Runtime.Serialization.Primitives": "4.1.1",
@@ -339,7 +339,7 @@
339339
"ServiceStack.Interfaces.dll": {}
340340
}
341341
},
342-
"ServiceStack.Text/1.0.4.0": {
342+
"ServiceStack.Text/1.0.27.0": {
343343
"dependencies": {
344344
"NETStandard.Library": "1.6.0"
345345
},
@@ -350,7 +350,7 @@
350350
}
351351
},
352352
"libraries": {
353-
"ServiceStack.Client/1.0.4.0": {
353+
"ServiceStack.Client/1.0.27.0": {
354354
"type": "project",
355355
"serviceable": false,
356356
"sha512": ""
@@ -555,12 +555,12 @@
555555
"serviceable": true,
556556
"sha512": "sha512-FrazwwqfIXTfq23mfv4zH+BjqkSFNaNFBtjzu3I9NRmG8EELYyrv/fJnttCIwRMFRR/YKXF1hmsMmMEnl55HGw=="
557557
},
558-
"ServiceStack.Interfaces/1.0.4.0": {
558+
"ServiceStack.Interfaces/1.0.27.0": {
559559
"type": "project",
560560
"serviceable": false,
561561
"sha512": ""
562562
},
563-
"ServiceStack.Text/1.0.4.0": {
563+
"ServiceStack.Text/1.0.27.0": {
564564
"type": "project",
565565
"serviceable": false,
566566
"sha512": ""
2 KB
Binary file not shown.
512 Bytes
Binary file not shown.
512 Bytes
Binary file not shown.
-8 Bytes
Binary file not shown.

lib/netstandard1.1/ServiceStack.Text.deps.json

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"runtimeTarget": {
33
"name": ".NETStandard,Version=v1.1/",
4-
"signature": "7b7e0ae4297f8834538c98cdb8bf0e7073ea7069"
4+
"signature": "100cd9b2b7dc75b739002d2cebfe3dff4cee6c0d"
55
},
66
"compilationOptions": {},
77
"targets": {
@@ -15,7 +15,10 @@
1515
"System.Dynamic.Runtime": "4.0.11",
1616
"Microsoft.CSharp": "4.0.1",
1717
"System.Reflection.Emit": "4.0.1",
18+
"System.Reflection.Emit.LightWeight": "4.0.1",
19+
"System.Reflection.Extensions": "4.0.1",
1820
"System.Linq.Expressions": "4.1.0",
21+
"System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
1922
"NETStandard.Library": "1.6.0"
2023
},
2124
"runtime": {
@@ -202,6 +205,14 @@
202205
"System.Runtime": "4.1.0"
203206
}
204207
},
208+
"System.Reflection.Emit.LightWeight/4.0.1": {
209+
"dependencies": {
210+
"System.Reflection": "4.1.0",
211+
"System.Reflection.Emit.ILGeneration": "4.0.1",
212+
"System.Reflection.Primitives": "4.0.1",
213+
"System.Runtime": "4.1.0"
214+
}
215+
},
205216
"System.Reflection.Extensions/4.0.1": {
206217
"dependencies": {
207218
"Microsoft.NETCore.Platforms": "1.0.1",
@@ -448,6 +459,11 @@
448459
"serviceable": true,
449460
"sha512": "sha512-AVE4YgaaxkscGzC/nCZE10Ca5cB3p0tKUAwshy8svDqDtnEMD4R6I4hLNw1d3tXuXxKzp+HWsJUdc6gfj9Ofvg=="
450461
},
462+
"System.Reflection.Emit.LightWeight/4.0.1": {
463+
"type": "package",
464+
"serviceable": true,
465+
"sha512": "sha512-omS9h4+XfJlC6+GuARjz4YJYjOwdftLUfu1YfDxqBQD4oBbpsxgC/gtU1ZhsLMIwF7x0k4v188WHhNNNbfs55w=="
466+
},
451467
"System.Reflection.Extensions/4.0.1": {
452468
"type": "package",
453469
"serviceable": true,
3.5 KB
Binary file not shown.
1.23 KB
Binary file not shown.

lib/netstandard1.3/ServiceStack.Common.deps.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"targets": {
88
".NETStandard,Version=v1.3": {},
99
".NETStandard,Version=v1.3/": {
10-
"ServiceStack.Common/1.0.4.0": {
10+
"ServiceStack.Common/1.0.27.0": {
1111
"dependencies": {
1212
"System.Dynamic.Runtime": "4.0.11",
1313
"System.Data.Common": "4.1.0",
@@ -17,8 +17,8 @@
1717
"System.Net.Security": "4.0.0",
1818
"System.Reflection.TypeExtensions": "4.1.0",
1919
"NETStandard.Library": "1.6.0",
20-
"ServiceStack.Interfaces": "1.0.4.0",
21-
"ServiceStack.Text": "1.0.4.0"
20+
"ServiceStack.Interfaces": "1.0.27.0",
21+
"ServiceStack.Text": "1.0.27.0"
2222
},
2323
"runtime": {
2424
"ServiceStack.Common.dll": {}
@@ -758,7 +758,7 @@
758758
"lib/netstandard1.3/System.Xml.XDocument.dll": {}
759759
}
760760
},
761-
"ServiceStack.Interfaces/1.0.4.0": {
761+
"ServiceStack.Interfaces/1.0.27.0": {
762762
"dependencies": {
763763
"System.Runtime": "4.1.0",
764764
"System.Runtime.Serialization.Primitives": "4.1.1",
@@ -768,7 +768,7 @@
768768
"ServiceStack.Interfaces.dll": {}
769769
}
770770
},
771-
"ServiceStack.Text/1.0.4.0": {
771+
"ServiceStack.Text/1.0.27.0": {
772772
"dependencies": {
773773
"NETStandard.Library": "1.6.0"
774774
},
@@ -779,7 +779,7 @@
779779
}
780780
},
781781
"libraries": {
782-
"ServiceStack.Common/1.0.4.0": {
782+
"ServiceStack.Common/1.0.27.0": {
783783
"type": "project",
784784
"serviceable": false,
785785
"sha512": ""
@@ -1124,12 +1124,12 @@
11241124
"serviceable": true,
11251125
"sha512": "sha512-6/N/0n96EO8HMq240C9ooEAEPIS96E5BPbQYeZ6L7kxqpevIoUAfHuljhGMvfY2sWJ9bPtR7DdVLTFZ3bz60YA=="
11261126
},
1127-
"ServiceStack.Interfaces/1.0.4.0": {
1127+
"ServiceStack.Interfaces/1.0.27.0": {
11281128
"type": "project",
11291129
"serviceable": false,
11301130
"sha512": ""
11311131
},
1132-
"ServiceStack.Text/1.0.4.0": {
1132+
"ServiceStack.Text/1.0.27.0": {
11331133
"type": "project",
11341134
"serviceable": false,
11351135
"sha512": ""
0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)