duheng
2024-07-23 3fec42c6383aa3b8d65f744a93b8a918d7cc6e02
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
<Project Sdk="Microsoft.NET.Sdk">
 
  <PropertyGroup>
    <TargetFramework>net6.0</TargetFramework>
    <ImplicitUsings>enable</ImplicitUsings>
    <Nullable>disable</Nullable>
  </PropertyGroup>
 
  <ItemGroup>
    <Compile Remove="bin\**" />
    <Compile Remove="obj\**" />
    <EmbeddedResource Remove="bin\**" />
    <EmbeddedResource Remove="obj\**" />
    <None Remove="bin\**" />
    <None Remove="obj\**" />
  </ItemGroup>
 
  <ItemGroup>
    <ProjectReference Include="..\..\Dto\HStation.Dto.Phart.Core\HStation.Dto.Phart.Core.csproj" />
    <ProjectReference Include="..\HStation.BLL.Core\HStation.BLL.Core.csproj" />
  </ItemGroup>
 
  <ItemGroup>
    <Folder Include="02-httpclient\" />
  </ItemGroup>
 
</Project>