SHJX.Service.ServerClient.csproj 1.1 KB

123456789101112131415161718192021222324252627282930
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net48</TargetFramework>
  4. <LangVersion>9</LangVersion>
  5. <ApplicationIcon>logo.ico</ApplicationIcon>
  6. <Platforms>AnyCPU;x64</Platforms>
  7. </PropertyGroup>
  8. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  9. <DefineConstants>DEBUG;TRACE</DefineConstants>
  10. </PropertyGroup>
  11. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  12. <DefineConstants>DEBUG;TRACE</DefineConstants>
  13. </PropertyGroup>
  14. <ItemGroup>
  15. <PackageReference Include="Expression.Blend.Sdk" Version="1.0.2" />
  16. <PackageReference Include="log4net" Version="2.0.12" />
  17. <PackageReference Include="Microsoft.Extensions.Logging" Version="7.0.0" />
  18. <PackageReference Include="SerialPortStream" Version="2.2.2" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <ProjectReference Include="..\SHJX.Service.Common\SHJX.Service.Common.csproj" />
  22. <ProjectReference Include="..\SHJX.Service.Model\SHJX.Service.Model.csproj" />
  23. </ItemGroup>
  24. </Project>