35 lines
1.3 KiB
XML
35 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
|
|
|
|
<Import Project="..\..\build\common.props" />
|
|
|
|
<PropertyGroup>
|
|
<Description>ASP.NET Core middleware that enables an application to support any standard OAuth 2.0 authentication workflow.</Description>
|
|
<TargetFrameworks>net451;netstandard1.3</TargetFrameworks>
|
|
<NoWarn>$(NoWarn);CS1591</NoWarn>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<PackageTags>aspnetcore;authentication;security</PackageTags>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="**\*.cs" />
|
|
<EmbeddedResource Include="**\*.resx" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Microsoft.AspNetCore.Authentication\Microsoft.AspNetCore.Authentication.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<!--
|
|
TODO remove files in __TemporarySources__ and use this content files package
|
|
<PackageReference Include="Microsoft.Extensions.TaskCache.Sources" Version="1.2.0-*" PrivateAssets="All" />
|
|
-->
|
|
<PackageReference Include="NETStandard.Library" Version="1.6.2-*" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' ">
|
|
<PackageReference Include="System.Runtime.Serialization.Primitives" Version="4.4.0-*" />
|
|
</ItemGroup>
|
|
|
|
</Project> |