| 12345678910111213141516171819202122 |
- <Project Sdk="Microsoft.NET.Sdk">
- <Import Project="..\..\build\common.props" />
- <PropertyGroup>
- <Description>Redis storage support as key store.</Description>
- <VersionPrefix>0.3.0</VersionPrefix>
- <TargetFramework>netstandard2.0</TargetFramework>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <GenerateDocumentationFile>true</GenerateDocumentationFile>
- <PackageTags>aspnetcore;dataprotection;redis</PackageTags>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\Microsoft.AspNetCore.DataProtection\Microsoft.AspNetCore.DataProtection.csproj" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="StackExchange.Redis.StrongName" Version="$(RedisVersion)" />
- </ItemGroup>
- </Project>
|