Files
RethinkDB.DistributedCache/src/RethinkDB.DistributedCache/RethinkDB.DistributedCache.fsproj
T

41 lines
2.1 KiB
XML
Raw Normal View History

2022-04-19 12:12:27 -04:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;netstandard2.0</TargetFrameworks>
2022-05-25 18:19:06 -04:00
<Description>An IDistributedCache implementation utilizing RethinkDB for storage</Description>
2022-04-19 12:12:27 -04:00
<GenerateDocumentationFile>true</GenerateDocumentationFile>
2022-05-25 18:19:06 -04:00
<Authors>Daniel J. Summers,Bit Badger Solutions</Authors>
<RepositoryUrl>https://github.com/bit-badger/RethinkDB.DistributedCache</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://bitbadger.solutions/open-source/rethinkdb-distributedcache/</PackageProjectUrl>
<PackageIcon>logo.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
2022-04-19 14:05:48 -04:00
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Copyright>MIT License</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
2022-05-25 18:19:06 -04:00
<PackageTags>RethinkDB IDistributedCache aspnetcore</PackageTags>
<VersionPrefix>1.0.0</VersionPrefix>
<VersionSuffix>rc1</VersionSuffix>
<PackageReleaseNotes>Release Candidate; repackaged with more stable underlying driver and documentation</PackageReleaseNotes>
2022-04-19 12:12:27 -04:00
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="*" />
<PackageReference Include="Microsoft.Extensions.Options" Version="6.0.0" />
2022-05-25 18:19:06 -04:00
<PackageReference Include="RethinkDb.Driver.FSharp" Version="0.9.0-beta-03" />
<PackageReference Update="FSharp.Core" Version="6.0.4" />
2022-04-19 12:12:27 -04:00
</ItemGroup>
<ItemGroup>
<Compile Include="DistributedRethinkDBCacheOptions.fs" />
2022-04-21 21:38:51 -04:00
<Compile Include="CacheEntry.fs" />
<Compile Include="Cache.fs" />
2022-04-19 12:12:27 -04:00
<Compile Include="DistributedRethinkDBCache.fs" />
<Compile Include="IServiceCollectionExtensions.fs" />
2022-05-25 18:19:06 -04:00
<None Include="README.md" Pack="true" PackagePath="\" />
<None Include="logo.png" Pack="true" PackagePath="\" />
2022-04-19 12:12:27 -04:00
</ItemGroup>
</Project>