34 lines
1.5 KiB
XML
34 lines
1.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
|
|
<PackageReference Include="Microsoft.Extensions.Options" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Authorization" />
|
|
<PackageReference Include="System.IdentityModel.Tokens.Jwt" />
|
|
<PackageReference Include="Novell.Directory.Ldap.NETStandard" />
|
|
<PackageReference Include="ZB.MOM.WW.Auth.Abstractions" />
|
|
<PackageReference Include="ZB.MOM.WW.Auth.Ldap" />
|
|
<!-- Inbound-API key re-arch (C1): LibraryInboundApiKeyAdmin implements the
|
|
Commons IInboundApiKeyAdmin management seam over the shared admin facade
|
|
(ApiKeyAdminCommands). Security is the one project referenced by BOTH the
|
|
Host (ManagementActor, via ManagementService) and CentralUI, and it already
|
|
carries the rest of the Auth family — so the impl lives here. -->
|
|
<PackageReference Include="ZB.MOM.WW.Auth.ApiKeys" />
|
|
<PackageReference Include="ZB.MOM.WW.Auth.AspNetCore" />
|
|
<PackageReference Include="ZB.MOM.WW.Configuration" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="../ZB.MOM.WW.ScadaBridge.Commons/ZB.MOM.WW.ScadaBridge.Commons.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|