-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDirectory.Build.props
39 lines (35 loc) · 1.74 KB
/
Directory.Build.props
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
<Project>
<PropertyGroup Label="Build">
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup Label="Package">
<Authors>David De Smet</Authors>
<Company />
<Description>MongoDB persistence layer for Duende IdentityServer.</Description>
<Copyright>Copyright © 2021 David De Smet</Copyright>
<PackageTags>MongoDB;OAuth 2.0;OpenID Connect;Security;Identity;IdentityServer;ASP.NET Core</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/daviddesmet/AspNetCore.IdentityServer.Mongo</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>https://github.com/daviddesmet/AspNetCore.IdentityServer.Mongo/releases</PackageReleaseNotes>
<RepositoryUrl>https://github.com/daviddesmet/AspNetCore.IdentityServer.Mongo.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<RepositoryBranch>main</RepositoryBranch>
</PropertyGroup>
<PropertyGroup Label="Source Link">
<!-- Optional: Declare that the Repository URL can be published to NuSpec -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<!-- Optional: Embed source files that are not tracked by the source control manager to the PDB -->
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<!-- Recommended: Embed symbols containing Source Link in the main file (exe/dll) -->
<DebugType>embedded</DebugType>
<!-- Deterministic -->
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup>
<None Include="../../README.md" Pack="true" Visible="false" PackagePath="" />
</ItemGroup>
<PropertyGroup Label="Versioning">
<MinVerAutoIncrement>minor</MinVerAutoIncrement>
</PropertyGroup>
</Project>