Skip to content

Commit b6abf76

Browse files
committed
Fixing namespaces\assembly names. Adding tests to AppVeyor.
1 parent bfbe7fb commit b6abf76

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed

appveyor.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,4 @@ test:
4242
- Microsoft.PowerShell.EditorServices.Test.dll
4343
- Microsoft.PowerShell.EditorServices.Test.Protocol.dll
4444
- Microsoft.PowerShell.EditorServices.Test.Host.dll
45+
- Microsoft.PowerShell.EditorServices.Channel.WebSockets.Test.dll

src/PowerShellEditorServices.Channel.WebSocket/PowerShellEditorServices.Channel.WebSocket.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<ProjectGuid>{A6663F64-3C3D-461F-8A05-0CC4CA7A9945}</ProjectGuid>
88
<OutputType>Library</OutputType>
99
<AppDesignerFolder>Properties</AppDesignerFolder>
10-
<RootNamespace>PowerShellEditorServices.Channel.WebSocket</RootNamespace>
11-
<AssemblyName>PowerShellEditorServices.Channel.WebSocket</AssemblyName>
10+
<RootNamespace>Microsoft.PowerShell.EditorServices.Channel.WebSocket</RootNamespace>
11+
<AssemblyName>Microsoft.PowerShell.EditorServices.Channel.WebSocket</AssemblyName>
1212
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
</PropertyGroup>

src/PowerShellEditorServices.Channel.WebSocket/WebsocketClientChannel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using Microsoft.PowerShell.EditorServices.Protocol.MessageProtocol.Channel;
99
using Microsoft.PowerShell.EditorServices.Utility;
1010

11-
namespace PowerShellEditorServices.Channel.WebSocket
11+
namespace Microsoft.PowerShell.EditorServices.Channel.WebSocket
1212
{
1313
/// <summary>
1414
/// Implementation of <see cref="ChannelBase"/> that enables WebSocket communication.

src/PowerShellEditorServices.Channel.WebSocket/WebsocketServerChannel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
using Microsoft.PowerShell.EditorServices.Protocol.Server;
1010
using Owin.WebSocket;
1111

12-
namespace PowerShellEditorServices.Channel.WebSocket
12+
namespace Microsoft.PowerShell.EditorServices.Channel.WebSocket
1313
{
1414
/// <summary>
1515
/// Implementation of <see cref="ChannelBase"/> that implements the streams necessary for

test/PowerShellEditorServices.Channel.WebSocket.Test/PowerShellEditorServices.Channel.WebSocket.Test.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<ProjectGuid>{9D98120C-9601-4678-AD50-EF2808DABAC9}</ProjectGuid>
88
<OutputType>Library</OutputType>
99
<AppDesignerFolder>Properties</AppDesignerFolder>
10-
<RootNamespace>PowerShellEditorServices.Channel.WebSocket.Test</RootNamespace>
11-
<AssemblyName>PowerShellEditorServices.Channel.WebSocket.Test</AssemblyName>
10+
<RootNamespace>Microsoft.PowerShell.EditorServices.Channel.WebSocket.Test</RootNamespace>
11+
<AssemblyName>Microsoft.PowerShell.EditorServices.Channel.WebSocket.Test</AssemblyName>
1212
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
</PropertyGroup>

test/PowerShellEditorServices.Channel.WebSocket.Test/WebSocketChannelTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using Owin.WebSocket.Extensions;
99
using Xunit;
1010

11-
namespace PowerShellEditorServices.Channel.WebSocket.Test
11+
namespace Microsoft.PowerShell.EditorServices.Channel.WebSocket.Test
1212
{
1313
public class WebSocketChannelTest : IAsyncLifetime
1414
{

0 commit comments

Comments
 (0)