Skip to content

Commit ed845ef

Browse files
decommission cryptography (#104)
* decommission cryptography * rename namespaces CoreIpc->Ipc
1 parent 22df014 commit ed845ef

Some content is hidden

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

51 files changed

+78
-107
lines changed

src/Clients/js/dotnet/UiPath.CoreIpc.NodeInterop/Contracts.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Threading;
33
using System.Threading.Tasks;
44

5-
namespace UiPath.CoreIpc.NodeInterop;
5+
namespace UiPath.Ipc.NodeInterop;
66

77
internal static class Contracts
88
{

src/Clients/js/dotnet/UiPath.CoreIpc.NodeInterop/Program.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
using System.Net.WebSockets;
88
using System.Threading;
99
using System.Threading.Tasks;
10-
using UiPath.CoreIpc.NamedPipe;
11-
using UiPath.CoreIpc.WebSockets;
10+
using UiPath.Ipc.NamedPipe;
11+
using UiPath.Ipc.WebSockets;
1212

13-
namespace UiPath.CoreIpc.NodeInterop;
13+
namespace UiPath.Ipc.NodeInterop;
1414

1515
using static Contracts;
1616
using static ServiceImpls;

src/Clients/js/dotnet/UiPath.CoreIpc.NodeInterop/ServiceImpls.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Threading;
44
using System.Threading.Tasks;
55

6-
namespace UiPath.CoreIpc.NodeInterop;
6+
namespace UiPath.Ipc.NodeInterop;
77

88
using static Contracts;
99

src/Clients/js/dotnet/UiPath.CoreIpc.NodeInterop/Signalling.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using Newtonsoft.Json.Converters;
33
using System;
44

5-
namespace UiPath.CoreIpc.NodeInterop;
5+
namespace UiPath.Ipc.NodeInterop;
66

77
internal static class Signalling
88
{

src/IpcSample.ConsoleClient/Client.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
using System.Text;
22
using System.Diagnostics;
3-
using UiPath.CoreIpc.NamedPipe;
3+
using UiPath.Ipc.NamedPipe;
44
using Microsoft.Extensions.DependencyInjection;
55

6-
namespace UiPath.CoreIpc.Tests;
6+
namespace UiPath.Ipc.Tests;
77

88
class Client
99
{

src/IpcSample.ConsoleClient/TcpClient.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
using System.Text;
22
using System.Diagnostics;
3-
using UiPath.CoreIpc.Tcp;
3+
using UiPath.Ipc.Tcp;
44
using Microsoft.Extensions.DependencyInjection;
55
using System.Net;
66

7-
namespace UiPath.CoreIpc.Tests;
7+
namespace UiPath.Ipc.Tests;
88

99
class TcpClient
1010
{

src/IpcSample.ConsoleClient/WebSocketClient.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using System.Text;
22
using System.Diagnostics;
3-
using UiPath.CoreIpc.WebSockets;
3+
using UiPath.Ipc.WebSockets;
44
using Microsoft.Extensions.DependencyInjection;
5-
namespace UiPath.CoreIpc.Tests;
5+
namespace UiPath.Ipc.Tests;
66
class WebSocketClient
77
{
88
static async Task _Main(string[] args)

src/IpcSample.ConsoleServer/Server.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using Microsoft.Extensions.DependencyInjection;
22
using System.Diagnostics;
3-
using UiPath.CoreIpc.NamedPipe;
3+
using UiPath.Ipc.NamedPipe;
44

5-
namespace UiPath.CoreIpc.Tests;
5+
namespace UiPath.Ipc.Tests;
66

77
class Server
88
{

src/IpcSample.ConsoleServer/TcpServer.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
using Microsoft.Extensions.DependencyInjection;
22
using System.Diagnostics;
33
using System.Net;
4-
using UiPath.CoreIpc.Tcp;
4+
using UiPath.Ipc.Tcp;
55

6-
namespace UiPath.CoreIpc.Tests;
6+
namespace UiPath.Ipc.Tests;
77

88
class TcpServer
99
{

src/IpcSample.ConsoleServer/WebSocketServer.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
using System.Diagnostics;
33
using System.Net;
44
using System.Net.WebSockets;
5-
using UiPath.CoreIpc.WebSockets;
6-
namespace UiPath.CoreIpc.Tests;
5+
using UiPath.Ipc.WebSockets;
6+
namespace UiPath.Ipc.Tests;
77
class WebSocketServer
88
{
99
//private static readonly Timer _timer = new Timer(_ =>

0 commit comments

Comments
 (0)