Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213141516171819202122232425262728293031323334
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>enable</Nullable>
  6. <IsPackable>false</IsPackable>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <PackageReference Include="FluentAssertions" Version="6.8.0" />
  10. <PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="6.0.10" />
  11. <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
  12. <PackageReference Include="NSubstitute" Version="4.4.0" />
  13. <PackageReference Include="xunit" Version="2.4.1" />
  14. <PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
  15. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  16. <PrivateAssets>all</PrivateAssets>
  17. </PackageReference>
  18. <PackageReference Include="coverlet.collector" Version="3.1.2">
  19. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  20. <PrivateAssets>all</PrivateAssets>
  21. </PackageReference>
  22. </ItemGroup>
  23. <ItemGroup>
  24. <ProjectReference Include="..\Diligent.WebAPI.Business\Diligent.WebAPI.Business.csproj" />
  25. <ProjectReference Include="..\Diligent.WebAPI.Contracts\Diligent.WebAPI.Contracts.csproj" />
  26. <ProjectReference Include="..\Diligent.WebAPI.Data\Diligent.WebAPI.Data.csproj" />
  27. <ProjectReference Include="..\Diligent.WebAPI.Host\Diligent.WebAPI.Host.csproj" />
  28. </ItemGroup>
  29. </Project>