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 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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.Mvc.Versioning" Version="5.0.0" />
  23. <PackageReference Include="Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer" Version="5.0.0" />
  24. <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.3">
  25. <PrivateAssets>all</PrivateAssets>
  26. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  27. </PackageReference>
  28. <PackageReference Include="Swashbuckle.AspNetCore" Version="6.3.2" />
  29. <PackageReference Include="Serilog.AspNetCore" Version="5.0.0" />
  30. <PackageReference Include="Serilog.Sinks.Seq" Version="5.1.1" />
  31. <PackageReference Include="SerilogTimings" Version="2.3.0" />
  32. </ItemGroup>
  33. <ItemGroup>
  34. <ProjectReference Include="..\Diligent.WebAPI.Business\Diligent.WebAPI.Business.csproj" />
  35. <ProjectReference Include="..\Diligent.WebAPI.Contracts\Diligent.WebAPI.Contracts.csproj" />
  36. <ProjectReference Include="..\Diligent.WebAPI.Data\Diligent.WebAPI.Data.csproj" />
  37. </ItemGroup>
  38. </Project>