Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
StackExchange.Redis
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tsai
StackExchange.Redis
Commits
d694d922
Commit
d694d922
authored
Oct 23, 2015
by
Jeremy Meng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use nunitlite to run the tests.
parent
64e597b9
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
5 deletions
+24
-5
Program.cs
...edis.Tests_dnxcore50/StackExchange.Redis.Tests/Program.cs
+14
-0
project.json
...is.Tests_dnxcore50/StackExchange.Redis.Tests/project.json
+9
-4
ConfigurationOptions.cs
...xchange.Redis/StackExchange/Redis/ConfigurationOptions.cs
+1
-1
No files found.
StackExchange.Redis.Tests_dnxcore50/StackExchange.Redis.Tests/Program.cs
0 → 100644
View file @
d694d922
using
System
;
using
System.Reflection
;
using
NUnitLite
;
namespace
StackExchange.Redis.Tests
{
public
class
Program
{
public
int
Main
(
string
[]
args
)
{
return
new
AutoRun
().
Execute
(
typeof
(
AsyncTests
).
GetTypeInfo
().
Assembly
,
Console
.
Out
,
Console
.
In
,
args
);
}
}
}
\ No newline at end of file
StackExchange.Redis.Tests_dnxcore50/StackExchange.Redis.Tests/project.json
View file @
d694d922
...
...
@@ -14,11 +14,14 @@
"StackExchange.Redis"
:
"1.1.0-*"
},
"commands"
:
{
"run"
:
"StackExchange.Redis.Tests"
},
"frameworks"
:
{
"dnxcore50"
:
{
"compilationOptions"
:
{
"define"
:
[
"NETCORE"
],
"allowUnsafe"
:
true
,
"warningsAsErrors"
:
false
},
"dependencies"
:
{
...
...
@@ -26,8 +29,10 @@
"System.Linq.Expressions"
:
"4.0.11-beta-*"
,
"System.Reflection.Extensions"
:
"4.0.1-beta-*"
,
"System.Threading.Tasks.Parallel"
:
"4.0.1-beta-*"
,
"moq"
:
"4.3.0.0"
,
"nunit"
:
"3.0.0-beta-5"
"Microsoft.CSharp"
:
"4.0.0-beta-*"
,
"moq.netcore"
:
"4.3.0.0"
,
"nunit"
:
"3.0.1-beta-5"
,
"nunitlite"
:
"3.0.1-beta-5"
}
}
}
...
...
StackExchange.Redis/StackExchange/Redis/ConfigurationOptions.cs
View file @
d694d922
...
...
@@ -255,7 +255,7 @@ public CommandMap CommandMap
/// <summary>
/// Specifies the time in milliseconds that the system should allow for synchronous operations (defaults to 1 second)
/// </summary>
public
int
SyncTimeout
{
get
{
return
syncTimeout
.
GetValueOrDefault
(
1
000
);
}
set
{
syncTimeout
=
value
;
}
}
public
int
SyncTimeout
{
get
{
return
syncTimeout
.
GetValueOrDefault
(
20
000
);
}
set
{
syncTimeout
=
value
;
}
}
/// <summary>
/// Specifies the time in milliseconds that the system should allow for responses before concluding that the socket is unhealthy
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment