Skip to content

Commit af816b7

Browse files
authored
Merge pull request #14 from PandaTechAM/development
Updated prefix
2 parents 0e26383 + b1a57aa commit af816b7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/DistributedCache/DistributedCache.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<PackageReadmeFile>Readme.md</PackageReadmeFile>
99
<Authors>Pandatech</Authors>
1010
<Copyright>MIT</Copyright>
11-
<Version>4.0.4</Version>
11+
<Version>4.0.5</Version>
1212
<PackageId>Pandatech.DistributedCache</PackageId>
1313
<Title>Pandatech Distributed Cache</Title>
1414
<PackageTags>pandatech;cache;hybrid-cache;distributed-cahce;message-pack;rate-limiting;redis-lock;redis;fusion-cache</PackageTags>

src/DistributedCache/Extensions/StringExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public static List<string> PrefixWithAssemblyName(this IEnumerable<string> value
2121

2222
public static string PrefixWith(this string value, string prefix)
2323
{
24-
return $"{prefix}{value}";
24+
return $"{prefix}:{value}";
2525
}
2626
public static List<string> PrefixWith(this IEnumerable<string> values, string prefix)
2727
{

0 commit comments

Comments
 (0)