From 5823ae347960a02117b1a4a718630b7cc3b4f7f0 Mon Sep 17 00:00:00 2001 From: Roman Ettlinger Date: Mon, 26 Jan 2026 05:38:45 +0100 Subject: [PATCH] update packages to 1.5.378 --- Samples/Client.Net4/UA Sample Client.csproj | 7 +++++-- Samples/ClientControls.Net4/UA Client Controls.csproj | 10 +++++----- Samples/Controls.Net4/Sessions/SessionTreeCtrl.cs | 3 +-- Samples/Controls.Net4/UA Sample Controls.csproj | 7 +++++-- .../Client/Controls/ApplicationTrustListControl.cs | 2 +- Samples/GDS/Client/GlobalDiscoveryClient.csproj | 7 +++++-- .../GlobalDiscoveryClientControls.csproj | 7 +++++-- .../ConsoleServer/NetCoreGlobalDiscoveryServer.csproj | 6 +++--- Samples/GDS/Server/GlobalDiscoveryServer.csproj | 6 +++--- Samples/Opc.Ua.Sample/Opc.Ua.Sample.csproj | 6 +++--- Samples/ReferenceClient/Reference Client.csproj | 11 +++++++---- Samples/ReferenceServer/Reference Server.csproj | 9 ++++++--- Samples/Server.Net4/UA Sample Server.csproj | 6 +++--- Samples/ServerControls.Net4/UA Server Controls.csproj | 8 ++++---- Workshop/Aggregation/Client/Aggregation Client.csproj | 4 ++-- .../ConsoleAggregationServer.csproj | 8 ++++---- Workshop/Aggregation/Server/Aggregation Server.csproj | 10 +++++----- .../Client/AlarmCondition Client.csproj | 4 ++-- .../Server/AlarmCondition Server.csproj | 4 ++-- Workshop/Boiler/Client/Boiler Client.csproj | 4 ++-- Workshop/Boiler/Server/Boiler Server.csproj | 4 ++-- Workshop/Common/Quickstart Library.csproj | 5 ++++- Workshop/DataAccess/Client/DataAccess Client.csproj | 4 ++-- Workshop/DataAccess/Server/DataAccess Server.csproj | 4 ++-- Workshop/DataTypes/Client/DataTypes Client.csproj | 4 ++-- Workshop/DataTypes/Client/Program.cs | 5 +++-- Workshop/DataTypes/Common/DataTypes Library.csproj | 5 ++++- Workshop/DataTypes/Server/DataTypes Server.csproj | 4 ++-- Workshop/Empty/Client/Empty Client.csproj | 4 ++-- Workshop/Empty/Server/Empty Server.csproj | 4 ++-- .../Client/HistoricalAccess Client.csproj | 4 ++-- .../Server/HistoricalAccess Server.csproj | 4 ++-- .../HistoricalAccess/Tester/Aggregate Tester.csproj | 6 +++--- .../Client/HistoricalEvents Client.csproj | 4 ++-- .../Server/HistoricalEvents Server.csproj | 4 ++-- Workshop/Methods/Client/Methods Client.csproj | 4 ++-- Workshop/Methods/Server/Methods Server.csproj | 4 ++-- Workshop/PerfTest/Client/PerfTest Client.csproj | 4 ++-- Workshop/PerfTest/Server/PerfTest Server.csproj | 4 ++-- .../SimpleEvents/Client/SimpleEvents Client.csproj | 4 ++-- .../SimpleEvents/Server/SimpleEvents Server.csproj | 4 ++-- .../Client/UserAuthentication Client.csproj | 4 ++-- .../Server/UserAuthentication Server.csproj | 4 ++-- Workshop/Views/Client/Views Client.csproj | 4 ++-- Workshop/Views/Server/Views Server.csproj | 4 ++-- 45 files changed, 129 insertions(+), 105 deletions(-) diff --git a/Samples/Client.Net4/UA Sample Client.csproj b/Samples/Client.Net4/UA Sample Client.csproj index 461631caa..4ed08a186 100644 --- a/Samples/Client.Net4/UA Sample Client.csproj +++ b/Samples/Client.Net4/UA Sample Client.csproj @@ -137,10 +137,13 @@ - 10.0.0 + 10.0.2 + + + 10.0.2 - 1.5.378.11-preview + 1.5.378.101-preview 4.3.4 diff --git a/Samples/ClientControls.Net4/UA Client Controls.csproj b/Samples/ClientControls.Net4/UA Client Controls.csproj index 3773b6ed1..f412ffbcc 100644 --- a/Samples/ClientControls.Net4/UA Client Controls.csproj +++ b/Samples/ClientControls.Net4/UA Client Controls.csproj @@ -1017,19 +1017,19 @@ - 10.0.0 + 10.0.2 - 1.5.378.11-preview + 1.5.378.101-preview - 1.5.378.11-preview + 1.5.378.101-preview - 1.5.378.11-preview + 1.5.378.101-preview - 1.5.378.11-preview + 1.5.378.101-preview diff --git a/Samples/Controls.Net4/Sessions/SessionTreeCtrl.cs b/Samples/Controls.Net4/Sessions/SessionTreeCtrl.cs index e69804fb0..53aaa7030 100644 --- a/Samples/Controls.Net4/Sessions/SessionTreeCtrl.cs +++ b/Samples/Controls.Net4/Sessions/SessionTreeCtrl.cs @@ -194,8 +194,7 @@ public async Task ConnectAsync(ConfiguredEndpoint endpoint, ITelemetryC m_endpoint = endpoint; // copy the message context. - m_messageContext = m_configuration.CreateMessageContext(true); - + m_messageContext = m_configuration.CreateMessageContext(); X509Certificate2 clientCertificate = null; X509Certificate2Collection clientCertificateChain = null; diff --git a/Samples/Controls.Net4/UA Sample Controls.csproj b/Samples/Controls.Net4/UA Sample Controls.csproj index fbbc0ee11..db65dc62d 100644 --- a/Samples/Controls.Net4/UA Sample Controls.csproj +++ b/Samples/Controls.Net4/UA Sample Controls.csproj @@ -699,11 +699,14 @@ + + 10.0.2 + - 1.5.378.11-preview + 1.5.378.101-preview - 1.5.378.11-preview + 1.5.378.101-preview diff --git a/Samples/GDS/Client/Controls/ApplicationTrustListControl.cs b/Samples/GDS/Client/Controls/ApplicationTrustListControl.cs index c26f925ca..4ab8d45a4 100644 --- a/Samples/GDS/Client/Controls/ApplicationTrustListControl.cs +++ b/Samples/GDS/Client/Controls/ApplicationTrustListControl.cs @@ -196,7 +196,7 @@ private async Task PullFromGdsAsync(bool deleteBeforeAdd, CancellationToken ct = return; } - var trustList = await m_gds.ReadTrustListAsync(trustListId, ct); + var trustList = await m_gds.ReadTrustListAsync(trustListId, 0, ct); if (m_application.RegistrationType == RegistrationType.ServerPush) { diff --git a/Samples/GDS/Client/GlobalDiscoveryClient.csproj b/Samples/GDS/Client/GlobalDiscoveryClient.csproj index 9cec66e51..270f6f13c 100644 --- a/Samples/GDS/Client/GlobalDiscoveryClient.csproj +++ b/Samples/GDS/Client/GlobalDiscoveryClient.csproj @@ -140,11 +140,14 @@ + + 10.0.2 + - 1.5.378.11-preview + 1.5.378.101-preview - 1.5.378.11-preview + 1.5.378.101-preview diff --git a/Samples/GDS/ClientControls/GlobalDiscoveryClientControls.csproj b/Samples/GDS/ClientControls/GlobalDiscoveryClientControls.csproj index ef0267f27..5cdf2623e 100644 --- a/Samples/GDS/ClientControls/GlobalDiscoveryClientControls.csproj +++ b/Samples/GDS/ClientControls/GlobalDiscoveryClientControls.csproj @@ -218,11 +218,14 @@ + + 10.0.2 + - 1.5.378.11-preview + 1.5.378.101-preview - 1.5.378.11-preview + 1.5.378.101-preview diff --git a/Samples/GDS/ConsoleServer/NetCoreGlobalDiscoveryServer.csproj b/Samples/GDS/ConsoleServer/NetCoreGlobalDiscoveryServer.csproj index af7f463d8..4aac4683f 100644 --- a/Samples/GDS/ConsoleServer/NetCoreGlobalDiscoveryServer.csproj +++ b/Samples/GDS/ConsoleServer/NetCoreGlobalDiscoveryServer.csproj @@ -12,11 +12,11 @@ - + - - + + diff --git a/Samples/GDS/Server/GlobalDiscoveryServer.csproj b/Samples/GDS/Server/GlobalDiscoveryServer.csproj index fad3bc000..a6483b43d 100644 --- a/Samples/GDS/Server/GlobalDiscoveryServer.csproj +++ b/Samples/GDS/Server/GlobalDiscoveryServer.csproj @@ -235,13 +235,13 @@ 6.5.1 - 10.0.0 + 10.0.2 - 1.5.378.11-preview + 1.5.378.101-preview - 1.5.378.11-preview + 1.5.378.101-preview diff --git a/Samples/Opc.Ua.Sample/Opc.Ua.Sample.csproj b/Samples/Opc.Ua.Sample/Opc.Ua.Sample.csproj index 37ee8ee39..7e11b62e7 100644 --- a/Samples/Opc.Ua.Sample/Opc.Ua.Sample.csproj +++ b/Samples/Opc.Ua.Sample/Opc.Ua.Sample.csproj @@ -18,9 +18,9 @@ - - - + + + diff --git a/Samples/ReferenceClient/Reference Client.csproj b/Samples/ReferenceClient/Reference Client.csproj index c3256a21b..0ca7521c3 100644 --- a/Samples/ReferenceClient/Reference Client.csproj +++ b/Samples/ReferenceClient/Reference Client.csproj @@ -128,17 +128,20 @@ + + 10.0.2 + - 1.5.378.11-preview + 1.5.378.101-preview - 1.5.378.11-preview + 1.5.378.101-preview - 1.5.378.11-preview + 1.5.378.101-preview - 1.5.378.11-preview + 1.5.378.101-preview diff --git a/Samples/ReferenceServer/Reference Server.csproj b/Samples/ReferenceServer/Reference Server.csproj index daedcdd6f..4a50708db 100644 --- a/Samples/ReferenceServer/Reference Server.csproj +++ b/Samples/ReferenceServer/Reference Server.csproj @@ -139,14 +139,17 @@ + + 10.0.2 + - 1.5.378.11-preview + 1.5.378.101-preview - 1.5.378.11-preview + 1.5.378.101-preview - 1.5.378.2-preview + 1.5.378.101-preview 4.3.0 diff --git a/Samples/Server.Net4/UA Sample Server.csproj b/Samples/Server.Net4/UA Sample Server.csproj index 4010bf390..27486fc7c 100644 --- a/Samples/Server.Net4/UA Sample Server.csproj +++ b/Samples/Server.Net4/UA Sample Server.csproj @@ -145,13 +145,13 @@ - 10.0.0 + 10.0.2 - 10.0.0 + 10.0.2 - 1.5.378.11-preview + 1.5.378.101-preview diff --git a/Samples/ServerControls.Net4/UA Server Controls.csproj b/Samples/ServerControls.Net4/UA Server Controls.csproj index 97fb1eb39..fa2274499 100644 --- a/Samples/ServerControls.Net4/UA Server Controls.csproj +++ b/Samples/ServerControls.Net4/UA Server Controls.csproj @@ -150,16 +150,16 @@ - 10.0.0 + 10.0.2 - 1.5.378.11-preview + 1.5.378.101-preview - 1.5.378.11-preview + 1.5.378.101-preview - 1.5.378.11-preview + 1.5.378.101-preview diff --git a/Workshop/Aggregation/Client/Aggregation Client.csproj b/Workshop/Aggregation/Client/Aggregation Client.csproj index 6295a5d21..9ec9d866d 100644 --- a/Workshop/Aggregation/Client/Aggregation Client.csproj +++ b/Workshop/Aggregation/Client/Aggregation Client.csproj @@ -136,10 +136,10 @@ - 10.0.0 + 10.0.2 - 1.5.378.11-preview + 1.5.378.101-preview diff --git a/Workshop/Aggregation/ConsoleAggregationServer/ConsoleAggregationServer.csproj b/Workshop/Aggregation/ConsoleAggregationServer/ConsoleAggregationServer.csproj index 35bd22c0d..31ba8c4a1 100644 --- a/Workshop/Aggregation/ConsoleAggregationServer/ConsoleAggregationServer.csproj +++ b/Workshop/Aggregation/ConsoleAggregationServer/ConsoleAggregationServer.csproj @@ -48,15 +48,15 @@ - - - + + + - + diff --git a/Workshop/Aggregation/Server/Aggregation Server.csproj b/Workshop/Aggregation/Server/Aggregation Server.csproj index 8fa57dfed..65d5e9182 100644 --- a/Workshop/Aggregation/Server/Aggregation Server.csproj +++ b/Workshop/Aggregation/Server/Aggregation Server.csproj @@ -131,19 +131,19 @@ - 10.0.0 + 10.0.2 - 1.5.378.11-preview + 1.5.378.101-preview - 1.5.378.11-preview + 1.5.378.101-preview - 1.5.378.11-preview + 1.5.378.101-preview - 1.5.378.11-preview + 1.5.378.101-preview diff --git a/Workshop/AlarmCondition/Client/AlarmCondition Client.csproj b/Workshop/AlarmCondition/Client/AlarmCondition Client.csproj index 822483671..4de633b66 100644 --- a/Workshop/AlarmCondition/Client/AlarmCondition Client.csproj +++ b/Workshop/AlarmCondition/Client/AlarmCondition Client.csproj @@ -217,10 +217,10 @@ - 10.0.0 + 10.0.2 - 1.5.378.11-preview + 1.5.378.101-preview diff --git a/Workshop/AlarmCondition/Server/AlarmCondition Server.csproj b/Workshop/AlarmCondition/Server/AlarmCondition Server.csproj index 2c5cf7488..078403742 100644 --- a/Workshop/AlarmCondition/Server/AlarmCondition Server.csproj +++ b/Workshop/AlarmCondition/Server/AlarmCondition Server.csproj @@ -180,10 +180,10 @@ - 10.0.0 + 10.0.2 - 1.5.378.11-preview + 1.5.378.101-preview diff --git a/Workshop/Boiler/Client/Boiler Client.csproj b/Workshop/Boiler/Client/Boiler Client.csproj index f9c5fbe6a..9394e94a6 100644 --- a/Workshop/Boiler/Client/Boiler Client.csproj +++ b/Workshop/Boiler/Client/Boiler Client.csproj @@ -143,10 +143,10 @@ - 10.0.0 + 10.0.2 - 1.5.378.11-preview + 1.5.378.101-preview diff --git a/Workshop/Boiler/Server/Boiler Server.csproj b/Workshop/Boiler/Server/Boiler Server.csproj index ace8f71a5..97ac549cb 100644 --- a/Workshop/Boiler/Server/Boiler Server.csproj +++ b/Workshop/Boiler/Server/Boiler Server.csproj @@ -141,10 +141,10 @@ - 10.0.0 + 10.0.2 - 1.5.378.11-preview + 1.5.378.101-preview diff --git a/Workshop/Common/Quickstart Library.csproj b/Workshop/Common/Quickstart Library.csproj index 8a1b7e857..87dc9af3d 100644 --- a/Workshop/Common/Quickstart Library.csproj +++ b/Workshop/Common/Quickstart Library.csproj @@ -132,8 +132,11 @@ + + 10.0.2 + - 1.5.378.11-preview + 1.5.378.101-preview diff --git a/Workshop/DataAccess/Client/DataAccess Client.csproj b/Workshop/DataAccess/Client/DataAccess Client.csproj index 8df214828..9eb318a5e 100644 --- a/Workshop/DataAccess/Client/DataAccess Client.csproj +++ b/Workshop/DataAccess/Client/DataAccess Client.csproj @@ -185,10 +185,10 @@ - 10.0.0 + 10.0.2 - 1.5.378.11-preview + 1.5.378.101-preview diff --git a/Workshop/DataAccess/Server/DataAccess Server.csproj b/Workshop/DataAccess/Server/DataAccess Server.csproj index 8016d6ead..4aa776a9d 100644 --- a/Workshop/DataAccess/Server/DataAccess Server.csproj +++ b/Workshop/DataAccess/Server/DataAccess Server.csproj @@ -168,10 +168,10 @@ - 10.0.0 + 10.0.2 - 1.5.378.11-preview + 1.5.378.101-preview diff --git a/Workshop/DataTypes/Client/DataTypes Client.csproj b/Workshop/DataTypes/Client/DataTypes Client.csproj index c60a0f2aa..cf005ed5a 100644 --- a/Workshop/DataTypes/Client/DataTypes Client.csproj +++ b/Workshop/DataTypes/Client/DataTypes Client.csproj @@ -125,10 +125,10 @@ - 10.0.0 + 10.0.2 - 1.5.378.11-preview + 1.5.378.101-preview diff --git a/Workshop/DataTypes/Client/Program.cs b/Workshop/DataTypes/Client/Program.cs index ab200c6bf..d6b7335fc 100644 --- a/Workshop/DataTypes/Client/Program.cs +++ b/Workshop/DataTypes/Client/Program.cs @@ -75,8 +75,9 @@ static void Main() // load the application configuration. application.LoadApplicationConfigurationAsync(false).AsTask().Wait(); - // add the encodable types defined in the shared information model library. - EncodeableFactory.GlobalFactory.AddEncodeableTypes(typeof(Quickstarts.DataTypes.Types.Namespaces).Assembly); +#pragma warning disable UA_NETStandard_1 // Type is for evaluation purposes only and is subject to change or removal in future updates. Suppress this diagnostic to proceed. + AmbientMessageContext.CurrentContext.Factory.AddEncodeableTypes(typeof(Quickstarts.DataTypes.Types.Namespaces).Assembly); +#pragma warning restore UA_NETStandard_1 // Type is for evaluation purposes only and is subject to change or removal in future updates. Suppress this diagnostic to proceed. // check the application certificate. application.CheckApplicationInstanceCertificatesAsync(false).AsTask().Wait(); diff --git a/Workshop/DataTypes/Common/DataTypes Library.csproj b/Workshop/DataTypes/Common/DataTypes Library.csproj index 6d200ef67..26dcf5288 100644 --- a/Workshop/DataTypes/Common/DataTypes Library.csproj +++ b/Workshop/DataTypes/Common/DataTypes Library.csproj @@ -103,8 +103,11 @@ + + 10.0.2 + - 1.5.378.11-preview + 1.5.378.101-preview diff --git a/Workshop/DataTypes/Server/DataTypes Server.csproj b/Workshop/DataTypes/Server/DataTypes Server.csproj index 0edbabd08..d5a17f9c8 100644 --- a/Workshop/DataTypes/Server/DataTypes Server.csproj +++ b/Workshop/DataTypes/Server/DataTypes Server.csproj @@ -145,10 +145,10 @@ - 10.0.0 + 10.0.2 - 1.5.378.11-preview + 1.5.378.101-preview diff --git a/Workshop/Empty/Client/Empty Client.csproj b/Workshop/Empty/Client/Empty Client.csproj index 1d2a22c82..5aceb40f9 100644 --- a/Workshop/Empty/Client/Empty Client.csproj +++ b/Workshop/Empty/Client/Empty Client.csproj @@ -134,10 +134,10 @@ - 10.0.0 + 10.0.2 - 1.5.378.11-preview + 1.5.378.101-preview diff --git a/Workshop/Empty/Server/Empty Server.csproj b/Workshop/Empty/Server/Empty Server.csproj index d5d2d994b..e2707a559 100644 --- a/Workshop/Empty/Server/Empty Server.csproj +++ b/Workshop/Empty/Server/Empty Server.csproj @@ -131,10 +131,10 @@ - 10.0.0 + 10.0.2 - 1.5.378.11-preview + 1.5.378.101-preview diff --git a/Workshop/HistoricalAccess/Client/HistoricalAccess Client.csproj b/Workshop/HistoricalAccess/Client/HistoricalAccess Client.csproj index 1f66fe11b..15ec89afa 100644 --- a/Workshop/HistoricalAccess/Client/HistoricalAccess Client.csproj +++ b/Workshop/HistoricalAccess/Client/HistoricalAccess Client.csproj @@ -180,10 +180,10 @@ - 10.0.0 + 10.0.2 - 1.5.378.11-preview + 1.5.378.101-preview diff --git a/Workshop/HistoricalAccess/Server/HistoricalAccess Server.csproj b/Workshop/HistoricalAccess/Server/HistoricalAccess Server.csproj index 2c7138d52..bdea40043 100644 --- a/Workshop/HistoricalAccess/Server/HistoricalAccess Server.csproj +++ b/Workshop/HistoricalAccess/Server/HistoricalAccess Server.csproj @@ -194,10 +194,10 @@ - 10.0.0 + 10.0.2 - 1.5.378.11-preview + 1.5.378.101-preview diff --git a/Workshop/HistoricalAccess/Tester/Aggregate Tester.csproj b/Workshop/HistoricalAccess/Tester/Aggregate Tester.csproj index 28b056b2d..15ac0bef8 100644 --- a/Workshop/HistoricalAccess/Tester/Aggregate Tester.csproj +++ b/Workshop/HistoricalAccess/Tester/Aggregate Tester.csproj @@ -144,13 +144,13 @@ - 10.0.0 + 10.0.2 - 1.5.378.11-preview + 1.5.378.101-preview - 1.5.378.11-preview + 1.5.378.101-preview diff --git a/Workshop/HistoricalEvents/Client/HistoricalEvents Client.csproj b/Workshop/HistoricalEvents/Client/HistoricalEvents Client.csproj index dac5580d6..ab7b61ad8 100644 --- a/Workshop/HistoricalEvents/Client/HistoricalEvents Client.csproj +++ b/Workshop/HistoricalEvents/Client/HistoricalEvents Client.csproj @@ -189,10 +189,10 @@ - 10.0.0 + 10.0.2 - 1.5.378.11-preview + 1.5.378.101-preview diff --git a/Workshop/HistoricalEvents/Server/HistoricalEvents Server.csproj b/Workshop/HistoricalEvents/Server/HistoricalEvents Server.csproj index 7d28d100b..f8105428c 100644 --- a/Workshop/HistoricalEvents/Server/HistoricalEvents Server.csproj +++ b/Workshop/HistoricalEvents/Server/HistoricalEvents Server.csproj @@ -144,10 +144,10 @@ - 10.0.0 + 10.0.2 - 1.5.378.11-preview + 1.5.378.101-preview diff --git a/Workshop/Methods/Client/Methods Client.csproj b/Workshop/Methods/Client/Methods Client.csproj index 7a5cb633c..6558422fc 100644 --- a/Workshop/Methods/Client/Methods Client.csproj +++ b/Workshop/Methods/Client/Methods Client.csproj @@ -134,10 +134,10 @@ - 10.0.0 + 10.0.2 - 1.5.378.11-preview + 1.5.378.101-preview diff --git a/Workshop/Methods/Server/Methods Server.csproj b/Workshop/Methods/Server/Methods Server.csproj index 173746a58..526823474 100644 --- a/Workshop/Methods/Server/Methods Server.csproj +++ b/Workshop/Methods/Server/Methods Server.csproj @@ -133,10 +133,10 @@ - 10.0.0 + 10.0.2 - 1.5.378.11-preview + 1.5.378.101-preview diff --git a/Workshop/PerfTest/Client/PerfTest Client.csproj b/Workshop/PerfTest/Client/PerfTest Client.csproj index a01b42e59..40b676bb4 100644 --- a/Workshop/PerfTest/Client/PerfTest Client.csproj +++ b/Workshop/PerfTest/Client/PerfTest Client.csproj @@ -132,10 +132,10 @@ - 10.0.0 + 10.0.2 - 1.5.378.11-preview + 1.5.378.101-preview diff --git a/Workshop/PerfTest/Server/PerfTest Server.csproj b/Workshop/PerfTest/Server/PerfTest Server.csproj index 5693ba856..fb50893cd 100644 --- a/Workshop/PerfTest/Server/PerfTest Server.csproj +++ b/Workshop/PerfTest/Server/PerfTest Server.csproj @@ -135,10 +135,10 @@ - 10.0.0 + 10.0.2 - 1.5.378.11-preview + 1.5.378.101-preview diff --git a/Workshop/SimpleEvents/Client/SimpleEvents Client.csproj b/Workshop/SimpleEvents/Client/SimpleEvents Client.csproj index 9a82bc29d..a3ded16fa 100644 --- a/Workshop/SimpleEvents/Client/SimpleEvents Client.csproj +++ b/Workshop/SimpleEvents/Client/SimpleEvents Client.csproj @@ -121,10 +121,10 @@ - 10.0.0 + 10.0.2 - 1.5.378.11-preview + 1.5.378.101-preview diff --git a/Workshop/SimpleEvents/Server/SimpleEvents Server.csproj b/Workshop/SimpleEvents/Server/SimpleEvents Server.csproj index 4bc4dea4d..4c8d4d0b6 100644 --- a/Workshop/SimpleEvents/Server/SimpleEvents Server.csproj +++ b/Workshop/SimpleEvents/Server/SimpleEvents Server.csproj @@ -139,10 +139,10 @@ - 10.0.0 + 10.0.2 - 1.5.378.11-preview + 1.5.378.101-preview diff --git a/Workshop/UserAuthentication/Client/UserAuthentication Client.csproj b/Workshop/UserAuthentication/Client/UserAuthentication Client.csproj index 2329b4339..d7cd9c6a5 100644 --- a/Workshop/UserAuthentication/Client/UserAuthentication Client.csproj +++ b/Workshop/UserAuthentication/Client/UserAuthentication Client.csproj @@ -127,10 +127,10 @@ - 10.0.0 + 10.0.2 - 1.5.378.11-preview + 1.5.378.101-preview diff --git a/Workshop/UserAuthentication/Server/UserAuthentication Server.csproj b/Workshop/UserAuthentication/Server/UserAuthentication Server.csproj index 560e55d5a..490f0f45e 100644 --- a/Workshop/UserAuthentication/Server/UserAuthentication Server.csproj +++ b/Workshop/UserAuthentication/Server/UserAuthentication Server.csproj @@ -156,10 +156,10 @@ - 10.0.0 + 10.0.2 - 1.5.378.11-preview + 1.5.378.101-preview diff --git a/Workshop/Views/Client/Views Client.csproj b/Workshop/Views/Client/Views Client.csproj index a46ef4a29..f10212c95 100644 --- a/Workshop/Views/Client/Views Client.csproj +++ b/Workshop/Views/Client/Views Client.csproj @@ -133,10 +133,10 @@ - 10.0.0 + 10.0.2 - 1.5.378.11-preview + 1.5.378.101-preview diff --git a/Workshop/Views/Server/Views Server.csproj b/Workshop/Views/Server/Views Server.csproj index 828444b76..7e057647d 100644 --- a/Workshop/Views/Server/Views Server.csproj +++ b/Workshop/Views/Server/Views Server.csproj @@ -147,10 +147,10 @@ - 10.0.0 + 10.0.2 - 1.5.378.11-preview + 1.5.378.101-preview