Skip to content

Commit 2a75a15

Browse files
committed
1.升级依赖2.优化表达式3.解决已知bug
1 parent 53c3623 commit 2a75a15

File tree

64 files changed

+97
-81
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+97
-81
lines changed

Diff for: IoTGateway.ViewModel/BasicData/DeviceVariableVMs/DeviceVariableVM.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ protected override void InitVM()
3939
AllMethods = deviceService.GetDriverMethods(Entity.DeviceId);
4040
}
4141

42-
if (AllMethods.Count() > 0)
42+
if (AllMethods?.Count() > 0)
4343
AllMethods[0].Selected = true;
4444
}
4545

Diff for: IoTGateway/IoTGateway.csproj

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<SatelliteResourceLanguages>zh-Hans,en</SatelliteResourceLanguages>
88
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
99
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
10-
<PlatformTarget>x86</PlatformTarget>
10+
<!--<PlatformTarget>x86</PlatformTarget>-->
1111
</PropertyGroup>
1212

1313
<ItemGroup>
@@ -19,10 +19,10 @@
1919

2020
<ItemGroup>
2121
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.14.0" />
22-
<PackageReference Include="MQTTnet" Version="3.1.1" />
23-
<PackageReference Include="MQTTnet.AspNetCore" Version="3.1.1" />
24-
<PackageReference Include="MQTTnet.Extensions.ManagedClient" Version="3.1.1" />
25-
<PackageReference Include="MQTTnet.Extensions.Rpc" Version="3.1.1" />
22+
<PackageReference Include="MQTTnet" Version="3.1.2" />
23+
<PackageReference Include="MQTTnet.AspNetCore" Version="3.1.2" />
24+
<PackageReference Include="MQTTnet.Extensions.ManagedClient" Version="3.1.2" />
25+
<PackageReference Include="MQTTnet.Extensions.Rpc" Version="3.1.2" />
2626
<PackageReference Include="System.IO.Ports" Version="6.0.0" />
2727
</ItemGroup>
2828

Diff for: IoTGateway/iotgateway.db

0 Bytes
Binary file not shown.

Diff for: Plugins/Drivers/DriverAllenBradley/DriverAllenBradley.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="IoTClient" Version="1.0.22" />
12+
<PackageReference Include="IoTClient" Version="1.0.28" />
1313
</ItemGroup>
1414

1515
<ItemGroup>

Diff for: Plugins/Drivers/DriverFanucHsl/DriverFanucHsl.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="HslCommunication" Version="11.0.0" />
12+
<PackageReference Include="HslCommunication" Version="11.0.2" />
1313
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
1414
</ItemGroup>
1515

Diff for: Plugins/Drivers/DriverMitsubishi/DriverMitsubishi.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="IoTClient" Version="1.0.22" />
12+
<PackageReference Include="IoTClient" Version="1.0.28" />
1313
</ItemGroup>
1414

1515
<ItemGroup>

Diff for: Plugins/Drivers/DriverOPCUaClient/DriverOPCUaClient.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Client" Version="1.4.367.75" />
12+
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Client" Version="1.4.369.30" />
1313
</ItemGroup>
1414

1515
<ItemGroup>

Diff for: Plugins/Drivers/DriverOmronFins/DriverOmronFins.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="IoTClient" Version="1.0.22" />
12+
<PackageReference Include="IoTClient" Version="1.0.28" />
1313
</ItemGroup>
1414

1515
<ItemGroup>

Diff for: Plugins/Plugin/DeviceThread.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ public void Dispose()
274274
//mysql会把一些符号转义,没找到原因,先临时处理下
275275
private string DealMysqlStr(string Expression)
276276
{
277-
return Expression.Replace("&lt;", ">").Replace("&gt;", "<").Replace("&amp;", "&");
277+
return Expression.Replace("&lt;", "<").Replace("&gt;", ">").Replace("&amp;", "&").Replace("&quot;", "\"");
278278
}
279279
}
280280

Diff for: Plugins/Plugin/Plugin.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="DynamicExpresso.Core" Version="2.10.0" />
10+
<PackageReference Include="DynamicExpresso.Core" Version="2.13.0" />
1111
<PackageReference Include="Mono.Options" Version="6.12.0.148" />
12-
<PackageReference Include="MQTTnet" Version="3.1.1" />
13-
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Server" Version="1.4.367.75" />
12+
<PackageReference Include="MQTTnet" Version="3.1.2" />
13+
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Server" Version="1.4.369.30" />
1414
</ItemGroup>
1515

1616
<ItemGroup>

Diff for: WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/WalkingTec.Mvvm.Mvc.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
<PackageReference Include="Microsoft.AspNetCore.SpaServices.Extensions" Version="6.0.1" />
6565
<PackageReference Include="SixLabors.ImageSharp" Version="1.0.4" />
6666
<PackageReference Include="SixLabors.ImageSharp.Drawing" Version="1.0.0-beta13" />
67-
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
67+
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.3.2" />
6868
<PackageReference Include="VueCliMiddleware" Version="6.0.0" />
6969
</ItemGroup>
7070

Diff for: drivers/net6.0/DriverAllenBradley.deps.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,21 @@
88
".NETCoreApp,Version=v6.0": {
99
"DriverAllenBradley/1.0.0": {
1010
"dependencies": {
11-
"IoTClient": "1.0.22",
11+
"IoTClient": "1.0.28",
1212
"PluginInterface": "1.0.0"
1313
},
1414
"runtime": {
1515
"DriverAllenBradley.dll": {}
1616
}
1717
},
18-
"IoTClient/1.0.22": {
18+
"IoTClient/1.0.28": {
1919
"dependencies": {
2020
"System.IO.Ports": "4.6.0"
2121
},
2222
"runtime": {
2323
"lib/netstandard2.0/IoTClient.dll": {
24-
"assemblyVersion": "1.0.22.0",
25-
"fileVersion": "1.0.22.0"
24+
"assemblyVersion": "1.0.28.0",
25+
"fileVersion": "1.0.28.0"
2626
}
2727
}
2828
},
@@ -140,12 +140,12 @@
140140
"serviceable": false,
141141
"sha512": ""
142142
},
143-
"IoTClient/1.0.22": {
143+
"IoTClient/1.0.28": {
144144
"type": "package",
145145
"serviceable": true,
146-
"sha512": "sha512-UqkeoTFWpDiskvtuPiwdk7XLkvb2no1iJSE0sJusjccapbs6J5GPCf/0eGqu4ftlrHxG8E4fd7lgTA1R5Ztbgw==",
147-
"path": "iotclient/1.0.22",
148-
"hashPath": "iotclient.1.0.22.nupkg.sha512"
146+
"sha512": "sha512-C9H2L6dkYE2zk3XPNhYIQgPzu+vfaDUHWao3xt4kR0/PxHO7LP94i2hnJqh+tmB/+k2wULKkdy+g1RbJEIxOvQ==",
147+
"path": "iotclient/1.0.28",
148+
"hashPath": "iotclient.1.0.28.nupkg.sha512"
149149
},
150150
"Microsoft.NETCore.Platforms/3.0.0": {
151151
"type": "package",

Diff for: drivers/net6.0/DriverAllenBradley.dll

0 Bytes
Binary file not shown.

Diff for: drivers/net6.0/DriverAllenBradley.pdb

20 Bytes
Binary file not shown.

Diff for: drivers/net6.0/DriverFanuc.dll

0 Bytes
Binary file not shown.

Diff for: drivers/net6.0/DriverFanuc.pdb

16 Bytes
Binary file not shown.

Diff for: drivers/net6.0/DriverFanucHsl.deps.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,23 @@
88
".NETCoreApp,Version=v6.0": {
99
"DriverFanucHsl/1.0.0": {
1010
"dependencies": {
11-
"HslCommunication": "11.0.0",
11+
"HslCommunication": "11.0.2",
1212
"Newtonsoft.Json": "13.0.1",
1313
"PluginInterface": "1.0.0"
1414
},
1515
"runtime": {
1616
"DriverFanucHsl.dll": {}
1717
}
1818
},
19-
"HslCommunication/11.0.0": {
19+
"HslCommunication/11.0.2": {
2020
"dependencies": {
2121
"Newtonsoft.Json": "13.0.1",
2222
"System.IO.Ports": "4.7.0"
2323
},
2424
"runtime": {
2525
"lib/netstandard2.1/HslCommunication.dll": {
26-
"assemblyVersion": "11.0.0.0",
27-
"fileVersion": "11.0.0.0"
26+
"assemblyVersion": "11.0.2.0",
27+
"fileVersion": "11.0.2.0"
2828
}
2929
}
3030
},
@@ -142,12 +142,12 @@
142142
"serviceable": false,
143143
"sha512": ""
144144
},
145-
"HslCommunication/11.0.0": {
145+
"HslCommunication/11.0.2": {
146146
"type": "package",
147147
"serviceable": true,
148-
"sha512": "sha512-9JcbMka4dQ8251DCXIP9JExrIqmnt6b6/pX1ZFsdQ7/GQsPtfGMshvQDFUuSx8xf9+gADw3sFu5CDcpbFSQpZg==",
149-
"path": "hslcommunication/11.0.0",
150-
"hashPath": "hslcommunication.11.0.0.nupkg.sha512"
148+
"sha512": "sha512-5nZiUlp9yoZXjV0M+qGbIlyp2Zoyo8wHL2BY7BXe0PW4J7CdCxnJt+my0K/T5+AyXreM+MO+HvC1K0HIKVH42A==",
149+
"path": "hslcommunication/11.0.2",
150+
"hashPath": "hslcommunication.11.0.2.nupkg.sha512"
151151
},
152152
"Microsoft.NETCore.Platforms/3.1.0": {
153153
"type": "package",

Diff for: drivers/net6.0/DriverFanucHsl.dll

0 Bytes
Binary file not shown.

Diff for: drivers/net6.0/DriverFanucHsl.pdb

20 Bytes
Binary file not shown.

Diff for: drivers/net6.0/DriverMTConnect.dll

0 Bytes
Binary file not shown.

Diff for: drivers/net6.0/DriverMTConnect.pdb

20 Bytes
Binary file not shown.

Diff for: drivers/net6.0/DriverMitsubishi.deps.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,21 @@
88
".NETCoreApp,Version=v6.0": {
99
"DriverMitsubishi/1.0.0": {
1010
"dependencies": {
11-
"IoTClient": "1.0.22",
11+
"IoTClient": "1.0.28",
1212
"PluginInterface": "1.0.0"
1313
},
1414
"runtime": {
1515
"DriverMitsubishi.dll": {}
1616
}
1717
},
18-
"IoTClient/1.0.22": {
18+
"IoTClient/1.0.28": {
1919
"dependencies": {
2020
"System.IO.Ports": "4.6.0"
2121
},
2222
"runtime": {
2323
"lib/netstandard2.0/IoTClient.dll": {
24-
"assemblyVersion": "1.0.22.0",
25-
"fileVersion": "1.0.22.0"
24+
"assemblyVersion": "1.0.28.0",
25+
"fileVersion": "1.0.28.0"
2626
}
2727
}
2828
},
@@ -140,12 +140,12 @@
140140
"serviceable": false,
141141
"sha512": ""
142142
},
143-
"IoTClient/1.0.22": {
143+
"IoTClient/1.0.28": {
144144
"type": "package",
145145
"serviceable": true,
146-
"sha512": "sha512-UqkeoTFWpDiskvtuPiwdk7XLkvb2no1iJSE0sJusjccapbs6J5GPCf/0eGqu4ftlrHxG8E4fd7lgTA1R5Ztbgw==",
147-
"path": "iotclient/1.0.22",
148-
"hashPath": "iotclient.1.0.22.nupkg.sha512"
146+
"sha512": "sha512-C9H2L6dkYE2zk3XPNhYIQgPzu+vfaDUHWao3xt4kR0/PxHO7LP94i2hnJqh+tmB/+k2wULKkdy+g1RbJEIxOvQ==",
147+
"path": "iotclient/1.0.28",
148+
"hashPath": "iotclient.1.0.28.nupkg.sha512"
149149
},
150150
"Microsoft.NETCore.Platforms/3.0.0": {
151151
"type": "package",

Diff for: drivers/net6.0/DriverMitsubishi.dll

0 Bytes
Binary file not shown.

Diff for: drivers/net6.0/DriverMitsubishi.pdb

24 Bytes
Binary file not shown.

Diff for: drivers/net6.0/DriverModbusMaster.dll

0 Bytes
Binary file not shown.

Diff for: drivers/net6.0/DriverModbusMaster.pdb

84 Bytes
Binary file not shown.

Diff for: drivers/net6.0/DriverOPCUaClient.deps.json

+49-33
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,21 @@
88
".NETCoreApp,Version=v6.0": {
99
"DriverOPCUaClient/1.0.0": {
1010
"dependencies": {
11-
"OPCFoundation.NetStandard.Opc.Ua.Client": "1.4.367.75",
11+
"OPCFoundation.NetStandard.Opc.Ua.Client": "1.4.369.30",
1212
"PluginInterface": "1.0.0"
1313
},
1414
"runtime": {
1515
"DriverOPCUaClient.dll": {}
1616
}
1717
},
18+
"Microsoft.Extensions.Logging.Abstractions/6.0.1": {
19+
"runtime": {
20+
"lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
21+
"assemblyVersion": "6.0.0.0",
22+
"fileVersion": "6.0.322.12309"
23+
}
24+
}
25+
},
1826
"Newtonsoft.Json/13.0.1": {
1927
"runtime": {
2028
"lib/netstandard2.0/Newtonsoft.Json.dll": {
@@ -23,49 +31,50 @@
2331
}
2432
}
2533
},
26-
"OPCFoundation.NetStandard.Opc.Ua.Client/1.4.367.75": {
34+
"OPCFoundation.NetStandard.Opc.Ua.Client/1.4.369.30": {
2735
"dependencies": {
28-
"OPCFoundation.NetStandard.Opc.Ua.Configuration": "1.4.367.75",
29-
"OPCFoundation.NetStandard.Opc.Ua.Core": "1.4.367.75"
36+
"OPCFoundation.NetStandard.Opc.Ua.Configuration": "1.4.369.30",
37+
"OPCFoundation.NetStandard.Opc.Ua.Core": "1.4.369.30"
3038
},
3139
"runtime": {
3240
"lib/net6.0/Opc.Ua.Client.dll": {
33-
"assemblyVersion": "1.4.367.0",
34-
"fileVersion": "1.4.367.75"
41+
"assemblyVersion": "1.4.369.0",
42+
"fileVersion": "1.4.369.30"
3543
}
3644
}
3745
},
38-
"OPCFoundation.NetStandard.Opc.Ua.Configuration/1.4.367.75": {
46+
"OPCFoundation.NetStandard.Opc.Ua.Configuration/1.4.369.30": {
3947
"dependencies": {
40-
"OPCFoundation.NetStandard.Opc.Ua.Core": "1.4.367.75"
48+
"OPCFoundation.NetStandard.Opc.Ua.Core": "1.4.369.30"
4149
},
4250
"runtime": {
4351
"lib/net6.0/Opc.Ua.Configuration.dll": {
44-
"assemblyVersion": "1.4.367.0",
45-
"fileVersion": "1.4.367.75"
52+
"assemblyVersion": "1.4.369.0",
53+
"fileVersion": "1.4.369.30"
4654
}
4755
}
4856
},
49-
"OPCFoundation.NetStandard.Opc.Ua.Core/1.4.367.75": {
57+
"OPCFoundation.NetStandard.Opc.Ua.Core/1.4.369.30": {
5058
"dependencies": {
59+
"Microsoft.Extensions.Logging.Abstractions": "6.0.1",
5160
"Newtonsoft.Json": "13.0.1",
52-
"OPCFoundation.NetStandard.Opc.Ua.Security.Certificates": "1.4.367.75"
61+
"OPCFoundation.NetStandard.Opc.Ua.Security.Certificates": "1.4.369.30"
5362
},
5463
"runtime": {
5564
"lib/net6.0/Opc.Ua.Core.dll": {
56-
"assemblyVersion": "1.4.367.0",
57-
"fileVersion": "1.4.367.75"
65+
"assemblyVersion": "1.4.369.0",
66+
"fileVersion": "1.4.369.30"
5867
}
5968
}
6069
},
61-
"OPCFoundation.NetStandard.Opc.Ua.Security.Certificates/1.4.367.75": {
70+
"OPCFoundation.NetStandard.Opc.Ua.Security.Certificates/1.4.369.30": {
6271
"dependencies": {
6372
"System.Formats.Asn1": "6.0.0"
6473
},
6574
"runtime": {
6675
"lib/net6.0/Opc.Ua.Security.Certificates.dll": {
67-
"assemblyVersion": "1.4.367.0",
68-
"fileVersion": "1.4.367.75"
76+
"assemblyVersion": "1.4.369.0",
77+
"fileVersion": "1.4.369.30"
6978
}
7079
}
7180
},
@@ -86,40 +95,47 @@
8695
"serviceable": false,
8796
"sha512": ""
8897
},
98+
"Microsoft.Extensions.Logging.Abstractions/6.0.1": {
99+
"type": "package",
100+
"serviceable": true,
101+
"sha512": "sha512-dzB2Cgg+JmrouhjkcQGzSFjjvpwlq353i8oBQO2GWNjCXSzhbtBRUf28HSauWe7eib3wYOdb3tItdjRwAdwCSg==",
102+
"path": "microsoft.extensions.logging.abstractions/6.0.1",
103+
"hashPath": "microsoft.extensions.logging.abstractions.6.0.1.nupkg.sha512"
104+
},
89105
"Newtonsoft.Json/13.0.1": {
90106
"type": "package",
91107
"serviceable": true,
92108
"sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
93109
"path": "newtonsoft.json/13.0.1",
94110
"hashPath": "newtonsoft.json.13.0.1.nupkg.sha512"
95111
},
96-
"OPCFoundation.NetStandard.Opc.Ua.Client/1.4.367.75": {
112+
"OPCFoundation.NetStandard.Opc.Ua.Client/1.4.369.30": {
97113
"type": "package",
98114
"serviceable": true,
99-
"sha512": "sha512-Y1BF7xoDS0LPz5ksbfsKJbMvbeE4sXazgHwadfSTtrCixOzxwzZrBVo0k+LmI5z13uzIq0mMOA6mTNcdgnAxzA==",
100-
"path": "opcfoundation.netstandard.opc.ua.client/1.4.367.75",
101-
"hashPath": "opcfoundation.netstandard.opc.ua.client.1.4.367.75.nupkg.sha512"
115+
"sha512": "sha512-xJHIazzYwIjixJEm/3QSqobySQilJ6VDIAnkNsmSAn5N43AtB0mV5anLT+tg3BDPznYL5hIINIm/4Gt9kSWarQ==",
116+
"path": "opcfoundation.netstandard.opc.ua.client/1.4.369.30",
117+
"hashPath": "opcfoundation.netstandard.opc.ua.client.1.4.369.30.nupkg.sha512"
102118
},
103-
"OPCFoundation.NetStandard.Opc.Ua.Configuration/1.4.367.75": {
119+
"OPCFoundation.NetStandard.Opc.Ua.Configuration/1.4.369.30": {
104120
"type": "package",
105121
"serviceable": true,
106-
"sha512": "sha512-4VtYqVSpmm4Pxfy5w40GJxuVLSBeTeyZwUf8dPp//g3Op4D0NCl5M7NYS5LW7a8FFJZHeRBfLsnaKmNkRFRhTA==",
107-
"path": "opcfoundation.netstandard.opc.ua.configuration/1.4.367.75",
108-
"hashPath": "opcfoundation.netstandard.opc.ua.configuration.1.4.367.75.nupkg.sha512"
122+
"sha512": "sha512-QXLG2eM4caw6Q9a50Pj3RjXFZa8lWQWu560+KtZ2NlHc4Bq4dRHkThK5JnP9yKcB6jsCSWKzIuh9fwoy+VO8Cw==",
123+
"path": "opcfoundation.netstandard.opc.ua.configuration/1.4.369.30",
124+
"hashPath": "opcfoundation.netstandard.opc.ua.configuration.1.4.369.30.nupkg.sha512"
109125
},
110-
"OPCFoundation.NetStandard.Opc.Ua.Core/1.4.367.75": {
126+
"OPCFoundation.NetStandard.Opc.Ua.Core/1.4.369.30": {
111127
"type": "package",
112128
"serviceable": true,
113-
"sha512": "sha512-6yyKF1Kp/doU1P9iVDZ5rIaw2DQJeG5ce8uEGRqX2HnvD+TBMgKXcs0t2WxRJ47ISwcGzrqjONt/XFDxPv1vQQ==",
114-
"path": "opcfoundation.netstandard.opc.ua.core/1.4.367.75",
115-
"hashPath": "opcfoundation.netstandard.opc.ua.core.1.4.367.75.nupkg.sha512"
129+
"sha512": "sha512-SGFmPdZVFw42wLzi60Kdl4o3S6BFkNi02qgg1fr/3gDiYA5ZWdDAN0odZWtFoDK6eDQHSPjQv/r+nMBigoTuFw==",
130+
"path": "opcfoundation.netstandard.opc.ua.core/1.4.369.30",
131+
"hashPath": "opcfoundation.netstandard.opc.ua.core.1.4.369.30.nupkg.sha512"
116132
},
117-
"OPCFoundation.NetStandard.Opc.Ua.Security.Certificates/1.4.367.75": {
133+
"OPCFoundation.NetStandard.Opc.Ua.Security.Certificates/1.4.369.30": {
118134
"type": "package",
119135
"serviceable": true,
120-
"sha512": "sha512-Az6TN1I0WfZnbUZG3OHJ8PEKxAk+jEm7Tm198xhLahP+wuGOYXReZeqK1pJGZB/oXybExUFYfryRGjZxBgVqOA==",
121-
"path": "opcfoundation.netstandard.opc.ua.security.certificates/1.4.367.75",
122-
"hashPath": "opcfoundation.netstandard.opc.ua.security.certificates.1.4.367.75.nupkg.sha512"
136+
"sha512": "sha512-SkyfvLeunJK008ysVg3Q3al77Q3rMJoqAti7MTjDnE/7viXy/IxSKGA24Foc+vIE4LmPqpdyKpgUE5j4nH+egQ==",
137+
"path": "opcfoundation.netstandard.opc.ua.security.certificates/1.4.369.30",
138+
"hashPath": "opcfoundation.netstandard.opc.ua.security.certificates.1.4.369.30.nupkg.sha512"
123139
},
124140
"System.Formats.Asn1/6.0.0": {
125141
"type": "package",

Diff for: drivers/net6.0/DriverOPCUaClient.dll

0 Bytes
Binary file not shown.

Diff for: drivers/net6.0/DriverOPCUaClient.pdb

92 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)