1 地震仪告警记录中故障次数隐藏;电力载波机和光电交换机的供电状态隐藏; 2 除漏水和保护板事件的数据按照浮点数解析,别的按照整数解析; 3 解决TCP Server和Client存在的问题,包括无法监测到客户端连接,无法监测到服务端断开等问题;
30 lines
863 B
XML
30 lines
863 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Library</OutputType>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<UseWPF>true</UseWPF>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="Assets\Fonts\iconfont.ttf" />
|
|
<None Remove="Assets\Images\Enlarge.png" />
|
|
<None Remove="Assets\Images\Narrow.png" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Resource Include="Assets\Fonts\iconfont.ttf">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Resource>
|
|
<Resource Include="Assets\Images\Enlarge.png">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Resource>
|
|
<Resource Include="Assets\Images\Narrow.png">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Resource>
|
|
</ItemGroup>
|
|
|
|
</Project>
|