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>./YiFrameworkSwaggerDoc.xml</DocumentationFile>
|
2022-04-02 17:44:50 +08:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2023-01-11 15:05:31 +08:00
|
|
|
<ItemGroup>
|
2023-01-16 20:55:36 +08:00
|
|
|
<ProjectReference Include="..\Yi.Framework.Core.Autofac\Yi.Framework.Core.Autofac.csproj" />
|
2023-01-15 14:32:43 +08:00
|
|
|
<ProjectReference Include="..\Yi.Framework.Core.AutoMapper\Yi.Framework.Core.AutoMapper.csproj" />
|
2023-01-11 15:05:31 +08:00
|
|
|
<ProjectReference Include="..\Yi.Framework.Core\Yi.Framework.Core.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-01-15 14:32:43 +08:00
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="YiFrameworkSwaggerDoc.xml">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2022-04-02 17:44:50 +08:00
|
|
|
</Project>
|