30 lines
1.1 KiB
XML
30 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<Import Project="..\..\build\common.props" />
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>netcoreapp1.1</TargetFrameworks>
|
|
<TargetFrameworks Condition="'$(OS)'=='Windows_NT'">$(TargetFrameworks);net451</TargetFrameworks>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="..\shared\*.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Microsoft.AspNetCore.DataProtection\Microsoft.AspNetCore.DataProtection.csproj" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Testing" Version="1.2.0-*" />
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="1.2.0-*" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0-*" />
|
|
<PackageReference Include="Moq" Version="4.6.36-*" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.2.0-*" />
|
|
<PackageReference Include="xunit" Version="2.2.0-*" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)'=='net451'">
|
|
<Reference Include="System.Security" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|