Skip to content

Commit d3c7733

Browse files
author
Alex Peck
committed
pkg
1 parent eb2eee5 commit d3c7733

File tree

2 files changed

+36
-1
lines changed

2 files changed

+36
-1
lines changed

src/BitFaster.Caching.DependencyInjection/BitFaster.Caching.DependencyInjection.csproj

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,45 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
5+
<Copyright>Copyright © Alex Peck $([System.DateTime]::Now.ToString(yyyy))</Copyright>
6+
<RepositoryUrl>https://github.com/bitfaster/BitFaster.Caching.DependencyInjection</RepositoryUrl>
7+
<PackageProjectUrl></PackageProjectUrl>
8+
<Authors>Alex Peck</Authors>
9+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
10+
<Company />
11+
<Product>BitFaster.Caching</Product>
12+
<Description>High performance, thread-safe in-memory caching primitives for .NET.</Description>
13+
<PackageTags>Cache;LRU;LFU;Performance;In-Memory;Thread-Safe;Concurrent</PackageTags>
14+
<PackageId>BitFaster.Caching.DependencyInjection</PackageId>
15+
<AssemblyName>BitFaster.Caching.DependencyInjection</AssemblyName>
16+
<RootNamespace>BitFaster.Caching.DependencyInjection</RootNamespace>
17+
<Version>1.0.0</Version>
18+
<AssemblyVersion>1.0.0.0</AssemblyVersion>
19+
<FileVersion>1.0.0.0</FileVersion>
20+
<IncludeSource>True</IncludeSource>
21+
<IncludeSymbols>True</IncludeSymbols>
22+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
23+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
24+
<GenerateDocumentationFile>true</GenerateDocumentationFile>
525
</PropertyGroup>
626

27+
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
28+
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
29+
</PropertyGroup>
30+
31+
<ItemGroup>
32+
<None Include="..\..\LICENSE">
33+
<Pack>True</Pack>
34+
<PackagePath></PackagePath>
35+
</None>
36+
<None Include="README.md" Pack="true" PackagePath="\" />
37+
</ItemGroup>
38+
739
<ItemGroup>
840
<PackageReference Include="BitFaster.Caching" Version="2.1.0" />
941
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="2.1.0" />
1042
</ItemGroup>
11-
43+
<ItemGroup>
44+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
45+
</ItemGroup>
1246
</Project>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Extension methods for setting up caches using Microsoft.Extensions.DependencyInjection.

0 commit comments

Comments
 (0)