This repository was archived by the owner on Dec 24, 2022. It is now read-only.
File tree 8 files changed +154
-2
lines changed
ServiceStack.Redis.NetCore/ServiceStack.Redis
8 files changed +154
-2
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,10 @@ _ReSharper*/
35
35
[Tt ]est [Rr ]esult *
36
36
App_Data /
37
37
.vs /
38
+ .vscode /
39
+ * .lock.json
40
+ * .nuget.props
41
+ * .nuget.targets
38
42
39
43
NuGet /
40
44
NuGet.Signed /
Original file line number Diff line number Diff line change
1
+ {
2
+ "configurations" : {
3
+ "Debug" : {
4
+ "buildOptions" : {
5
+ "define" : [
6
+ " DEBUG" ,
7
+ " TRACE"
8
+ ]
9
+ }
10
+ },
11
+ "Release" : {
12
+ "buildOptions" : {
13
+ "define" : [
14
+ " TRACE"
15
+ ],
16
+ "optimize" : true
17
+ }
18
+ }
19
+ },
20
+ "dependencies" : {
21
+ "NETStandard.Library" : " 1.6.0" ,
22
+ "ServiceStack.Interfaces" : " 1.0.*" ,
23
+ "ServiceStack.Text" : " 1.0.*"
24
+ },
25
+ "frameworks" : {
26
+ "netstandard1.3" : {
27
+ "buildOptions" : {
28
+ "define" : [
29
+ " NETSTANDARD1_1"
30
+ ]
31
+ },
32
+ "dependencies" : {},
33
+ "bin" : {
34
+ "assembly" : " ../../lib/netcore/ServiceStack.Common.dll" ,
35
+ "pdb" : " ../../lib/netcore/ServiceStack.Common.pdb"
36
+ }
37
+ }
38
+ },
39
+ "version" : " 1.0.0"
40
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "configurations" : {
3
+ "Debug" : {
4
+ "buildOptions" : {
5
+ "define" : [
6
+ " DEBUG" ,
7
+ " TRACE"
8
+ ]
9
+ }
10
+ },
11
+ "Release" : {
12
+ "buildOptions" : {
13
+ "define" : [
14
+ " TRACE"
15
+ ],
16
+ "optimize" : true
17
+ }
18
+ }
19
+ },
20
+ "dependencies" : {
21
+ "NETStandard.Library" : " 1.6.0"
22
+ },
23
+ "frameworks" : {
24
+ "netstandard1.1" : {
25
+ "dependencies" : {},
26
+ "bin" : {
27
+ "assembly" : " ../../lib/netcore/ServiceStack.Interfaces.dll" ,
28
+ "pdb" : " ../../lib/netcore/ServiceStack.Interfaces.pdb"
29
+ }
30
+ }
31
+ },
32
+ "version" : " 1.0.0"
33
+ }
Original file line number Diff line number Diff line change 19
19
"ServiceStack.Common" : " 1.0.*"
20
20
},
21
21
"compile" : [" ../../ServiceStack.Redis/**/*.cs" ],
22
- "exclude" : [" ../../ServiceStack.Redis/RedisPipeline.cs" ],
23
22
"frameworks" : {
24
23
"netstandard1.3" : {
25
24
"dependencies" : {
Original file line number Diff line number Diff line change
1
+ #if ! NETSTANDARD1_3
1
2
using System ;
2
3
using System . Collections . Generic ;
3
4
using System . Linq ;
@@ -42,4 +43,5 @@ public void Flush()
42
43
client . FlushSendBuffer ( ) ;
43
44
}
44
45
}
45
- }
46
+ }
47
+ #endif
Original file line number Diff line number Diff line change
1
+ {
2
+ "frameworks" : {
3
+ "net45" : {}
4
+ },
5
+ "runtimes" : {
6
+ "win" : {}
7
+ }
8
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "configurations" : {
3
+ "Debug" : {
4
+ "buildOptions" : {
5
+ "define" : [" DEBUG" , " TRACE" ]
6
+ }
7
+ },
8
+ "Release" : {
9
+ "buildOptions" : {
10
+ "define" : [" TRACE" ],
11
+ "optimize" : true
12
+ }
13
+ }
14
+ },
15
+ "dependencies" : {
16
+ "NETStandard.Library" : " 1.6.0" ,
17
+ "ServiceStack.Interfaces" : " 1.0.*" ,
18
+ "ServiceStack.Text" : " 1.0.*" ,
19
+ "ServiceStack.Common" : " 1.0.*"
20
+ },
21
+ "frameworks" : {
22
+ "netstandard1.3" : {
23
+ "dependencies" : {
24
+ "System.Net.Security" : " 4.0.0" ,
25
+ "System.Collections.Specialized" : " 4.0.1" ,
26
+ "System.Collections.NonGeneric" : " 4.0.1" ,
27
+ "System.Net.NameResolution" : " 4.0.0"
28
+ }
29
+ }
30
+
31
+ },
32
+ "version" : " 1.0.0"
33
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "configurations" : {
3
+ "Debug" : {
4
+ "buildOptions" : {
5
+ "define" : [
6
+ " DEBUG" ,
7
+ " TRACE"
8
+ ]
9
+ }
10
+ },
11
+ "Release" : {
12
+ "buildOptions" : {
13
+ "define" : [
14
+ " TRACE"
15
+ ],
16
+ "optimize" : true
17
+ }
18
+ }
19
+ },
20
+ "dependencies" : {
21
+ "NETStandard.Library" : " 1.6.0"
22
+ },
23
+ "frameworks" : {
24
+ "netstandard1.1" : {
25
+ "dependencies" : {},
26
+ "bin" : {
27
+ "assembly" : " ../../lib/netcore/ServiceStack.Text.dll" ,
28
+ "pdb" : " ../../lib/netcore/ServiceStack.Text.pdb"
29
+ }
30
+ }
31
+ },
32
+ "version" : " 1.0.0"
33
+ }
You can’t perform that action at this time.
0 commit comments