-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
31 lines (30 loc) · 1.78 KB
/
Copy pathDirectory.Build.props
File metadata and controls
31 lines (30 loc) · 1.78 KB
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
<Project>
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<Version>3.6.0</Version>
<PackageVersion>3.6.0</PackageVersion>
<Authors>RedBase</Authors>
<Company>RedBase</Company>
<Product>redb.Identity</Product>
<Description>Transport-agnostic OAuth 2.1 / OpenID Connect server for the redb ecosystem, built on OpenIddict and redb.Route.</Description>
<Copyright>Copyright (c) 2024-2026 RedBase</Copyright>
<PackageProjectUrl>https://github.com/redbase-app/redb-identity</PackageProjectUrl>
<RepositoryUrl>https://github.com/redbase-app/redb-identity</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>redb;identity;oauth2;oidc;openid-connect;openiddict;scim;mfa;webauthn;dpop</PackageTags>
</PropertyGroup>
<!--
Pack the shared README + repo-root LICENSE/NOTICE into every library nupkg
(Apache 2.0 § 4 attribution). Guarded so test / app projects (IsPackable=false)
skip it. Paths resolve from the monorepo when packed via deploy/nuget/publish-identity.ps1.
-->
<ItemGroup Condition="'$(IsPackable)' != 'false'">
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="\" Visible="false" Condition="Exists('$(MSBuildThisFileDirectory)README.md')" />
<None Include="$(MSBuildThisFileDirectory)..\LICENSE" Pack="true" PackagePath="\" Visible="false" Condition="Exists('$(MSBuildThisFileDirectory)..\LICENSE')" />
<None Include="$(MSBuildThisFileDirectory)..\NOTICE" Pack="true" PackagePath="\" Visible="false" Condition="Exists('$(MSBuildThisFileDirectory)..\NOTICE')" />
</ItemGroup>
</Project>