wanshenmean
2025-04-15 21cd52c5592aad3687be74599a932012d9dd77a4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<Project Sdk="Microsoft.NET.Sdk">
 
    <PropertyGroup>
        <TargetFramework>net6.0</TargetFramework>
        <ImplicitUsings>enable</ImplicitUsings>
        <Nullable>enable</Nullable>
        <Description>
            大版本更新,数据库字段修改
            1、原Dt_DispatchInfo表、Dt_DeviceInfo表的左外连接是通过对应表的JobGroup、DeviceType列去关联左外连接。
            由于2.1.0版本更新,会导致有一定的问题。
            在Dt_DeviceInfo表中添加DispatchId可空列,用来配置对应Dt_DispatchInfo中的数据。
            更新时请注意,如需更新,请及时更新数据库结构和数据。
 
            2024-12-23:路由表更新
 
            2025-01-02:添加JobBase中记录错误日志方法重载版本
 
            2025-01-02-002:添加注释
 
            2025-01-09:添加路由查询方法
 
            2025-01-16:添加Job有效期验证(App.ExpDateTime赋值可用)
 
            2025-02-18:添加多数据库配置
 
            2025-03-11:添加串口设备类型
        </Description>
        <Version>3.0.7</Version>
        <GenerateDocumentationFile>true</GenerateDocumentationFile>
    </PropertyGroup>
 
    <ItemGroup>
        <PackageReference Include="Quartz" Version="3.13.1" />
    </ItemGroup>
 
    <ItemGroup>
        <ProjectReference Include="..\WIDESEAWCS_Communicator\WIDESEAWCS_Communicator.csproj" />
        <ProjectReference Include="..\WIDESEAWCS_Core\WIDESEAWCS_Core.csproj" />
    </ItemGroup>
 
</Project>