Skip to content

Commit df20df0

Browse files
committed
fix project metadata
1 parent c4ff269 commit df20df0

12 files changed

Lines changed: 15 additions & 25 deletions

File tree

Cacheable.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{FC7F
1919
EndProject
2020
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "MediatR", "MediatR", "{A285DE98-56C9-4713-A033-EDC8BC65F110}"
2121
EndProject
22-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Cacheable.Abstractions", "src\Cacheable.Abstractions\Cacheable.Abstractions.csproj", "{F665B4DB-4416-41CE-AF82-F05CFC709067}"
22+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Cacheable.Microsoft.Extensions.Caching.Abstractions", "src\Cacheable.Microsoft.Extensions.Caching.Abstractions\Cacheable.Microsoft.Extensions.Caching.Abstractions.csproj", "{F665B4DB-4416-41CE-AF82-F05CFC709067}"
2323
EndProject
2424
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Cacheable.MediatR", "src\Cacheable.MediatR\Cacheable.MediatR.csproj", "{126F7A77-6F66-4235-A8A4-76B416ED712E}"
2525
EndProject

README.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This command will download and install Cacheable. Let me know if you have questi
2020

2121
## Using Cacheable
2222

23-
Cacheable requires MediatR and your IoC container of choice. The decorator pattern is used to wrap the `IRequestHandler` and `IAsyncRequestHandler` classes with
23+
Cacheable requires MediatR and your IoC container of choice. The decorator pattern is used to wrap the `IRequestHandler` and `IAsyncRequestHandler` classes with Cacheable implementations that will handle the caching.
2424

2525
### With StructureMap
2626

@@ -30,10 +30,4 @@ For(typeof(IRequestHandler<,>)).DecorateAllWith(typeof(MemoryCacheRequestHandler
3030

3131
```
3232
For(typeof(IAsyncRequestHandler<,>)).DecorateAllWith(typeof(MemoryCacheAsyncRequestHandler<,>));
33-
```
34-
35-
### With Microsoft.Extensions.DependencyInjection and Sructor
36-
--TBD
37-
38-
### With Autofac
39-
--TBD
33+
```

samples/MediatR/WebApiDotNetCore20/WebApiDotNetCore20.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
</ItemGroup>
2323

2424
<ItemGroup>
25-
<ProjectReference Include="..\..\..\src\Cacheable.Abstractions\Cacheable.Abstractions.csproj" />
25+
<ProjectReference Include="..\..\..\src\Cacheable.Microsoft.Extensions.Caching.Abstractions\Cacheable.Microsoft.Extensions.Caching.Abstractions.csproj" />
2626
<ProjectReference Include="..\..\..\src\Cacheable.MediatR\Cacheable.MediatR.csproj" />
2727
<ProjectReference Include="..\..\..\src\Cacheable\Cacheable.csproj" />
2828
</ItemGroup>

src/Cacheable.MediatR/Cacheable.MediatR.csproj

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,21 @@
77
<RepositoryType>git</RepositoryType>
88
<PackageProjectUrl>https://github.com/neekgreen/cacheable</PackageProjectUrl>
99
<Copyright>Copyright Nicholas Myers</Copyright>
10-
<Description>A set of extensions to provide caching support on MediatR based request handlers.</Description>
10+
<Description>A set of extensions to provide caching support to MediatR request handlers.</Description>
1111
<Version>0.2.0</Version>
1212
<Company>Nicholas Myers</Company>
1313
<Authors>Nicholas Myers</Authors>
14+
<PackageId>Cacheable.MediatR</PackageId>
15+
<Product></Product>
16+
<PackageTags>caching;request;mediators;handlers;command;query;decorators</PackageTags>
1417
</PropertyGroup>
1518

1619
<ItemGroup>
1720
<PackageReference Include="MediatR" Version="3.0.1" />
1821
</ItemGroup>
1922

2023
<ItemGroup>
21-
<ProjectReference Include="..\Cacheable.Abstractions\Cacheable.Abstractions.csproj" />
24+
<ProjectReference Include="..\Cacheable.Microsoft.Extensions.Caching.Abstractions\Cacheable.Microsoft.Extensions.Caching.Abstractions.csproj" />
2225
<ProjectReference Include="..\Cacheable\Cacheable.csproj" />
2326
</ItemGroup>
2427

src/Cacheable.Abstractions/CacheEntryOptionsExtensions.cs renamed to src/Cacheable.Microsoft.Extensions.Caching.Abstractions/CacheEntryOptionsExtensions.cs

File renamed without changes.

src/Cacheable.Abstractions/Cacheable.Abstractions.csproj renamed to src/Cacheable.Microsoft.Extensions.Caching.Abstractions/Cacheable.Microsoft.Extensions.Caching.Abstractions.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
<Version>0.2.0</Version>
1212
<Authors>Nicholas Myers</Authors>
1313
<Company>Nicholas Myers</Company>
14+
<PackageTags>caching;request;mediators;handlers;command;query;decorators</PackageTags>
15+
<Product>Cacheable.Microsoft.Extensions.Caching.Abstractions</Product>
16+
<PackageId>Cacheable.Microsoft.Extensions.Caching.Abstractions</PackageId>
1417
</PropertyGroup>
1518

1619
<ItemGroup>

src/Cacheable.Abstractions/ICacheableRequest.cs renamed to src/Cacheable.Microsoft.Extensions.Caching.Abstractions/ICacheableRequest.cs

File renamed without changes.

src/Cacheable.Abstractions/ICacheableRequestHandler.cs renamed to src/Cacheable.Microsoft.Extensions.Caching.Abstractions/ICacheableRequestHandler.cs

File renamed without changes.

src/Cacheable.Abstractions/MemoryCacheEntryAdapter.cs renamed to src/Cacheable.Microsoft.Extensions.Caching.Abstractions/MemoryCacheEntryAdapter.cs

File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)