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.
49 lines
2.0 KiB
49 lines
2.0 KiB
<Project>
|
|
|
|
<Import Project="Sdk.props" Sdk="Microsoft.DotNet.Arcade.Sdk" />
|
|
|
|
<PropertyGroup>
|
|
<LangVersion>preview</LangVersion>
|
|
<NoWarn>$(NoWarn);CS1591</NoWarn>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)\eng\key.snk</AssemblyOriginatorKeyFile>
|
|
<SignAssembly>true</SignAssembly>
|
|
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<Authors>Kévin Chalet</Authors>
|
|
<Product>OpenIddict</Product>
|
|
<Copyright>© Kévin Chalet. All rights reserved.</Copyright>
|
|
<PackageIconUrl>https://avatars3.githubusercontent.com/u/13908567?s=64</PackageIconUrl>
|
|
<PackageProjectUrl>https://github.com/openiddict/openiddict-core</PackageProjectUrl>
|
|
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
|
|
<PackageTags>authentication;jwt;openidconnect;openiddict;security</PackageTags>
|
|
<RepositoryType>git</RepositoryType>
|
|
<RepositoryUrl>git://github.com/openiddict/openiddict-core</RepositoryUrl>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<RepoRelativeProjectDir>$([MSBuild]::MakeRelative($(RepoRoot), $(MSBuildProjectDirectory)))</RepoRelativeProjectDir>
|
|
<WarnOnPackingNonPackableProject>false</WarnOnPackingNonPackableProject>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" $(RepoRelativeProjectDir.Contains('src')) ">
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<IncludeSource>true</IncludeSource>
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
<IsPackable>true</IsPackable>
|
|
<IsShipping>true</IsShipping>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup Condition=" '$(OS)' != 'Windows_NT' ">
|
|
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" PrivateAssets="All" Version="1.0.0-preview.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectCapability Include="DynamicDependentFile" />
|
|
<ProjectCapability Include="DynamicFileNesting" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|