| 1234567891011121314151617181920 | <Project Sdk="Microsoft.NET.Sdk">	<PropertyGroup>		<TargetFramework>net7.0-windows</TargetFramework>		<ImplicitUsings>enable</ImplicitUsings>		<Nullable>disable</Nullable>	</PropertyGroup>	<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">		<DebugType>none</DebugType>		<DebugSymbols>false</DebugSymbols>	</PropertyGroup>	<ItemGroup>		<ProjectReference Include="..\Ips.Sps.Core\Ips.Sps.Core.csproj" />	</ItemGroup>	<ItemGroup>		<PackageReference Include="DevExpress.Xpo" Version="23.2.3" PrivateAssets="all" />	</ItemGroup></Project>
 |