Skip to content

Commit

Permalink
Update ICachingUniqueKeyGenerationService method
Browse files Browse the repository at this point in the history
Updated the `GenerateUniqueKey` method in `ICachingUniqueKeyGenerationService` to accept an additional `args` parameter for enhanced key generation flexibility. Also incremented the version in `Promact.Core.csproj` from `1.0.0.1` to `1.0.0.2` to reflect these changes and other project updates.
  • Loading branch information
chintans committed Jun 14, 2024
1 parent d57448e commit 1f06ac4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Caching/ICachingUniqueKeyGenerationService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
{
public interface ICachingUniqueKeyGenerationService
{
string GenerateUniqueKey(string key);
string GenerateUniqueKey(string key, string[] args);
}
}
6 changes: 3 additions & 3 deletions Promact.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
<PackageProjectUrl>https://github.com/Promact/Core</PackageProjectUrl>
<RepositoryUrl>https://github.com/Promact/Core</RepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<AssemblyVersion>1.0.0.1</AssemblyVersion>
<FileVersion>1.0.0.1</FileVersion>
<Version>1.0.0.1</Version>
<AssemblyVersion>1.0.0.2</AssemblyVersion>
<FileVersion>1.0.0.2</FileVersion>
<Version>1.0.0.2</Version>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 1f06ac4

Please sign in to comment.