Skip to content

Commit d15b51f

Browse files
committed
Remove intermediate "client" directory
There is no use for it any more.
1 parent 7265d00 commit d15b51f

File tree

224 files changed

+17
-20
lines changed

Some content is hidden

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

224 files changed

+17
-20
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ UpgradeLog*.htm
110110

111111
# Unit tests
112112

113-
projects/client/Unit*/TestResult.xml
113+
projects/Unit*/TestResult.xml
114114

115115
# Development scripts
116116

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dist: rabbit-vsn ensure-deliverables ensure-universally-readable
1818
rm -f $(RELEASE_DIR)/$(TMPXMLZIP)
1919

2020
test-xbuild-units:
21-
xbuild /nologo /t:RunUnitTests projects/client/Unit/RabbitMQ.Client.Unit.csproj | grep -v "warning CS2002"
21+
xbuild /nologo /t:RunUnitTests projects/Unit/RabbitMQ.Client.Unit.csproj | grep -v "warning CS2002"
2222

2323
test-xbuild: test-xbuild-units
2424

RUNNING_TESTS.md

Lines changed: 2 additions & 2 deletions

RabbitMQDotNetClient.sln

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,16 @@ VisualStudioVersion = 16.0.29806.167
44
MinimumVisualStudioVersion = 10.0.40219.1
55
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "projects", "projects", "{068D7DC3-8E6E-4951-B9E3-272C641BF0DE}"
66
EndProject
7-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "client", "client", "{ECCBAEE2-24C9-4C95-A88C-03B68E866F0F}"
8-
EndProject
97
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{34486CC0-D61E-46BA-9E5E-6E8EFA7C34B5}"
108
ProjectSection(SolutionItems) = preProject
119
.editorconfig = .editorconfig
1210
EndProjectSection
1311
EndProject
14-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RabbitMQ.Client", "projects\client\RabbitMQ.Client\RabbitMQ.Client.csproj", "{8C554257-5ECC-45DB-873D-560BFBB74EC8}"
12+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RabbitMQ.Client", "projects\RabbitMQ.Client\RabbitMQ.Client.csproj", "{8C554257-5ECC-45DB-873D-560BFBB74EC8}"
1513
EndProject
16-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Unit", "projects\client\Unit\Unit.csproj", "{B8FAC024-CC03-4067-9FFC-02846FB8AE48}"
14+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Unit", "projects\Unit\Unit.csproj", "{B8FAC024-CC03-4067-9FFC-02846FB8AE48}"
1715
EndProject
18-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Apigen", "projects\client\Apigen\Apigen.csproj", "{B416DDB7-5E3E-4A20-B5A9-C6E518E203A2}"
16+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Apigen", "projects\Apigen\Apigen.csproj", "{B416DDB7-5E3E-4A20-B5A9-C6E518E203A2}"
1917
EndProject
2018
Global
2119
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -40,10 +38,9 @@ Global
4038
HideSolutionNode = FALSE
4139
EndGlobalSection
4240
GlobalSection(NestedProjects) = preSolution
43-
{ECCBAEE2-24C9-4C95-A88C-03B68E866F0F} = {068D7DC3-8E6E-4951-B9E3-272C641BF0DE}
44-
{8C554257-5ECC-45DB-873D-560BFBB74EC8} = {ECCBAEE2-24C9-4C95-A88C-03B68E866F0F}
45-
{B8FAC024-CC03-4067-9FFC-02846FB8AE48} = {ECCBAEE2-24C9-4C95-A88C-03B68E866F0F}
46-
{B416DDB7-5E3E-4A20-B5A9-C6E518E203A2} = {ECCBAEE2-24C9-4C95-A88C-03B68E866F0F}
41+
{8C554257-5ECC-45DB-873D-560BFBB74EC8} = {068D7DC3-8E6E-4951-B9E3-272C641BF0DE}
42+
{B8FAC024-CC03-4067-9FFC-02846FB8AE48} = {068D7DC3-8E6E-4951-B9E3-272C641BF0DE}
43+
{B416DDB7-5E3E-4A20-B5A9-C6E518E203A2} = {068D7DC3-8E6E-4951-B9E3-272C641BF0DE}
4744
EndGlobalSection
4845
GlobalSection(ExtensibilityGlobals) = postSolution
4946
SolutionGuid = {3C6A0C44-FA63-4101-BBF9-2598641167D1}

build.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@ECHO OFF
22
set DOTNET_CLI_TELEMETRY_OPTOUT=1
33
dotnet restore .\RabbitMQDotNetClient.sln
4-
dotnet run -p .\projects\client\Apigen\Apigen.csproj --apiName:AMQP_0_9_1 .\docs\specs\amqp0-9-1.stripped.xml .\gensrc\autogenerated-api-0-9-1.cs
4+
dotnet run -p .\projects\Apigen\Apigen.csproj --apiName:AMQP_0_9_1 .\docs\specs\amqp0-9-1.stripped.xml .\gensrc\autogenerated-api-0-9-1.cs
55
dotnet build .\RabbitMQDotNetClient.sln

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ fi
1414
cd "$script_dir"
1515

1616
dotnet restore ./RabbitMQDotNetClient.sln
17-
dotnet run -p ./projects/client/Apigen/Apigen.csproj --apiName:AMQP_0_9_1 \
17+
dotnet run -p ./projects/Apigen/Apigen.csproj --apiName:AMQP_0_9_1 \
1818
./docs/specs/amqp0-9-1.stripped.xml \
1919
./gensrc/autogenerated-api-0-9-1.cs
2020
dotnet build ./RabbitMQDotNetClient.sln
File renamed without changes.

0 commit comments

Comments
 (0)