You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
2.5 KiB
50 lines
2.5 KiB
<Project Sdk="MSBuild.Sdk.Extras">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>
|
|
$(NetFrameworkTargetFrameworks);
|
|
$(NetCoreTargetFrameworks);
|
|
$(NetCoreAndroidTargetFrameworks);
|
|
$(NetCoreIOSTargetFrameworks);
|
|
$(NetCoreMacCatalystTargetFrameworks);
|
|
$(NetCoreMacOSTargetFrameworks);
|
|
$(NetCoreWindowsTargetFrameworks);
|
|
$(NetStandardTargetFrameworks);
|
|
$(UniversalWindowsPlatformTargetFrameworks)
|
|
</TargetFrameworks>
|
|
|
|
<!--
|
|
Note: MSBuild.Sdk.Extras has a bug that prevents the target framework identifier from being
|
|
correctly inferred for .NET 10+ target framework monikers. To work around that bug, the identifier
|
|
is explicitly set when the moniker corresponds to a .NET (Core) target framework moniker.
|
|
|
|
See https://github.com/novotnyllc/MSBuildSdkExtras/issues/305 for more information.
|
|
-->
|
|
<TargetFrameworkIdentifier
|
|
Condition=" $([MSBuild]::GetTargetFrameworkIdentifier('$(TargetFramework)')) == '.NETCoreApp' ">.NETCoreApp</TargetFrameworkIdentifier>
|
|
<IncludeBuildOutput>false</IncludeBuildOutput>
|
|
<IncludeSymbols>false</IncludeSymbols>
|
|
<IncludeInternalExtensions>false</IncludeInternalExtensions>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<Description>Versatile OpenID Connect stack for .NET.
|
|
|
|
Note: this metapackage only references the generic core, client, server and validation packages.
|
|
To use these features on ASP.NET Core or OWIN/Katana/ASP.NET 4.x, reference the OpenIddict.AspNetCore or OpenIddict.Owin package.</Description>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\OpenIddict.Abstractions\OpenIddict.Abstractions.csproj" />
|
|
<ProjectReference Include="..\OpenIddict.Client\OpenIddict.Client.csproj" />
|
|
<ProjectReference Include="..\OpenIddict.Client.SystemIntegration\OpenIddict.Client.SystemIntegration.csproj" />
|
|
<ProjectReference Include="..\OpenIddict.Client.SystemNetHttp\OpenIddict.Client.SystemNetHttp.csproj" />
|
|
<ProjectReference Include="..\OpenIddict.Client.WebIntegration\OpenIddict.Client.WebIntegration.csproj" />
|
|
<ProjectReference Include="..\OpenIddict.Core\OpenIddict.Core.csproj" />
|
|
<ProjectReference Include="..\OpenIddict.Server\OpenIddict.Server.csproj" />
|
|
<ProjectReference Include="..\OpenIddict.Validation\OpenIddict.Validation.csproj" />
|
|
<ProjectReference Include="..\OpenIddict.Validation.ServerIntegration\OpenIddict.Validation.ServerIntegration.csproj" />
|
|
<ProjectReference Include="..\OpenIddict.Validation.SystemNetHttp\OpenIddict.Validation.SystemNetHttp.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|