Skip to content

Commit 54f0dc8

Browse files
authored
Update Nuget Packages for 375 Release (#657)
* fix build * Update GDS * Upgrade Aggregation * Update Quickstart samples * Update samples
1 parent b9e0ad2 commit 54f0dc8

File tree

71 files changed

+111
-104
lines changed

Some content is hidden

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

71 files changed

+111
-104
lines changed

Samples/Client.Net4/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ static void Main()
5656
application.LoadApplicationConfiguration(false).Wait();
5757

5858
// check the application certificate.
59-
bool certOK = application.CheckApplicationInstanceCertificate(false, 0).Result;
59+
bool certOK = application.CheckApplicationInstanceCertificates(false).Result;
6060
if (!certOK)
6161
{
6262
throw new Exception("Application instance certificate invalid!");

Samples/Client.Net4/UA Sample Client.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@
138138
<Version>8.0.2</Version>
139139
</PackageReference>
140140
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Bindings.Https">
141-
<Version>1.5.374.126</Version>
141+
<Version>1.5.375.443</Version>
142142
</PackageReference>
143143
<PackageReference Include="System.Net.Http">
144144
<Version>4.3.4</Version>

Samples/ClientControls.Net4/UA Client Controls.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1015,16 +1015,16 @@
10151015
</ItemGroup>
10161016
<ItemGroup>
10171017
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Core">
1018-
<Version>1.5.374.126</Version>
1018+
<Version>1.5.375.443</Version>
10191019
</PackageReference>
10201020
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Client">
1021-
<Version>1.5.374.126</Version>
1021+
<Version>1.5.375.443</Version>
10221022
</PackageReference>
10231023
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Client.ComplexTypes">
1024-
<Version>1.5.374.126</Version>
1024+
<Version>1.5.375.443</Version>
10251025
</PackageReference>
10261026
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Configuration">
1027-
<Version>1.5.374.126</Version>
1027+
<Version>1.5.375.443</Version>
10281028
</PackageReference>
10291029
</ItemGroup>
10301030
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />

Samples/Controls.Net4/UA Sample Controls.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -708,7 +708,7 @@
708708
</ItemGroup>
709709
<ItemGroup>
710710
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Server">
711-
<Version>1.5.374.126</Version>
711+
<Version>1.5.375.443</Version>
712712
</PackageReference>
713713
</ItemGroup>
714714
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />

Samples/GDS/Client/GlobalDiscoveryClient.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,10 +139,10 @@
139139
</ItemGroup>
140140
<ItemGroup>
141141
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Configuration">
142-
<Version>1.5.374.126</Version>
142+
<Version>1.5.375.443</Version>
143143
</PackageReference>
144144
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Gds.Client.Common">
145-
<Version>1.5.374.126</Version>
145+
<Version>1.5.375.443</Version>
146146
</PackageReference>
147147
</ItemGroup>
148148
<ItemGroup>

Samples/GDS/Client/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* ========================================================================
1+
/* ========================================================================
22
* Copyright (c) 2005-2019 The OPC Foundation, Inc. All rights reserved.
33
*
44
* OPC Foundation MIT License 1.00
@@ -57,7 +57,7 @@ static void Main()
5757
ApplicationConfiguration config = application.LoadApplicationConfiguration(false).Result;
5858

5959
// check the application certificate.
60-
application.CheckApplicationInstanceCertificate(false, 0).Wait();
60+
application.CheckApplicationInstanceCertificates(false).Wait();
6161

6262
// run the application interactively.
6363
Application.Run(new MainForm(application));

Samples/GDS/ClientControls/Controls/SelectGdsDialog.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* ========================================================================
1+
/* ========================================================================
22
* Copyright (c) 2005-2019 The OPC Foundation, Inc. All rights reserved.
33
*
44
* OPC Foundation MIT License 1.00
@@ -92,11 +92,11 @@ private void OkButton_Click(object sender, EventArgs e)
9292
{
9393
Cursor = Cursors.WaitCursor;
9494

95-
var endpoint = CoreClientUtils.SelectEndpoint(url, true, 5000);
95+
var endpoint = CoreClientUtils.SelectEndpoint(m_gds.Configuration, url, true, 5000);
9696

9797
if (UserNameCredentialsRB.Checked)
9898
{
99-
if (endpoint.FindUserTokenPolicy(UserTokenType.UserName, (string)null) == null)
99+
if (endpoint.FindUserTokenPolicy(UserTokenType.UserName, (string)null, null) == null)
100100
{
101101
throw new ArgumentException("Server does not support username/password user identity tokens.");
102102
}

Samples/GDS/ClientControls/Controls/SelectPushServerDialog.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* ========================================================================
1+
/* ========================================================================
22
* Copyright (c) 2005-2019 The OPC Foundation, Inc. All rights reserved.
33
*
44
* OPC Foundation MIT License 1.00
@@ -92,11 +92,11 @@ private void OkButton_Click(object sender, EventArgs e)
9292
{
9393
Cursor = Cursors.WaitCursor;
9494

95-
var endpoint = CoreClientUtils.SelectEndpoint(url, false, 5000);
95+
var endpoint = CoreClientUtils.SelectEndpoint(m_pushServer.Configuration, url, false, 5000);
9696

9797
if (UserNameCredentialsRB.Checked)
9898
{
99-
if (endpoint.FindUserTokenPolicy(UserTokenType.UserName, (string)null) == null)
99+
if (endpoint.FindUserTokenPolicy(UserTokenType.UserName, (string)null, null) == null)
100100
{
101101
throw new ArgumentException("Server does not support username/password user identity tokens.");
102102
}

Samples/GDS/ClientControls/GlobalDiscoveryClientControls.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,10 +217,10 @@
217217
</ItemGroup>
218218
<ItemGroup>
219219
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Client">
220-
<Version>1.5.374.126</Version>
220+
<Version>1.5.375.443</Version>
221221
</PackageReference>
222222
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Gds.Client.Common">
223-
<Version>1.5.374.126</Version>
223+
<Version>1.5.375.443</Version>
224224
</PackageReference>
225225
</ItemGroup>
226226
<ItemGroup>

Samples/GDS/ConsoleServer/NetCoreGlobalDiscoveryServer.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
</ItemGroup>
1313

1414
<ItemGroup>
15-
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.21.0" />
15+
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.21.1" />
1616
<PackageReference Include="Mono.Options" Version="6.12.0.148" />
17-
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Gds.Server.Common" Version="1.5.374.126" />
18-
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Configuration" Version="1.5.374.126" />
17+
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Gds.Server.Common" Version="1.5.375.443" />
18+
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Configuration" Version="1.5.375.443" />
1919
</ItemGroup>
2020

2121
</Project>

0 commit comments

Comments
 (0)