| 123456789101112131415161718192021222324252627282930 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net48</TargetFramework>
- <LangVersion>9</LangVersion>
- <ApplicationIcon>logo.ico</ApplicationIcon>
- <Platforms>AnyCPU;x64</Platforms>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <DefineConstants>DEBUG;TRACE</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
- <DefineConstants>DEBUG;TRACE</DefineConstants>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Expression.Blend.Sdk" Version="1.0.2" />
- <PackageReference Include="log4net" Version="2.0.12" />
- <PackageReference Include="Microsoft.Extensions.Logging" Version="7.0.0" />
- <PackageReference Include="SerialPortStream" Version="2.2.2" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\SHJX.Service.Common\SHJX.Service.Common.csproj" />
- <ProjectReference Include="..\SHJX.Service.Model\SHJX.Service.Model.csproj" />
- </ItemGroup>
- </Project>
|