crm.core/test/Crm.Core.Test/Crm.Core.Test.csproj

51 lines
1.6 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<None Remove="appsettings.json" />
</ItemGroup>
<ItemGroup>
<Content Include="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
<PackageReference Include="MSTest.TestAdapter" Version="2.2.8" />
<PackageReference Include="MSTest.TestFramework" Version="2.2.8" />
<PackageReference Include="coverlet.collector" Version="3.1.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\code\Crm.Core.Domain\Crm.Core.Domain.csproj" />
</ItemGroup>
<ItemGroup>
<Using Include="DG.EntityFramework" />
<Using Include="DG.Core" />
<Using Include="DG.Redis" />
<Using Include="System.Text.Json" />
<Using Include="Crm.Core.EntityFramework" />
<Using Include="Microsoft.AspNetCore.SignalR" />
<Using Include="Microsoft.AspNetCore.Mvc" />
<Using Include="Crm.Core.Domain.Dto" />
<Using Include="Crm.Core.Domain.Dto.CRM" />
<Using Include="Crm.Core.Domain" />
<Using Include="Crm.Core.Domain.Impl" />
<Using Include="Serilog" />
<Using Include="Crm.Core.Shared.Dto" />
<Using Include="Crm.Core.Shared" />
<Using Include="Zxd.Core.Shared.Dto" />
</ItemGroup>
</Project>