Skip to content

Commit 9682211

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

Some content is hidden

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

47 files changed

+72
-101
lines changed

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(_ =>

src/UiPath.CoreIpc.Tests/ComputingTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace UiPath.CoreIpc.Tests;
1+
namespace UiPath.Ipc.Tests;
22

33
public abstract class ComputingTests<TBuilder> : TestBase where TBuilder : ServiceClientBuilder<TBuilder, IComputingService>
44
{

src/UiPath.CoreIpc.Tests/EndpointTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace UiPath.CoreIpc.Tests;
1+
namespace UiPath.Ipc.Tests;
22

33
public class EndpointTests : IDisposable
44
{

src/UiPath.CoreIpc.Tests/Implementation/ComputingCallback.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace UiPath.CoreIpc.Tests;
1+
namespace UiPath.Ipc.Tests;
22

33
public interface IComputingCallback
44
{

src/UiPath.CoreIpc.Tests/Implementation/ComputingService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Microsoft.Extensions.Logging;
22

3-
namespace UiPath.CoreIpc.Tests;
3+
namespace UiPath.Ipc.Tests;
44

55
public interface IInvalid : IDisposable
66
{

0 commit comments

Comments
 (0)