Ips.Cfq.Core.csproj 689 B

123456789101112131415161718192021
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net7.0</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>disable</Nullable>
  6. </PropertyGroup>
  7. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  8. <DebugType>none</DebugType>
  9. <DebugSymbols>false</DebugSymbols>
  10. </PropertyGroup>
  11. <ItemGroup>
  12. <PackageReference Include="System.IO.Ports" Version="8.0.0" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <ProjectReference Include="..\..\..\ipslib\Ips.Library.Basic\Ips.Library.Basic.csproj" />
  16. <ProjectReference Include="..\..\..\ipslib\Ips.Library.CliLib\Ips.Library.CliLib.csproj" />
  17. </ItemGroup>
  18. </Project>