diff --git a/README.md b/README.md index 3b96c5f..0de9c82 100644 --- a/README.md +++ b/README.md @@ -128,7 +128,7 @@ namespace WebApi1 #### Disabling Cache Globally -If you want to disable the ZeusCaching in application level call `builder.DisableGlobally()` in the `startup.cs` file or set environment variable `Zeus_CACHING_DISABLED` to `true` and restart the application. +If you want to disable the ZeusCaching in application level call `builder.DisableGlobally()` in the `startup.cs` file or set environment variable `ZEUS_CACHING_DISABLED` to `true` and restart the application. #### Samples diff --git a/src/ZeusCaching/Services/ZeusCachingService.cs b/src/ZeusCaching/Services/ZeusCachingService.cs index acadd82..c0a3faa 100644 --- a/src/ZeusCaching/Services/ZeusCachingService.cs +++ b/src/ZeusCaching/Services/ZeusCachingService.cs @@ -7,7 +7,7 @@ namespace ZeusCaching.Services { public class ZeusCachingService : IZeusCachingService { - const string GlobalDisableVariableName = "Zeus_CACHING_DISABLED"; + const string GlobalDisableVariableName = "ZEUS_CACHING_DISABLED"; const string ZeusCachingHeaderName = "X-ZeusCaching"; private static Lazy IsDisabledGlobally = new Lazy(InternalIsDisabledGlobally); diff --git a/src/ZeusCaching/ZeusCaching.csproj b/src/ZeusCaching/ZeusCaching.csproj index 9bfb34e..985c84f 100644 --- a/src/ZeusCaching/ZeusCaching.csproj +++ b/src/ZeusCaching/ZeusCaching.csproj @@ -1,8 +1,8 @@ - + netcoreapp3.1 - 0.0.1 + 0.0.2 @@ -11,7 +11,8 @@ true jalalx - An ASP.NET Core Action Filter that acts as an action level cache. + Zeus Caching helps using existing dotnet caching extensions easily in your ASP.NET Core Web API applications by simply putting a `[ZeusCache]` attribute on controller action methods. +This package is built from the source file in https://github.com/Jalalx/ZeusCaching/commit/$(GITHUB_SHA) https://github.com/Jalalx/ZeusCaching https://github.com/Jalalx/ZeusCaching git