-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathEasyCache.Core.csproj
More file actions
29 lines (25 loc) · 1004 Bytes
/
EasyCache.Core.csproj
File metadata and controls
29 lines (25 loc) · 1004 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Authors>furkandeveloper</Authors>
<Description>This library includes base cache operations.</Description>
<Copyright />
<PackageProjectUrl>https://github.com/furkandeveloper/EasyCache</PackageProjectUrl>
<RepositoryUrl>https://github.com/furkandeveloper/EasyCache</RepositoryUrl>
<RepositoryType>Public</RepositoryType>
<PackageTags>cache, easy-cache, cache-manager, dotnet, dotnetcore, net5</PackageTags>
<PackageIcon>easyCache.png</PackageIcon>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Version>1.0.1</Version>
<PackageReleaseNotes>♻ Refactor Async Extensions.</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<None Include="easyCache.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.1" />
</ItemGroup>
</Project>