2022-04-02 17:44:50 +08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
2023-01-15 14:32:43 +08:00
|
|
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
|
|
|
|
<DocumentationFile>./ApplicationContractsSwaggerDoc.xml</DocumentationFile>
|
2022-04-02 17:44:50 +08:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2023-01-12 14:58:16 +08:00
|
|
|
<ItemGroup>
|
2023-01-15 14:32:43 +08:00
|
|
|
<ProjectReference Include="..\Yi.Framework.Domain.Shared\Yi.Framework.Domain.Shared.csproj" />
|
2023-01-12 14:58:16 +08:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-01-15 14:32:43 +08:00
|
|
|
<None Update="ApplicationContractsSwaggerDoc.xml">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
2023-01-12 14:58:16 +08:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2022-04-02 17:44:50 +08:00
|
|
|
</Project>
|