| 1234567891011121314151617181920212223 | <Project Sdk="Microsoft.NET.Sdk">	<PropertyGroup>		<OutputType>Library</OutputType>		<TargetFramework>net6.0-windows</TargetFramework>		<ImplicitUsings>enable</ImplicitUsings>		<Nullable>disable</Nullable>		<UseWindowsForms>true</UseWindowsForms>		<RootNamespace>Ips.Library.DxpLib</RootNamespace>	</PropertyGroup>	<ItemGroup>		<PackageReference Include="DevExpress.Win.Design" Version="23.2.3">		  <IncludeAssets>none</IncludeAssets>		</PackageReference>		<PackageReference Include="System.Data.SQLite.Core" Version="1.0.117" />	</ItemGroup>	<ItemGroup>		<ProjectReference Include="..\Ips.Library.Basic\Ips.Library.Basic.csproj" />		<ProjectReference Include="..\Ips.Library.DxpLib\Ips.Library.DxpLib.csproj" />		<ProjectReference Include="..\Ips.Library.Entity\Ips.Library.Entity.csproj" />	</ItemGroup></Project>
 |