Skip to content

Commit b3f3250

Browse files
committed
Update README.md
1 parent 924294f commit b3f3250

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,28 +15,28 @@ To install `EFCoreSecondLevelCacheInterceptor` as before, run the following comm
1515
[![Nuget](https://img.shields.io/nuget/v/EFCoreSecondLevelCacheInterceptor)](http://www.nuget.org/packages/EFCoreSecondLevelCacheInterceptor/)
1616

1717
```powershell
18-
PM> Install-Package EFCoreSecondLevelCacheInterceptor
18+
dotnet add package EFCoreSecondLevelCacheInterceptor
1919
```
2020

2121
But if you were using the built-in `In-Memory` cache provider, just install this new package:
2222

2323
[![Nuget](https://img.shields.io/nuget/v/EFCoreSecondLevelCacheInterceptor.MemoryCache)](http://www.nuget.org/packages/EFCoreSecondLevelCacheInterceptor.MemoryCache/)
2424
```powershell
25-
PM> Install-Package EFCoreSecondLevelCacheInterceptor.MemoryCache
25+
dotnet add package EFCoreSecondLevelCacheInterceptor.MemoryCache
2626
```
2727

2828
Or if you were using the `EasyCaching.Core provider`, install the new `EFCoreSecondLevelCacheInterceptor.EasyCaching.Core` package:
2929

3030
[![Nuget](https://img.shields.io/nuget/v/EFCoreSecondLevelCacheInterceptor.EasyCaching.Core)](http://www.nuget.org/packages/EFCoreSecondLevelCacheInterceptor.EasyCaching.Core/)
3131
```powershell
32-
PM> Install-Package EFCoreSecondLevelCacheInterceptor.EasyCaching.Core
32+
dotnet add package EFCoreSecondLevelCacheInterceptor.EasyCaching.Core
3333
```
3434

3535
Or if you were using the `CacheManager.Core provider`, install the new `EFCoreSecondLevelCacheInterceptor.CacheManager.Core` package:
3636

3737
[![Nuget](https://img.shields.io/nuget/v/EFCoreSecondLevelCacheInterceptor.CacheManager.Core)](http://www.nuget.org/packages/EFCoreSecondLevelCacheInterceptor.CacheManager.Core/)
3838
```powershell
39-
PM> Install-Package EFCoreSecondLevelCacheInterceptor.CacheManager.Core
39+
dotnet add package EFCoreSecondLevelCacheInterceptor.CacheManager.Core
4040
```
4141

4242
Also there are two new caching providers available in V5:
@@ -47,7 +47,7 @@ This provider uses the StackExchange.Redis as a cache provider and it's preconfi
4747

4848
[![Nuget](https://img.shields.io/nuget/v/EFCoreSecondLevelCacheInterceptor.StackExchange.Redis)](http://www.nuget.org/packages/EFCoreSecondLevelCacheInterceptor.StackExchange.Redis/)
4949
```powershell
50-
PM> Install-Package EFCoreSecondLevelCacheInterceptor.StackExchange.Redis
50+
dotnet add package EFCoreSecondLevelCacheInterceptor.StackExchange.Redis
5151
```
5252

5353
And then you need to register its required services:
@@ -75,7 +75,7 @@ This provider uses the [FusionCache](https://github.com/ZiggyCreatures/FusionCac
7575

7676
[![Nuget](https://img.shields.io/nuget/v/EFCoreSecondLevelCacheInterceptor.FusionCache)](http://www.nuget.org/packages/EFCoreSecondLevelCacheInterceptor.FusionCache/)
7777
```powershell
78-
PM> Install-Package EFCoreSecondLevelCacheInterceptor.FusionCache
78+
dotnet add package EFCoreSecondLevelCacheInterceptor.FusionCache
7979
```
8080

8181
And then this is how you can register its required services:

0 commit comments

Comments
 (0)