-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
47 lines (39 loc) · 2.34 KB
/
Directory.Build.props
File metadata and controls
47 lines (39 loc) · 2.34 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<Project>
<PropertyGroup>
<VersionPrefix>3.4.0</VersionPrefix>
<Title>Wangkanai Federation</Title>
<PackageTags>federation;;identity;security;aspnetcore</PackageTags>
<Description>Take control of Authentication and Authorization in ASP.NET Core with `Federation`, your partner for seamless OAuth 2.1 and OpenID Connect integrations. From managing JWTs and external authentication providers to a comprehensive identity model structure, `Federation` offers a robust, secure, and flexible solution. Discover `Federation` and let's redefine Authentication and Authorization together.</Description>
<Company>Wangkanai</Company>
<Authors>Sarin Na Wangkanai</Authors>
<Copyright>©2014-2025 Sarin Na Wangkanai, All rights reserved</Copyright>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>git://github.com/wangkanai/federation</RepositoryUrl>
<PackageProjectUrl>https://github.com/wangkanai/federation</PackageProjectUrl>
<PackageLicense>https://github.com/wangkanai/federation/blob/main/LICENSE</PackageLicense>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup>
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>
<PropertyGroup>
<RepoRoot Condition=" '$(RepoRoot)' == '' OR !HasTrailingSlash('$(RepoRoot)') ">$(MSBuildThisFileDirectory)</RepoRoot>
</PropertyGroup>
<PropertyGroup Condition="$(MSBuildProjectDirectory.Contains('src'))">
<PackageIcon>federation-logo.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup Condition="$(MSBuildProjectDirectory.Contains('src'))">
<None Include="$(RepoRoot)\assets\federation-logo.png" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>