45 lines
1.6 KiB
XML
45 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<UserSecretsId>90f021d1-6786-4eaf-9e4f-1b847644d198</UserSecretsId>
|
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.15.1" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Crm.Core.Domain\Crm.Core.Domain.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Using Include="DG.EntityFramework" />
|
|
<Using Include="Microsoft.EntityFrameworkCore" />
|
|
<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.Hubs" />
|
|
<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="Crm.Core.WebApi.Workers" />
|
|
<Using Include="Serilog" />
|
|
<Using Include="Crm.Core.Shared.Dto" />
|
|
<Using Include="Crm.Core.Shared" />
|
|
<Using Include="Zxd.Core.Shared.Dto" />
|
|
<Using Include="Crm.Core.Domain.Dto.Live" />
|
|
<Using Include="Crm.Core.Domain.Dto.LivePlayback" />
|
|
<Using Include="Exceptionless" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|