Skip to content

Commit

Permalink
v3.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
SeriaWei committed Sep 2, 2023
1 parent b49bde7 commit fcc6e68
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/EasyFrameWork/Cache/CacheManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public void Remove(string key)
_memoryCache.Remove(CreateCacheKey(key));
}

private static string CreateCacheKey(string key)
protected virtual string CreateCacheKey(string key)
{
return $"{typeof(Category).FullName}_{key}";
}
Expand Down
6 changes: 3 additions & 3 deletions src/ZKEACMS/ZKEACMS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
<TargetFramework>net7.0</TargetFramework>
<AssemblyName>ZKEACMS</AssemblyName>
<PackageId>ZKEACMS</PackageId>
<Version>3.9</Version>
<Version>3.9.1</Version>
<Copyright>深圳市纸壳软件有限公司 纸壳CMS</Copyright>
<PackageLicenseUrl>http://www.zkea.net/licenses</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/SeriaWei/ZKEACMS.Core</PackageProjectUrl>
<RepositoryUrl>https://github.com/SeriaWei/ZKEACMS.Core</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>CMS</PackageTags>
<Authors>深圳市纸壳软件有限公司 ZKEASOFT</Authors>
<AssemblyVersion>3.9</AssemblyVersion>
<FileVersion>3.9</FileVersion>
<AssemblyVersion>3.9.1</AssemblyVersion>
<FileVersion>3.9.1</FileVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>DEBUG;TRACE</DefineConstants>
Expand Down

0 comments on commit fcc6e68

Please sign in to comment.