Skip to content

Commit 01f00c6

Browse files
authored
Renaming binary to NRedisStack (#16)
1 parent 67cc309 commit 01f00c6

Some content is hidden

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

56 files changed

+88
-88
lines changed

.github/workflows/nuget-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ jobs:
2020
uses: brandedoutcast/publish-nuget@v2
2121
with:
2222
NUGET_KEY: ${{secrets.NUGET_API_KEY}}
23-
PROJECT_FILE_PATH: src/NRedisStack.Core/NRedisStack.Core.csproj
23+
PROJECT_FILE_PATH: src/NRedisStack/NRedisStack.csproj
2424
PROJECT_NAME: NRedisStack
2525
TAG_COMMIT: false

NRedisStack.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 16
44
VisualStudioVersion = 16.0.30114.105
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NRedisStack.Core", "src\NRedisStack.Core\NRedisStack.Core.csproj", "{6F5E84A5-DFC1-4747-AF7D-97BDAFA9102D}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NRedisStack", "src\NRedisStack\NRedisStack.csproj", "{6F5E84A5-DFC1-4747-AF7D-97BDAFA9102D}"
77
EndProject
88
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NRedisStack.Tests", "tests\NRedisStack.Tests\NRedisStack.Tests.csproj", "{73B56C35-BC92-4ACD-B077-7D55CD67B95F}"
99
EndProject

src/NRedisStack.Core/Auxiliary.cs renamed to src/NRedisStack/Auxiliary.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using StackExchange.Redis;
22

3-
namespace NRedisStack.Core
3+
namespace NRedisStack
44
{
55
public static class Auxiliary
66
{

src/NRedisStack.Core/Bloom/BloomCommands.cs renamed to src/NRedisStack/Bloom/BloomCommands.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
using NRedisStack.Core.Bloom.DataTypes;
2-
using NRedisStack.Core.Literals;
1+
using NRedisStack.Bloom.DataTypes;
2+
using NRedisStack.Literals;
33
using StackExchange.Redis;
4-
namespace NRedisStack.Core
4+
namespace NRedisStack
55
{
66

77
public class BloomCommands

src/NRedisStack.Core/Bloom/DataTypes/BloomInformation.cs renamed to src/NRedisStack/Bloom/DataTypes/BloomInformation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace NRedisStack.Core.Bloom.DataTypes
1+
namespace NRedisStack.Bloom.DataTypes
22
{
33
/// <summary>
44
/// This class represents the response for BF.INFO command.

src/NRedisStack.Core/Bloom/Literals/CommandArgs.cs renamed to src/NRedisStack/Bloom/Literals/CommandArgs.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace NRedisStack.Core.Literals
1+
namespace NRedisStack.Literals
22
{
33
internal class BloomArgs
44
{

src/NRedisStack.Core/Bloom/Literals/Commands.cs renamed to src/NRedisStack/Bloom/Literals/Commands.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace NRedisStack.Core.Literals
1+
namespace NRedisStack.Literals
22
{
33
internal class BF
44
{

src/NRedisStack.Core/CountMinSketch/CmsCommands.cs renamed to src/NRedisStack/CountMinSketch/CmsCommands.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
using NRedisStack.Core.CountMinSketch.DataTypes;
2-
using NRedisStack.Core.Literals;
1+
using NRedisStack.CountMinSketch.DataTypes;
2+
using NRedisStack.Literals;
33
using StackExchange.Redis;
4-
namespace NRedisStack.Core
4+
namespace NRedisStack
55
{
66

77
public class CmsCommands

src/NRedisStack.Core/CountMinSketch/DataTypes/CmsInformation.cs renamed to src/NRedisStack/CountMinSketch/DataTypes/CmsInformation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace NRedisStack.Core.CountMinSketch.DataTypes
1+
namespace NRedisStack.CountMinSketch.DataTypes
22
{
33
/// <summary>
44
/// This class represents the response for CMS.INFO command.

src/NRedisStack.Core/CountMinSketch/Literals/CommandArgs.cs renamed to src/NRedisStack/CountMinSketch/Literals/CommandArgs.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace NRedisStack.Core.Literals
1+
namespace NRedisStack.Literals
22
{
33
internal class CmsArgs
44
{

0 commit comments

Comments
 (0)