forked from openiddict/openiddict-core
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathOpenIddict.Server.AspNetCore.csproj
40 lines (33 loc) · 1.8 KB
/
OpenIddict.Server.AspNetCore.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(NetFrameworkTargetFrameworks);$(NetCoreTargetFrameworks)</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<Description>ASP.NET Core integration package for the OpenIddict server services.</Description>
<PackageTags>$(PackageTags);server;aspnetcore</PackageTags>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\OpenIddict.Server\OpenIddict.Server.csproj" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFrameworkIdentifier)' == '.NETCoreApp' ">
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup
Condition=" '$(TargetFrameworkIdentifier)' == '.NETFramework' Or '$(TargetFrameworkIdentifier)' == '.NETStandard' ">
<PackageReference Include="Microsoft.AspNetCore.Authentication" />
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.Abstractions" />
</ItemGroup>
<ItemGroup>
<Using Include="Microsoft.AspNetCore.Authentication" />
<Using Include="Microsoft.AspNetCore.Http" />
<Using Include="OpenIddict.Abstractions" />
<Using Include="OpenIddict.Abstractions.OpenIddictConstants" Static="true" />
<Using Include="OpenIddict.Abstractions.OpenIddictResources" Alias="SR" />
<Using Include="OpenIddict.Server.OpenIddictServerEvents" Static="true" />
<Using Include="OpenIddict.Server.OpenIddictServerHandlers" Static="true" />
<Using Include="OpenIddict.Server.OpenIddictServerHandlerFilters" Static="true" />
<Using Include="OpenIddict.Server.OpenIddictServerEvents" Static="true" />
<Using Include="OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers" Static="true" />
<Using Include="OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlerFilters" Static="true" />
</ItemGroup>
</Project>