You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Diligent.WebAPI.Host.csproj 1.7KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <Nullable>enable</Nullable>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <None Include="..\.editorconfig" Link=".editorconfig" />
  9. </ItemGroup>
  10. <ItemGroup>
  11. <PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="11.0.0" />
  12. <PackageReference Include="MediatR" Version="10.0.1" />
  13. <PackageReference Include="MediatR.Extensions.Microsoft.DependencyInjection" Version="10.0.1" />
  14. <PackageReference Include="Microsoft.AspNet.WebApi.Core" Version="5.2.9" />
  15. <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.6" />
  16. <PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.2.0" />
  17. <PackageReference Include="Microsoft.AspNetCore.Mvc.Versioning" Version="5.0.0" />
  18. <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.3">
  19. <PrivateAssets>all</PrivateAssets>
  20. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  21. </PackageReference>
  22. <PackageReference Include="Serilog" Version="2.11.0" />
  23. <PackageReference Include="Serilog.AspNetCore" Version="5.0.0" />
  24. <PackageReference Include="Serilog.Sinks.Console" Version="4.0.1" />
  25. <PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
  26. <PackageReference Include="Serilog.Sinks.Seq" Version="5.1.1" />
  27. </ItemGroup>
  28. <ItemGroup>
  29. <ProjectReference Include="..\Diligent.WebAPI.Business\Diligent.WebAPI.Business.csproj" />
  30. <ProjectReference Include="..\Diligent.WebAPI.Data\Diligent.WebAPI.Data.csproj" />
  31. </ItemGroup>
  32. </Project>