OnlineMetodist.API.csproj 1.0 KB

12345678910111213141516171819202122
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <Nullable>enable</Nullable>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.3" />
  9. <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.3" />
  10. <PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.3" />
  11. <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.3">
  12. <PrivateAssets>all</PrivateAssets>
  13. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  14. </PackageReference>
  15. <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="8.0.2" />
  16. <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.2" />
  17. <PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
  18. </ItemGroup>
  19. </Project>