38 lines
1.2 KiB
XML
38 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Data\**" />
|
|
<Compile Remove="Pages\Old\**" />
|
|
<Compile Remove="wwwroot\css\bootstrap\**" />
|
|
<Compile Remove="wwwroot\css\open-iconic\**" />
|
|
<Content Remove="Data\**" />
|
|
<Content Remove="Pages\Old\**" />
|
|
<Content Remove="wwwroot\css\bootstrap\**" />
|
|
<Content Remove="wwwroot\css\open-iconic\**" />
|
|
<EmbeddedResource Remove="Data\**" />
|
|
<EmbeddedResource Remove="Pages\Old\**" />
|
|
<EmbeddedResource Remove="wwwroot\css\bootstrap\**" />
|
|
<EmbeddedResource Remove="wwwroot\css\open-iconic\**" />
|
|
<None Remove="Data\**" />
|
|
<None Remove="Pages\Old\**" />
|
|
<None Remove="wwwroot\css\bootstrap\**" />
|
|
<None Remove="wwwroot\css\open-iconic\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="AntDesign" Version="0.10.2" />
|
|
<PackageReference Include="AntDesign.ProLayout" Version="0.1.9" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\YBDevice.Application\YBDevice.Application.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|