Web.Api.csproj 749 B

123456789101112131415161718192021
  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="MimeKit" Version="4.15.1" />
  11. <PackageReference Include="Swashbuckle.AspNetCore" Version="8.1.0" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <ProjectReference Include="..\Application\Application.csproj" />
  15. <ProjectReference Include="..\Infrastructure\Infrastructure.csproj" />
  16. </ItemGroup>
  17. </Project>