53 lines
1.9 KiB
XML
53 lines
1.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<UserSecretsId>69ab2892-efa6-4c8d-9391-c18d80efaa00</UserSecretsId>
|
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<_ContentIncludedByDefault Remove="appsettings.Production.json" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.17.0" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Crm.Core.MsgTool.Domain\Crm.Core.MsgTool.Domain.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Update="appsettings.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
</Content>
|
|
<Content Update="appsettings.Production.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
</Content>
|
|
</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.MsgTool.Domain" />
|
|
<Using Include="Serilog" />
|
|
<Using Include="Zxd.Core.Shared.Dto" />
|
|
<Using Include="Crm.Core.MsgTool.Domain.Events" />
|
|
<Using Include="Crm.Core.MsgTool.Domain.Handlers" />
|
|
</ItemGroup>
|
|
</Project>
|