| 123456789101112131415161718 | <Project Sdk="Microsoft.NET.Sdk">	<PropertyGroup>		<TargetFramework>net7.0</TargetFramework>		<ImplicitUsings>enable</ImplicitUsings>		<Nullable>disable</Nullable>		<RootNamespace>$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>	</PropertyGroup>	<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">		<DebugType>none</DebugType>		<DebugSymbols>false</DebugSymbols>	</PropertyGroup>	<ItemGroup>		<ProjectReference Include="..\Ips.Library.Basic\Ips.Library.Basic.csproj" />		<ProjectReference Include="..\Ips.Library.CliLib\Ips.Library.CliLib.csproj" />		<ProjectReference Include="..\Ips.Library.Entity\Ips.Library.Entity.csproj" />	</ItemGroup></Project>
 |