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

123456789101112131415161718192021222324252627282930313233
  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.NET.Test.Sdk" Version="17.1.0" />
  11. <PackageReference Include="NSubstitute" Version="4.4.0" />
  12. <PackageReference Include="xunit" Version="2.4.1" />
  13. <PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
  14. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  15. <PrivateAssets>all</PrivateAssets>
  16. </PackageReference>
  17. <PackageReference Include="coverlet.collector" Version="3.1.2">
  18. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  19. <PrivateAssets>all</PrivateAssets>
  20. </PackageReference>
  21. </ItemGroup>
  22. <ItemGroup>
  23. <ProjectReference Include="..\Diligent.WebAPI.Business\Diligent.WebAPI.Business.csproj" />
  24. <ProjectReference Include="..\Diligent.WebAPI.Contracts\Diligent.WebAPI.Contracts.csproj" />
  25. <ProjectReference Include="..\Diligent.WebAPI.Data\Diligent.WebAPI.Data.csproj" />
  26. <ProjectReference Include="..\Diligent.WebAPI.Host\Diligent.WebAPI.Host.csproj" />
  27. </ItemGroup>
  28. </Project>