Skip to content

Commit

Permalink
Renaming binary to NRedisStack (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
chayim authored Aug 17, 2022
1 parent 67cc309 commit 01f00c6
Show file tree
Hide file tree
Showing 56 changed files with 88 additions and 88 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nuget-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ jobs:
uses: brandedoutcast/publish-nuget@v2
with:
NUGET_KEY: ${{secrets.NUGET_API_KEY}}
PROJECT_FILE_PATH: src/NRedisStack.Core/NRedisStack.Core.csproj
PROJECT_FILE_PATH: src/NRedisStack/NRedisStack.csproj
PROJECT_NAME: NRedisStack
TAG_COMMIT: false
2 changes: 1 addition & 1 deletion NRedisStack.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30114.105
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NRedisStack.Core", "src\NRedisStack.Core\NRedisStack.Core.csproj", "{6F5E84A5-DFC1-4747-AF7D-97BDAFA9102D}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NRedisStack", "src\NRedisStack\NRedisStack.csproj", "{6F5E84A5-DFC1-4747-AF7D-97BDAFA9102D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NRedisStack.Tests", "tests\NRedisStack.Tests\NRedisStack.Tests.csproj", "{73B56C35-BC92-4ACD-B077-7D55CD67B95F}"
EndProject
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using StackExchange.Redis;

namespace NRedisStack.Core
namespace NRedisStack
{
public static class Auxiliary
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using NRedisStack.Core.Bloom.DataTypes;
using NRedisStack.Core.Literals;
using NRedisStack.Bloom.DataTypes;
using NRedisStack.Literals;
using StackExchange.Redis;
namespace NRedisStack.Core
namespace NRedisStack
{

public class BloomCommands
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace NRedisStack.Core.Bloom.DataTypes
namespace NRedisStack.Bloom.DataTypes
{
/// <summary>
/// This class represents the response for BF.INFO command.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace NRedisStack.Core.Literals
namespace NRedisStack.Literals
{
internal class BloomArgs
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace NRedisStack.Core.Literals
namespace NRedisStack.Literals
{
internal class BF
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using NRedisStack.Core.CountMinSketch.DataTypes;
using NRedisStack.Core.Literals;
using NRedisStack.CountMinSketch.DataTypes;
using NRedisStack.Literals;
using StackExchange.Redis;
namespace NRedisStack.Core
namespace NRedisStack
{

public class CmsCommands
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace NRedisStack.Core.CountMinSketch.DataTypes
namespace NRedisStack.CountMinSketch.DataTypes
{
/// <summary>
/// This class represents the response for CMS.INFO command.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace NRedisStack.Core.Literals
namespace NRedisStack.Literals
{
internal class CmsArgs
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace NRedisStack.Core.Literals
namespace NRedisStack.Literals
{
internal class CMS
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using NRedisStack.Core.CuckooFilter.DataTypes;
using NRedisStack.Core.Literals;
using NRedisStack.CuckooFilter.DataTypes;
using NRedisStack.Literals;
using StackExchange.Redis;
namespace NRedisStack.Core
namespace NRedisStack
{

public class CuckooCommands
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace NRedisStack.Core.CuckooFilter.DataTypes
namespace NRedisStack.CuckooFilter.DataTypes
{
/// <summary>
/// This class represents the response for CF.INFO command.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace NRedisStack.Core.Literals
namespace NRedisStack.Literals
{
internal class CuckooArgs
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace NRedisStack.Core.Literals
namespace NRedisStack.Literals
{
internal class CF
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using NRedisStack.Core.Literals;
using NRedisStack.Literals;
using StackExchange.Redis;
using System.Text.Json;
using System.Text.Json.Serialization;

namespace NRedisStack.Core;
namespace NRedisStack;

public class JsonCommands
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace NRedisStack.Core.Literals
namespace NRedisStack.Literals
{
internal class JsonArgs
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace NRedisStack.Core.Literals
namespace NRedisStack.Literals
{
internal class JSON
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using StackExchange.Redis;

namespace NRedisStack.Core.RedisStackCommands
namespace NRedisStack.RedisStackCommands
{
public static class ModulPrefixes
{
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
using System;
using System.Collections.Generic;
using NRedisStack.Core.Literals.Enums;
using NRedisStack.Core.DataTypes;
using NRedisStack.Core.Extensions;
using NRedisStack.Literals.Enums;
using NRedisStack.DataTypes;
using NRedisStack.Extensions;
using StackExchange.Redis;
using NRedisStack.Core.Bloom.DataTypes;
using NRedisStack.Core.CuckooFilter.DataTypes;
using NRedisStack.Core.CountMinSketch.DataTypes;
using NRedisStack.Core.TopK.DataTypes;
using NRedisStack.Core.Tdigest.DataTypes;
using NRedisStack.Bloom.DataTypes;
using NRedisStack.CuckooFilter.DataTypes;
using NRedisStack.CountMinSketch.DataTypes;
using NRedisStack.TopK.DataTypes;
using NRedisStack.Tdigest.DataTypes;

namespace NRedisStack.Core
namespace NRedisStack
{
public static class ResponseParser
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace NRedisStack.Core.Literals
namespace NRedisStack.Literals
{
internal class SearchArgs
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace NRedisStack.Core.Literals
namespace NRedisStack.Literals
{
internal class FT
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using NRedisStack.Core.Literals;
using NRedisStack.Literals;
using StackExchange.Redis;
namespace NRedisStack.Core
namespace NRedisStack
{
public class SearchCommands
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace NRedisStack.Core.Tdigest.DataTypes
namespace NRedisStack.Tdigest.DataTypes
{
/// <summary>
/// This class represents the response for TDIGEST.INFO command.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace NRedisStack.Core.Literals
namespace NRedisStack.Literals
{
internal class TdigestArgs
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace NRedisStack.Core.Literals
namespace NRedisStack.Literals
{
internal class TDIGEST
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using NRedisStack.Core.Tdigest.DataTypes;
using NRedisStack.Core.Literals;
using NRedisStack.Tdigest.DataTypes;
using NRedisStack.Literals;
using StackExchange.Redis;
namespace NRedisStack.Core
namespace NRedisStack
{

public class TdigestCommands
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using System;
using System.Text.Json;
using System.Collections.Generic;
using NRedisStack.Core.Literals.Enums;
using NRedisStack.Literals.Enums;


namespace NRedisStack.Core.DataTypes
namespace NRedisStack.DataTypes
{
/// <summary>
/// This class represents the response for TS.INFO command.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Collections.Generic;

namespace NRedisStack.Core.DataTypes
namespace NRedisStack.DataTypes
{
/// <summary>
/// A key-value pair class represetns metadata label of time-series.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using System.Collections.Generic;
using NRedisStack.Core.Literals.Enums;
using NRedisStack.Core.Extensions;
using NRedisStack.Literals.Enums;
using NRedisStack.Extensions;

namespace NRedisStack.Core.DataTypes
namespace NRedisStack.DataTypes
{
/// <summary>
/// A class that represents time-series aggregation rule.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Collections.Generic;

namespace NRedisStack.Core.DataTypes
namespace NRedisStack.DataTypes
{
/// <summary>
/// A class represents time-series timestamp-value pair
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;

namespace NRedisStack.Core.DataTypes
namespace NRedisStack.DataTypes
{
/// <summary>
/// A class represents timestamp.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using NRedisStack.Core.Literals.Enums;
using NRedisStack.Literals.Enums;

namespace NRedisStack.Core.Extensions
namespace NRedisStack.Extensions
{
internal static class AggregationExtensions
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using NRedisStack.Core.Literals.Enums;
using NRedisStack.Literals.Enums;

namespace NRedisStack.Core.Extensions
namespace NRedisStack.Extensions
{
internal static class DuplicatePolicyExtensions
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using NRedisStack.Core.Literals.Enums;
using NRedisStack.Literals.Enums;

namespace NRedisStack.Core.Extensions
namespace NRedisStack.Extensions
{
internal static class ReduceExtensions
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace NRedisStack.Core.Literals
namespace NRedisStack.Literals
{
internal class TimeSeriesArgs
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace NRedisStack.Core.Literals
namespace NRedisStack.Literals
{
internal class TS
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace NRedisStack.Core.Literals.Enums
namespace NRedisStack.Literals.Enums
{
/// <summary>
/// An aggregation type to be used with a time bucket.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace NRedisStack.Core.Literals.Enums
namespace NRedisStack.Literals.Enums
{
/// <summary>
/// Policy to handle duplicate samples.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace NRedisStack.Core.Literals.Enums
namespace NRedisStack.Literals.Enums
{
/// <summary>
/// TODO: Add description
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using System;
using System.Collections.Generic;
using NRedisStack.Core.Literals;
using NRedisStack.Core.Literals.Enums;
using NRedisStack.Core.DataTypes;
using NRedisStack.Core.Extensions;
using NRedisStack.Literals;
using NRedisStack.Literals.Enums;
using NRedisStack.DataTypes;
using NRedisStack.Extensions;

namespace NRedisStack.Core
namespace NRedisStack
{
public static class TimeSeriesAux
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using StackExchange.Redis;
using System;
using System.Collections.Generic;
using NRedisStack.Core.Literals;
using NRedisStack.Core.Literals.Enums;
using NRedisStack.Core.DataTypes;
namespace NRedisStack.Core
using NRedisStack.Literals;
using NRedisStack.Literals.Enums;
using NRedisStack.DataTypes;
namespace NRedisStack
{
public class TimeSeriesCommands
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace NRedisStack.Core.TopK.DataTypes
namespace NRedisStack.TopK.DataTypes
{
/// <summary>
/// This class represents the response for TOPK.INFO command.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace NRedisStack.Core.Literals
namespace NRedisStack.Literals
{
internal class TopKArgs
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace NRedisStack.Core.Literals
namespace NRedisStack.Literals
{
internal class TOPK
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using NRedisStack.Core.TopK.DataTypes;
using NRedisStack.Core.Literals;
using NRedisStack.TopK.DataTypes;
using NRedisStack.Literals;
using StackExchange.Redis;
namespace NRedisStack.Core
namespace NRedisStack
{

public class TopKCommands
Expand Down
2 changes: 1 addition & 1 deletion tests/NRedisStack.Tests/Bloom/BloomTests.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Xunit;
using StackExchange.Redis;
using NRedisStack.Core.RedisStackCommands;
using NRedisStack.RedisStackCommands;
using Moq;

namespace NRedisStack.Tests.Bloom;
Expand Down
Loading

0 comments on commit 01f00c6

Please sign in to comment.