Skip to content

Commit d0ce906

Browse files
committed
version 2.0.2; update StackExchange.Redis version;
1 parent 2da2b0b commit d0ce906

File tree

5 files changed

+8
-14
lines changed

5 files changed

+8
-14
lines changed

Cuture.AspNetCore.ResponseCaching.sln

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,16 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Cuture.AspNetCore.ResponseC
1515
EndProject
1616
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{AC9C1A4A-DA93-439F-97EF-8D7ED1265F49}"
1717
ProjectSection(SolutionItems) = preProject
18+
.editorconfig = .editorconfig
1819
.gitignore = .gitignore
1920
Directory.Build.props = Directory.Build.props
21+
flow_of_execution.md = flow_of_execution.md
2022
package.props = package.props
2123
readme.md = readme.md
2224
EndProjectSection
2325
EndProject
2426
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ResponseCaching.Test", "test\ResponseCaching.Test\ResponseCaching.Test.csproj", "{7F23E27C-E1B9-4B5F-867F-60F114B356D8}"
2527
EndProject
26-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".github", ".github", "{68CBB8C4-828B-47F2-BCD9-7C749DD03FAC}"
27-
EndProject
28-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "workflows", "workflows", "{9505DE77-02FF-49E2-B7C2-F232B274084D}"
29-
ProjectSection(SolutionItems) = preProject
30-
.github\workflows\PublishNugetPackage.yml = .github\workflows\PublishNugetPackage.yml
31-
EndProjectSection
32-
EndProject
3328
Global
3429
GlobalSection(SolutionConfigurationPlatforms) = preSolution
3530
Debug|Any CPU = Debug|Any CPU
@@ -61,8 +56,6 @@ Global
6156
{A7A13E98-9212-4127-A077-FF416A741E5F} = {C96410C5-B98F-4E78-9DAE-B370014D5A8D}
6257
{113E05BE-72A6-48C8-823B-B889F182FA6D} = {2CC68065-2E19-4D81-A345-6DA0CCCDBE74}
6358
{7F23E27C-E1B9-4B5F-867F-60F114B356D8} = {C96410C5-B98F-4E78-9DAE-B370014D5A8D}
64-
{68CBB8C4-828B-47F2-BCD9-7C749DD03FAC} = {AC9C1A4A-DA93-439F-97EF-8D7ED1265F49}
65-
{9505DE77-02FF-49E2-B7C2-F232B274084D} = {68CBB8C4-828B-47F2-BCD9-7C749DD03FAC}
6659
EndGlobalSection
6760
GlobalSection(ExtensibilityGlobals) = postSolution
6861
SolutionGuid = {5089FB3B-A6BB-47CC-AA94-A109FBB440B2}

package.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
<!--Package Info-->
88
<PropertyGroup>
99
<VersionPrefix>2.0.2</VersionPrefix>
10-
<VersionSuffix>beta-05</VersionSuffix>
10+
<!--<VersionSuffix>beta-05</VersionSuffix>-->
1111

12-
<Description>基于`ResourceFilter`和`ActionFilter`实现的`asp.net core`服务端缓存组件</Description>
12+
<Description>The `asp.net core server-side caching component implemented based on `ResourceFilter` and `ActionFilter`; 基于`ResourceFilter`和`ActionFilter`实现的`asp.net core`服务端缓存组件</Description>
1313

1414
<PackageIdPrefix>Cuture.AspNetCore.ResponseCaching</PackageIdPrefix>
1515
<Authors>Stratos</Authors>

readme.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Cuture.AspNetCore.ResponseCaching
22
## 1. Intro
3+
The `asp.net core server-side caching component implemented based on `ResourceFilter` and `ActionFilter`;
4+
35
基于`ResourceFilter``ActionFilter`实现的`asp.net core`服务端缓存组件
46

57
## 2. 注意项

src/Cuture.AspNetCore.ResponseCaching.StackExchange.Redis/Cuture.AspNetCore.ResponseCaching.StackExchange.Redis.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<Import Project="../../package.props" />
33

44
<PropertyGroup>
@@ -12,7 +12,7 @@
1212
</PropertyGroup>
1313

1414
<ItemGroup>
15-
<PackageReference Include="StackExchange.Redis" Version="2.2.88" />
15+
<PackageReference Include="StackExchange.Redis" Version="2.6.111" />
1616
</ItemGroup>
1717
<ItemGroup>
1818
<ProjectReference Include="..\Cuture.AspNetCore.ResponseCaching\Cuture.AspNetCore.ResponseCaching.csproj" />

src/Cuture.AspNetCore.ResponseCaching/Cuture.AspNetCore.ResponseCaching.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
<PropertyGroup>
55
<EnableNETAnalyzers>true</EnableNETAnalyzers>
6-
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
76

87
<PackageReadmeFile>readme.md</PackageReadmeFile>
98
</PropertyGroup>

0 commit comments

Comments
 (0)