2021-10-10 16:43:49 +08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2021-10-12 16:52:28 +08:00
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
2021-10-13 15:40:56 +08:00
|
|
|
<DocumentationFile>D:\CC.Yi\CC.Yi\Yi.Framework\Yi.Framework.ApiMicroservice\SwaggerDoc.xml</DocumentationFile>
|
2021-10-12 16:52:28 +08:00
|
|
|
<NoWarn>1701;1702;CS1591</NoWarn>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2021-11-02 23:22:37 +08:00
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Remove="wwwrooot\**" />
|
|
|
|
|
<Content Remove="wwwrooot\**" />
|
|
|
|
|
<EmbeddedResource Remove="wwwrooot\**" />
|
|
|
|
|
<None Remove="wwwrooot\**" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-10-17 19:01:38 +08:00
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="5.0.11">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-10-10 17:52:23 +08:00
|
|
|
<ItemGroup>
|
2021-10-14 17:36:32 +08:00
|
|
|
<ProjectReference Include="..\Yi.Framework.DTOModel\Yi.Framework.DTOModel.csproj" />
|
2021-10-11 21:50:50 +08:00
|
|
|
<ProjectReference Include="..\Yi.Framework.Interface\Yi.Framework.Interface.csproj" />
|
2021-10-10 17:52:23 +08:00
|
|
|
<ProjectReference Include="..\Yi.Framework.Model\Yi.Framework.Model.csproj" />
|
2021-10-11 21:50:50 +08:00
|
|
|
<ProjectReference Include="..\Yi.Framework.Service\Yi.Framework.Service.csproj" />
|
2021-10-13 15:40:56 +08:00
|
|
|
<ProjectReference Include="..\Yi.Framework.WebCore\Yi.Framework.WebCore.csproj" />
|
2021-10-10 17:52:23 +08:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-11-02 00:25:23 +08:00
|
|
|
<ItemGroup>
|
2021-11-02 23:22:37 +08:00
|
|
|
<Folder Include="wwwroot\file\" />
|
|
|
|
|
<Folder Include="wwwroot\image\" />
|
2021-11-02 00:25:23 +08:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-10-10 16:43:49 +08:00
|
|
|
</Project>
|