duheng
2024-09-15 c4d0807d911a3ee09cffaa9942638ea41cd414f6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<Project Sdk="Microsoft.NET.Sdk">
 
  <PropertyGroup>
    <TargetFramework>net6.0</TargetFramework>
    <ImplicitUsings>enable</ImplicitUsings>
    <Nullable>enable</Nullable>
  </PropertyGroup>
 
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
    <NoWarn>1701;1702;8603</NoWarn>
  </PropertyGroup>
 
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
    <NoWarn>1701;1702;8603</NoWarn>
  </PropertyGroup>
 
  <ItemGroup>
    <Compile Remove="04-bll\03-AdaptingManage\AdaptingManage_Instance.cs" />
    <Compile Remove="04-bll\05-AdaptingManage\AdaptingManage_Instance.cs" />
  </ItemGroup>
 
  <ItemGroup>
    <ProjectReference Include="..\..\Dto\HStation.Dto.Assets.Core\HStation.Dto.Assets.Core.csproj" />
    <ProjectReference Include="..\..\Vmo\HStation.Vmo.Assets.Core\HStation.Vmo.Assets.Core.csproj" />
    <ProjectReference Include="..\HStation.BLL.Core\HStation.BLL.Core.csproj" />
  </ItemGroup>
 
</Project>