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
fe8544b2
Commit
fe8544b2
authored
Nov 24, 2015
by
Jeremy Meng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Attempt to fix the whitespace/encoding issue with Emacs.
parent
790bb080
Changes
13
Show whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
3134 additions
and
3138 deletions
+3134
-3138
.gitignore
.gitignore
+21
-21
BasicOps.cs
StackExchange.Redis.Tests/BasicOps.cs
+709
-709
WithKeyPrefixTests.cs
StackExchange.Redis.Tests/WithKeyPrefixTests.cs
+131
-133
WrapperBaseTests.cs
StackExchange.Redis.Tests/WrapperBaseTests.cs
+1
-2
StackExchange.Redis.StrongName.csproj
StackExchange.Redis/StackExchange.Redis.StrongName.csproj
+204
-204
CommandMap.cs
StackExchange.Redis/StackExchange/Redis/CommandMap.cs
+222
-222
ExtensionMethods.cs
StackExchange.Redis/StackExchange/Redis/ExtensionMethods.cs
+126
-126
HashEntry.cs
StackExchange.Redis/StackExchange/Redis/HashEntry.cs
+99
-99
RedisResult.cs
StackExchange.Redis/StackExchange/Redis/RedisResult.cs
+390
-391
ServerEndPoint.cs
StackExchange.Redis/StackExchange/Redis/ServerEndPoint.cs
+695
-695
SortedSetEntry.cs
StackExchange.Redis/StackExchange/Redis/SortedSetEntry.cs
+127
-127
StackExchange.Redis_Net40.StrongName.csproj
...e.Redis_Net40/StackExchange.Redis_Net40.StrongName.csproj
+206
-206
StackExchange.Redis_Net40.csproj
StackExchange.Redis_Net40/StackExchange.Redis_Net40.csproj
+203
-203
No files found.
.gitignore
View file @
fe8544b2
StackExchange.Redis.Tests/BasicOps.cs
View file @
fe8544b2
StackExchange.Redis.Tests/WithKeyPrefixTests.cs
View file @
fe8544b2
...
@@ -39,7 +39,6 @@ public void NullPrefixIsError_Bytes()
...
@@ -39,7 +39,6 @@ public void NullPrefixIsError_Bytes()
}
}
});
});
}
}
[
Test
]
[
Test
]
public
void
NullPrefixIsError_String
()
public
void
NullPrefixIsError_String
()
{
{
...
@@ -63,7 +62,6 @@ public void NullDatabaseIsError(string prefix)
...
@@ -63,7 +62,6 @@ public void NullDatabaseIsError(string prefix)
var
prefixed
=
raw
.
WithKeyPrefix
(
prefix
);
var
prefixed
=
raw
.
WithKeyPrefix
(
prefix
);
});
});
}
}
[
Test
]
[
Test
]
public
void
BasicSmokeTest
()
public
void
BasicSmokeTest
()
{
{
...
...
StackExchange.Redis.Tests/WrapperBaseTests.cs
View file @
fe8544b2
...
@@ -16,7 +16,6 @@ public sealed class WrapperBaseTests
...
@@ -16,7 +16,6 @@ public sealed class WrapperBaseTests
private
Mock
<
IDatabaseAsync
>
mock
;
private
Mock
<
IDatabaseAsync
>
mock
;
private
WrapperBase
<
IDatabaseAsync
>
wrapper
;
private
WrapperBase
<
IDatabaseAsync
>
wrapper
;
//[TestFixtureSetUp]
[
OneTimeSetUp
]
[
OneTimeSetUp
]
public
void
Initialize
()
public
void
Initialize
()
{
{
...
...
StackExchange.Redis/StackExchange.Redis.StrongName.csproj
View file @
fe8544b2
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project
ToolsVersion=
"12.0"
DefaultTargets=
"Build"
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<Project
ToolsVersion=
"12.0"
DefaultTargets=
"Build"
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<Import
Project=
"$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props"
Condition=
"Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')"
/>
<Import
Project=
"$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props"
Condition=
"Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')"
/>
<PropertyGroup>
<PropertyGroup>
...
...
StackExchange.Redis/StackExchange/Redis/CommandMap.cs
View file @
fe8544b2
StackExchange.Redis/StackExchange/Redis/ExtensionMethods.cs
View file @
fe8544b2
StackExchange.Redis/StackExchange/Redis/HashEntry.cs
View file @
fe8544b2
StackExchange.Redis/StackExchange/Redis/RedisResult.cs
View file @
fe8544b2
using
System
;
using
System
;
using
System.Linq
;
namespace
StackExchange.Redis
namespace
StackExchange.Redis
{
{
...
...
StackExchange.Redis/StackExchange/Redis/ServerEndPoint.cs
View file @
fe8544b2
StackExchange.Redis/StackExchange/Redis/SortedSetEntry.cs
View file @
fe8544b2
StackExchange.Redis_Net40/StackExchange.Redis_Net40.StrongName.csproj
View file @
fe8544b2
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project
ToolsVersion=
"12.0"
DefaultTargets=
"Build"
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<Project
ToolsVersion=
"12.0"
DefaultTargets=
"Build"
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<Import
Project=
"$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props"
Condition=
"Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')"
/>
<Import
Project=
"$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props"
Condition=
"Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')"
/>
<PropertyGroup>
<PropertyGroup>
...
...
StackExchange.Redis_Net40/StackExchange.Redis_Net40.csproj
View file @
fe8544b2
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project
ToolsVersion=
"12.0"
DefaultTargets=
"Build"
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<Project
ToolsVersion=
"12.0"
DefaultTargets=
"Build"
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<Import
Project=
"$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props"
Condition=
"Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')"
/>
<Import
Project=
"$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props"
Condition=
"Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')"
/>
<PropertyGroup>
<PropertyGroup>
...
...
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