-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDigitalRuby.SimpleCache.csproj
More file actions
49 lines (45 loc) · 2.3 KB
/
DigitalRuby.SimpleCache.csproj
File metadata and controls
49 lines (45 loc) · 2.3 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<IsPackable>true</IsPackable>
<Version>3.0.2</Version>
<Title>Simple Cache</Title>
<Authors>jjxtra</Authors>
<Company>Digital Ruby, LLC</Company>
<Description>Simple and powerful caching for .NET using three layers: RAM, file and redis.</Description>
<Copyright>(c) 2022-Present Digital Ruby, LLC</Copyright>
<PackageProjectUrl>https://github.com/DigitalRuby/SimpleCache</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/DigitalRuby/SimplePubSub</RepositoryUrl>
<PackageTags>cache;simple;easy;ram;memory;file;disk;redis;distributed;idistributedcache;iconnectionmultiplexer;lock;distributedlock;stackexchange;stackoverflow;connectionmultiplexer;lazy;task;storm;lazycache;caching;invalidation;expiration;synchronization;powerful;layer;layers;layered;layeredcache</PackageTags>
<PackageReleaseNotes>.NET 9</PackageReleaseNotes>
<AssemblyVersion></AssemblyVersion>
<FileVersion></FileVersion>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<None Include="..\icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="DigitalRuby.Polly.Contrib.DuplicateRequestCollapser" Version="0.3.0-v030-0001" />
<PackageReference Include="K4os.Compression.LZ4.Streams" Version="1.3.8" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="9.0.1" />
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="9.0.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="9.0.1" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="9.0.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.1" />
<PackageReference Include="SauceControl.Blake2Fast" Version="2.0.0" />
</ItemGroup>
</Project>