Skip to content

Commit 1b6bc8e

Browse files
committed
rename project name
1 parent 9338acc commit 1b6bc8e

17 files changed

+16
-17
lines changed

azure-devops/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ stages:
1515
- task: DotNetCoreCLI@2
1616
displayName: Unit tests
1717
inputs:
18-
workingDirectory: $(Agent.BuildDirectory)/s/tests/SocketIOClient.UnitTest
18+
workingDirectory: $(Agent.BuildDirectory)/s/tests/SocketIOClient.UnitTests
1919
command: test
2020
- job:
2121
displayName: Integration tests

socket.io-client-csharp.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SocketIOClient.Newtonsoft.J
99
EndProject
1010
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SocketIOClient.Windows7", "src\SocketIOClient.Windows7\SocketIOClient.Windows7.csproj", "{8EA5705A-16D6-4477-9682-26E819402149}"
1111
EndProject
12-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SocketIOClient.UnitTest", "tests\SocketIOClient.UnitTest\SocketIOClient.UnitTest.csproj", "{B3A90FB0-5D1C-499C-A2F9-6E4DD331C8E9}"
12+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SocketIOClient.UnitTests", "tests\SocketIOClient.UnitTests\SocketIOClient.UnitTests.csproj", "{B3A90FB0-5D1C-499C-A2F9-6E4DD331C8E9}"
1313
EndProject
1414
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SocketIOClient.IntegrationTests", "tests\SocketIOClient.IntegrationTests\SocketIOClient.IntegrationTests.csproj", "{3987863F-026D-4B74-AD7F-E29470DA16A8}"
1515
EndProject

tests/SocketIOClient.IntegrationTests.Net472/SocketIOClient.IntegrationTests.Net472.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@
7676
<Reference Include="Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
7777
<HintPath>..\..\packages\MSTest.TestFramework.3.0.2\lib\net462\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll</HintPath>
7878
</Reference>
79+
<Reference Include="mscorlib" />
7980
<Reference Include="NetEscapades.Configuration.Yaml, Version=2.2.0.0, Culture=neutral, processorArchitecture=MSIL">
8081
<HintPath>..\..\packages\NetEscapades.Configuration.Yaml.2.2.0\lib\net472\NetEscapades.Configuration.Yaml.dll</HintPath>
8182
</Reference>
@@ -97,8 +98,6 @@
9798
</Reference>
9899
<Reference Include="System.Net.Http, Version=4.1.1.3, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
99100
<HintPath>..\..\packages\System.Net.Http.4.3.4\lib\net46\System.Net.Http.dll</HintPath>
100-
<Private>True</Private>
101-
<Private>True</Private>
102101
</Reference>
103102
<Reference Include="System.Numerics" />
104103
<Reference Include="System.Numerics.Vectors, Version=4.1.4.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">

tests/SocketIOClient.IntegrationTests.Net472/app.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
</dependentAssembly>
4949
<dependentAssembly>
5050
<assemblyIdentity name="System.Net.Http" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
51-
<bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" />
51+
<bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.0.0.0" />
5252
</dependentAssembly>
5353
<dependentAssembly>
5454
<assemblyIdentity name="System.Security.Cryptography.Algorithms" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />

tests/SocketIOClient.UnitTest/MessageTests/MessageFactoryTest.cs renamed to tests/SocketIOClient.UnitTests/MessageTests/MessageFactoryTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Microsoft.VisualStudio.TestTools.UnitTesting;
22
using SocketIOClient.Messages;
33

4-
namespace SocketIOClient.UnitTest.MessageTests
4+
namespace SocketIOClient.UnitTests.MessageTests
55
{
66
[TestClass]
77
public class MessageFactoryTest

tests/SocketIOClient.UnitTest/MessageTests/MessageReadTest.cs renamed to tests/SocketIOClient.UnitTests/MessageTests/MessageReadTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using Microsoft.VisualStudio.TestTools.UnitTesting;
33
using SocketIOClient.Messages;
44

5-
namespace SocketIOClient.UnitTest.MessageTests
5+
namespace SocketIOClient.UnitTests.MessageTests
66
{
77
[TestClass]
88
public class MessageReadTest

tests/SocketIOClient.UnitTest/MessageTests/MessageWriteTest.cs renamed to tests/SocketIOClient.UnitTests/MessageTests/MessageWriteTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System;
55
using System.Collections.Generic;
66

7-
namespace SocketIOClient.UnitTest.MessageTests
7+
namespace SocketIOClient.UnitTests.MessageTests
88
{
99
[TestClass]
1010
public class MessageWriteTest

tests/SocketIOClient.UnitTest/SocketIOClient.UnitTest.csproj renamed to tests/SocketIOClient.UnitTests/SocketIOClient.UnitTests.csproj

File renamed without changes.

tests/SocketIOClient.UnitTest/SocketIOResponseTest.cs renamed to tests/SocketIOClient.UnitTests/SocketIOResponseTest.cs

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

5-
namespace SocketIOClient.UnitTest
5+
namespace SocketIOClient.UnitTests
66
{
77
[TestClass]
88
public class SocketIOResponseTest

tests/SocketIOClient.UnitTest/SocketIOTest.cs renamed to tests/SocketIOClient.UnitTests/SocketIOTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
using SocketIOClient.Transport.Http;
1717
using SocketIOClient.Transport.WebSockets;
1818

19-
namespace SocketIOClient.UnitTest
19+
namespace SocketIOClient.UnitTests
2020
{
2121
[TestClass]
2222
public class SocketIOTest

0 commit comments

Comments
 (0)