Web.Api.csproj 689 B

1234567891011121314151617181920
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <TargetFramework>net10.0</TargetFramework>
  4. <Nullable>enable</Nullable>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.2" />
  9. <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="10.0.2" />
  10. <PackageReference Include="Swashbuckle.AspNetCore" Version="8.1.0" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <ProjectReference Include="..\Application\Application.csproj" />
  14. <ProjectReference Include="..\Infrastructure\Infrastructure.csproj" />
  15. </ItemGroup>
  16. </Project>