AipGateway.API.Application.csproj 969 B

12345678910111213141516171819202122232425
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>enable</Nullable>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.4" />
  9. <PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.4" />
  10. <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.0">
  11. <PrivateAssets>all</PrivateAssets>
  12. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  13. </PackageReference>
  14. <PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.1" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <ProjectReference Include="..\AipGateway.AIP\AipGateway.AIP.csproj" />
  18. <ProjectReference Include="..\AipGateway.API.Domain\AipGateway.API.Domain.csproj" />
  19. </ItemGroup>
  20. </Project>