MTWorkHR.Identity.csproj 1.0 KB

1234567891011121314151617181920212223242526
  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.1" />
  9. <PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.2.0" />
  10. <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.1" />
  11. <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.1" />
  12. <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.1">
  13. <PrivateAssets>all</PrivateAssets>
  14. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  15. </PackageReference>
  16. <PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="8.0.0" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <ProjectReference Include="..\MTWorkHR.Core\MTWorkHR.Core.csproj" />
  20. </ItemGroup>
  21. </Project>