|
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | 4 | <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> |
5 | 25 | </PropertyGroup> |
6 | 26 |
|
| 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 | + |
7 | 39 | <ItemGroup> |
8 | 40 | <PackageReference Include="BitFaster.Caching" Version="2.1.0" /> |
9 | 41 | <PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="2.1.0" /> |
10 | 42 | </ItemGroup> |
11 | | - |
| 43 | + <ItemGroup> |
| 44 | + <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" /> |
| 45 | + </ItemGroup> |
12 | 46 | </Project> |
0 commit comments