Skip to content

Commit

Permalink
A few tweaks here before I create the 1.0.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
tombatron committed Sep 28, 2022
1 parent b32e4d6 commit bd8f836
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion RediSearchClient.IntegrationTests/GetIndexInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public async Task CanReturnAttributesAsync()
private void CreateTestInfoData()
{
var index = RediSearchIndex
.On(RediSearchStructure.HASH)
.OnHash()
.ForKeysWithPrefix($"{_recordPrefix}:")
.WithSchema(x => x.Text("first_name"))
.Build();
Expand Down
2 changes: 1 addition & 1 deletion RediSearchClient/DatabaseExtensionsAsync.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public static async Task<AggregateResult> AggregateAsync(this IDatabase db, Redi
{
var redisResult = await db.ExecuteAsync(RediSearchCommand.AGGREGATE, aggregateDefinition.Fields);

return AggregateResult.From(redisResult); ;
return AggregateResult.From(redisResult);
}

/// <summary>
Expand Down
10 changes: 5 additions & 5 deletions RediSearchClient/RediSearchClient.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net472;net461</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Tom Hanks</Authors>
<Authors>Tom Hanks (tombatron), Daniel Leach (leachdaniel)</Authors>
<Company />
<AssemblyVersion>0.12.0.0</AssemblyVersion>
<FileVersion>0.12.0.0</FileVersion>
<Version>0.12.0</Version>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
<Version>1.0.0</Version>
<Description>A series of extension methods for use with StackExchange.Redis 2.x and the RediSearch 2.x Redis module.</Description>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<RepositoryUrl>https://github.com/tombatron/RediSearchClient</RepositoryUrl>
<PackageProjectUrl>https://github.com/tombatron/RediSearchClient</PackageProjectUrl>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageVersion>0.14.0</PackageVersion>
<PackageVersion>1.0.0</PackageVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand Down

0 comments on commit bd8f836

Please sign in to comment.