From 0eb149793fb009e8c9253f14b42d3503ef1cb959 Mon Sep 17 00:00:00 2001 From: Mateusz Daniluk <121170681+VeithMetro@users.noreply.github.com> Date: Mon, 9 Sep 2024 12:41:11 +0200 Subject: [PATCH] Fixing the path for JSONRPC examples and adding client to be built in Windows Acionts --- .github/workflows/Build ThunderNanoServices on Windows.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/Build ThunderNanoServices on Windows.yml b/.github/workflows/Build ThunderNanoServices on Windows.yml index 0caccc5f..d6d87cf6 100644 --- a/.github/workflows/Build ThunderNanoServices on Windows.yml +++ b/.github/workflows/Build ThunderNanoServices on Windows.yml @@ -13,7 +13,8 @@ env: DHCPServer: ThunderNanoServices\DHCPServer\DHCPServer.vcxproj DIALServer: ThunderNanoServices\DIALServer\DIALServer.vcxproj dictionary: ThunderNanoServices\Dictionary\Dictionary.vcxproj - JSONRPCPlugin: ThunderNanoServices\examples\JSONRPCPlugin\JSONRPCPlugin.vcxproj + JSONRPCClient: ThunderNanoServices\examples\JSONRPC\Client\JSONRPCClient.vcxproj + JSONRPCPlugin: ThunderNanoServices\examples\JSONRPC\Plugin\JSONRPCPlugin.vcxproj networkControl: ThunderNanoServices\NetworkControl\NetworkControl.vcxproj outOfProcessPlugin: ThunderNanoServices\examples\OutOfProcessPlugin\OutOfProcessPlugin.vcxproj remoteControl: ThunderNanoServices\RemoteControl\RemoteControl.vcxproj @@ -147,6 +148,7 @@ jobs: && "%devEnv%" /Build "${{matrix.type}}|x${{matrix.version}}" /Project "%DHCPServer%" "%solution%" && "%devEnv%" /Build "${{matrix.type}}|x${{matrix.version}}" /Project "%DIALServer%" "%solution%" && "%devEnv%" /Build "${{matrix.type}}|x${{matrix.version}}" /Project "%dictionary%" "%solution%" + && "%devEnv%" /Build "${{matrix.type}}|x${{matrix.version}}" /Project "%JSONRPCClient%" "%solution%" && "%devEnv%" /Build "${{matrix.type}}|x${{matrix.version}}" /Project "%JSONRPCPlugin%" "%solution%" && "%devEnv%" /Build "${{matrix.type}}|x${{matrix.version}}" /Project "%networkControl%" "%solution%" && "%devEnv%" /Build "${{matrix.type}}|x${{matrix.version}}" /Project "%outOfProcessPlugin%" "%solution%"