Files
Yi.Admin/Yi.Framework.Net6/Yi.Framework.ApiMicroservice/Yi.Framework.ApiMicroservice.csproj

37 lines
1.3 KiB
XML
Raw Normal View History

2021-12-25 14:50:54 +08:00
<Project Sdk="Microsoft.NET.Sdk.Web">
2021-10-10 16:43:49 +08:00
<PropertyGroup>
2021-12-25 14:50:54 +08:00
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
2021-12-25 14:55:18 +08:00
<Nullable>enable</Nullable>
2022-01-11 16:40:15 +08:00
<UserSecretsId>f5ce4739-9524-4330-9aea-cfcdb41501de</UserSecretsId>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
2021-10-10 16:43:49 +08:00
</PropertyGroup>
2021-10-12 16:52:28 +08:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
2022-04-02 17:44:50 +08:00
<DocumentationFile>./Config/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-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>