Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

Diligent.WebAPI.Host.csproj 2.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. <PropertyGroup>
  8. <GenerateDocumentationFile>true</GenerateDocumentationFile>
  9. </PropertyGroup>
  10. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  11. <NoWarn>1701;1702;1591</NoWarn>
  12. </PropertyGroup>
  13. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  14. <NoWarn>1701;1702;1591</NoWarn>
  15. </PropertyGroup>
  16. <ItemGroup>
  17. <None Include="..\.editorconfig" Link=".editorconfig" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="11.0.0" />
  21. <PackageReference Include="Microsoft.AspNet.WebApi.Core" Version="5.2.9" />
  22. <PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.2.0" />
  23. <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="6.0.10" />
  24. <PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="6.0.10" />
  25. <PackageReference Include="Microsoft.AspNetCore.Mvc.Versioning" Version="5.0.0" />
  26. <PackageReference Include="Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer" Version="5.0.0" />
  27. <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.3">
  28. <PrivateAssets>all</PrivateAssets>
  29. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  30. </PackageReference>
  31. <PackageReference Include="Microsoft.Extensions.Identity.Core" Version="6.0.10" />
  32. <PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="6.0.10" />
  33. <PackageReference Include="Swashbuckle.AspNetCore" Version="6.3.2" />
  34. <PackageReference Include="Serilog.AspNetCore" Version="5.0.0" />
  35. <PackageReference Include="Serilog.Sinks.Seq" Version="5.1.1" />
  36. <PackageReference Include="SerilogTimings" Version="2.3.0" />
  37. </ItemGroup>
  38. <ItemGroup>
  39. <ProjectReference Include="..\Diligent.WebAPI.Business\Diligent.WebAPI.Business.csproj" />
  40. <ProjectReference Include="..\Diligent.WebAPI.Contracts\Diligent.WebAPI.Contracts.csproj" />
  41. <ProjectReference Include="..\Diligent.WebAPI.Data\Diligent.WebAPI.Data.csproj" />
  42. </ItemGroup>
  43. </Project>