123456789101112131415161718192021 |
- <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="..\..\..\ipslib\Ips.Library.SvrHub\Ips.Library.SvrHub.csproj" />
- <ProjectReference Include="..\Ips.Sps.Core\Ips.Sps.Core.csproj" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="DevExpress.Xpo" Version="23.2.3" PrivateAssets="all" />
- </ItemGroup>
- </Project>
|