Microsoft.AspNetCore.DataProtection.Redis.csproj 742 B

12345678910111213141516171819202122
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <Import Project="..\..\build\common.props" />
  3. <PropertyGroup>
  4. <Description>Redis storage support as key store.</Description>
  5. <VersionPrefix>0.3.0</VersionPrefix>
  6. <TargetFramework>netstandard2.0</TargetFramework>
  7. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  8. <GenerateDocumentationFile>true</GenerateDocumentationFile>
  9. <PackageTags>aspnetcore;dataprotection;redis</PackageTags>
  10. </PropertyGroup>
  11. <ItemGroup>
  12. <ProjectReference Include="..\Microsoft.AspNetCore.DataProtection\Microsoft.AspNetCore.DataProtection.csproj" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <PackageReference Include="StackExchange.Redis.StrongName" Version="$(RedisVersion)" />
  16. </ItemGroup>
  17. </Project>