diff --git a/src/common/server/NetRemoteServerConfiguration.cxx b/src/common/server/NetRemoteServerConfiguration.cxx index 41682541..95418750 100644 --- a/src/common/server/NetRemoteServerConfiguration.cxx +++ b/src/common/server/NetRemoteServerConfiguration.cxx @@ -4,7 +4,9 @@ #include #include +#include #include +#include #include using namespace Microsoft::Net::Remote; @@ -49,7 +51,7 @@ ParseCliAppOptions(bool throwOnParseError, Args&&... args) app.parse(std::forward(args)...); } catch (const CLI::ParseError& parseError) { if (throwOnParseError) { - throw parseError; // NOLINT(cert-err60-cpp) + throw parseError; // NOLINT(cert-err60-cpp) } } diff --git a/vcpkg.json b/vcpkg.json index ab14a584..d91b7035 100644 --- a/vcpkg.json +++ b/vcpkg.json @@ -1,21 +1,28 @@ -{ - "$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json", - "name": "netremote", - "version-string": "1", - "dependencies": [ - { - "name": "sdbus-cpp", - "platform": "linux" - }, - "grpc", - "cli11", - "protobuf", - "catch2", - "plog", - "magic-enum", - { - "name": "wil", - "platform": "windows" - } - ] +{ + "$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json", + "name": "netremote", + "version-string": "1", + "dependencies": [ + { + "name": "sdbus-cpp", + "platform": "linux" + }, + "grpc", + "cli11", + "protobuf", + "catch2", + "plog", + "magic-enum", + { + "name": "wil", + "platform": "windows" + } + ], + "overrides": [ + { + "name": "cli11", + "version": "2.3.1" + } + ], + "builtin-baseline": "9224b3bbd8df24999d85720b1d005dd6f969ade0" } \ No newline at end of file