Web.Api.csproj 775 B

123456789101112131415161718192021
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <UserSecretsId>3c382f4e-81a2-4b63-929f-fefd29e950e8</UserSecretsId>
  4. </PropertyGroup>
  5. <ItemGroup>
  6. <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" />
  7. <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" />
  8. <PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" />
  9. <PackageReference Include="Microsoft.OpenApi" />
  10. <PackageReference Include="Serilog.AspNetCore" />
  11. <PackageReference Include="Swashbuckle.AspNetCore" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <ProjectReference Include="..\Application\Application.csproj" />
  15. <ProjectReference Include="..\Infrastructure\Infrastructure.csproj" />
  16. </ItemGroup>
  17. </Project>