Ips.Sps.Data.csproj 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net7.0</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>disable</Nullable>
  6. <RootNamespace>Ips.Sps</RootNamespace>
  7. </PropertyGroup>
  8. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  9. <DebugType>none</DebugType>
  10. <DebugSymbols>false</DebugSymbols>
  11. </PropertyGroup>
  12. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  13. <NoWarn>1701;1702;CS9057</NoWarn>
  14. </PropertyGroup>
  15. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  16. <NoWarn>1701;1702;CS9057</NoWarn>
  17. </PropertyGroup>
  18. <ItemGroup>
  19. <PackageReference Include="DevExpress.Xpo" Version="24.1.6" PrivateAssets="all" />
  20. </ItemGroup>
  21. <ItemGroup>
  22. <ProjectReference Include="..\..\..\ipslib\Ips.Library.Basic\Ips.Library.Basic.csproj" />
  23. <ProjectReference Include="..\..\..\ipslib\Ips.Library.Entity\Ips.Library.Entity.csproj" />
  24. </ItemGroup>
  25. <ItemGroup>
  26. <Compile Update="Sats\Sat.cs">
  27. <SubType>Code</SubType>
  28. </Compile>
  29. </ItemGroup>
  30. </Project>