ComplianceServer/code/Hg.Internal.WebApi/Hg.Internal.WebApi.csproj

47 lines
1.7 KiB
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>0460cc30-af0b-40c6-877e-2ad125c31cd9</UserSecretsId>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
</PropertyGroup>
<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="..\Hg.Internal.Domain\Hg.Internal.Domain.csproj" />
</ItemGroup>
<ItemGroup>
<Using Include="DG.EntityFramework" />
<Using Include="DG.Core" />
<Using Include="DG.Redis" />
<Using Include="Hg.Internal.Domain" />
<Using Include="Hg.Internal.Domain.Impl" />
<Using Include="Hg.Core.EntityFramework" />
<Using Include="Hg.Internal.Domain.Dto" />
<Using Include="Microsoft.EntityFrameworkCore" />
<Using Include="System.Text.Json" />
<Using Include="Serilog" />
<Using Include="Microsoft.AspNetCore.Mvc" />
<Using Include="Hg.Internal.Domain.Config" />
</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>
</Project>