1
lixiaojun
2025-01-03 754a5cd2a8b2a76e1c00cc45c89457eeb74637bf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<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="..\..\Vmo\HStation.Vmo.PhartRelation.Core\HStation.Vmo.PhartRelation.Core.csproj" />
    <ProjectReference Include="..\HStation.BLL.Assets.Core\HStation.BLL.Assets.Core.csproj" />
  </ItemGroup>
 
</Project>