From 51fc54f8c161ae94e4d230cddae8d9d2ee279fad Mon Sep 17 00:00:00 2001 From: Jens Geyer Date: Tue, 14 Feb 2023 23:51:16 +0100 Subject: THRIFT-5684 upgrade to net7.0: Client: netstd Patch: Jens Geyer --- test/netstd/Client/Client.csproj | 6 +++--- test/netstd/Client/TestClient.cs | 2 +- test/netstd/Server/Server.csproj | 6 +++--- test/netstd/Server/TestServer.cs | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) (limited to 'test') diff --git a/test/netstd/Client/Client.csproj b/test/netstd/Client/Client.csproj index 69e130159..bd7d1ee18 100644 --- a/test/netstd/Client/Client.csproj +++ b/test/netstd/Client/Client.csproj @@ -19,7 +19,7 @@ --> - net6.0 + net7.0 9.0 Client Client @@ -35,9 +35,9 @@ - + - + diff --git a/test/netstd/Client/TestClient.cs b/test/netstd/Client/TestClient.cs index 1227a38bb..183cfb430 100644 --- a/test/netstd/Client/TestClient.cs +++ b/test/netstd/Client/TestClient.cs @@ -257,7 +257,7 @@ namespace ThriftTest trans = new TTlsSocketTransport(host, port, Configuration, 0, cert, (sender, certificate, chain, errors) => true, - null, SslProtocols.Tls | SslProtocols.Tls11 | SslProtocols.Tls12); + null, SslProtocols.Tls12); break; case TransportChoice.Socket: diff --git a/test/netstd/Server/Server.csproj b/test/netstd/Server/Server.csproj index e6b42e247..85c1ad4b0 100644 --- a/test/netstd/Server/Server.csproj +++ b/test/netstd/Server/Server.csproj @@ -19,7 +19,7 @@ --> - net6.0 + net7.0 9.0 Server Server @@ -37,9 +37,9 @@ - + - + diff --git a/test/netstd/Server/TestServer.cs b/test/netstd/Server/TestServer.cs index 1eb50306a..fdbaa9718 100644 --- a/test/netstd/Server/TestServer.cs +++ b/test/netstd/Server/TestServer.cs @@ -606,7 +606,7 @@ namespace ThriftTest trans = new TTlsServerSocketTransport(param.port, Configuration, cert, (sender, certificate, chain, errors) => true, - null, SslProtocols.Tls | SslProtocols.Tls11 | SslProtocols.Tls12); + null, SslProtocols.Tls12); break; case TransportChoice.Socket: -- cgit v1.2.1