Web.Api.csproj 762 B

12345678910111213141516171819
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <ItemGroup>
  3. <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" />
  4. <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" />
  5. <PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" />
  6. <PackageReference Include="Microsoft.OpenApi" />
  7. <PackageReference Include="MimeKit" />
  8. <PackageReference Include="Serilog.AspNetCore" />
  9. <PackageReference Include="Serilog.Sinks.File" />
  10. <PackageReference Include="Swashbuckle.AspNetCore" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <ProjectReference Include="..\Application\Application.csproj" />
  14. <ProjectReference Include="..\Infrastructure\Infrastructure.csproj" />
  15. </ItemGroup>
  16. </Project>