-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCodeBeam.UltimateAuth.Authorization.csproj
More file actions
31 lines (24 loc) · 1.22 KB
/
CodeBeam.UltimateAuth.Authorization.csproj
File metadata and controls
31 lines (24 loc) · 1.22 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<NoWarn>$(NoWarn);1591</NoWarn>
<PackageId>CodeBeam.UltimateAuth.Authorization</PackageId>
<Description>
Authorization module for UltimateAuth.
Provides orchestration, abstractions and dependency injection wiring for role and permission based authorization.
Use with a persistence provider such as EntityFrameworkCore or InMemory.
This package is included transitively by CodeBeam.UltimateAuth.Server and usually does not need to be installed directly.
</Description>
<PackageTags>authentication;authorization;roles;permissions;security;module;auth-framework</PackageTags>
<PackageIcon>uauthlogo.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\CodeBeam.UltimateAuth.Core\CodeBeam.UltimateAuth.Core.csproj" />
<ProjectReference Include="..\CodeBeam.UltimateAuth.Authorization.Contracts\CodeBeam.UltimateAuth.Authorization.Contracts.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="uauthlogo.png" Pack="true" PackagePath="\" />
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>