From c69ee6e6c640e1456aedf349f4dc477eb9a36c05 Mon Sep 17 00:00:00 2001 From: George Arama <50641385+gearama@users.noreply.github.com> Date: Wed, 15 Feb 2023 14:46:18 -0800 Subject: [PATCH 1/4] update comment --- sdk/keyvault/tools/cleanup/src/cleanup.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/keyvault/tools/cleanup/src/cleanup.cpp b/sdk/keyvault/tools/cleanup/src/cleanup.cpp index d9c5ba96a9..864cb1c386 100644 --- a/sdk/keyvault/tools/cleanup/src/cleanup.cpp +++ b/sdk/keyvault/tools/cleanup/src/cleanup.cpp @@ -2,8 +2,8 @@ // SPDX-License-Identifier: MIT /** - * @brief This sample provides the code implementation to use the Key Vault Secrets SDK client for - * C++ to create, get, update, delete and purge a secret. + * @brief This tool helps cleanup resources ( keys, certificates, secrets) existing in a key vault, + * Attempts to restore it as close to original as possible without having to recreate the key vault. * * @remark The following environment variables must be set before running the sample. * - AZURE_KEYVAULT_URL: To the Key Vault account URL. From 8a9a5e8fde580703a102e952e9b933f936fd540c Mon Sep 17 00:00:00 2001 From: George Arama <50641385+gearama@users.noreply.github.com> Date: Wed, 15 Feb 2023 15:03:34 -0800 Subject: [PATCH 2/4] jghjg --- sdk/keyvault/tools/cleanup/src/cleanup.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/keyvault/tools/cleanup/src/cleanup.cpp b/sdk/keyvault/tools/cleanup/src/cleanup.cpp index 864cb1c386..e527f6d41e 100644 --- a/sdk/keyvault/tools/cleanup/src/cleanup.cpp +++ b/sdk/keyvault/tools/cleanup/src/cleanup.cpp @@ -2,7 +2,7 @@ // SPDX-License-Identifier: MIT /** - * @brief This tool helps cleanup resources ( keys, certificates, secrets) existing in a key vault, + * @brief This tool helps cleanup resources ( keys, certificates, secrets) existing in a key vault, * Attempts to restore it as close to original as possible without having to recreate the key vault. * * @remark The following environment variables must be set before running the sample. From 32737c998fe0f4bf2d3fa778aeff852cf9664ed0 Mon Sep 17 00:00:00 2001 From: George Arama <50641385+gearama@users.noreply.github.com> Date: Fri, 17 Feb 2023 10:06:43 -0800 Subject: [PATCH 3/4] update broken link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 38ffeed40e..6f9280ce7b 100644 --- a/README.md +++ b/README.md @@ -322,7 +322,7 @@ The following SDK library releases are available on [vcpkg](https://github.com/m * `azure-storage-files-shares-cpp` * `azure-storage-queues-cpp` -> NOTE: In case of getting linker errors when consuming the SDK on Windows, make sure that [vcpkg triplet](https://github.com/microsoft/vcpkg/blob/master/docs/users/triplets.md) being consumed matches the [CRT link flags](https://docs.microsoft.com/cpp/build/reference/md-mt-ld-use-run-time-library?view=msvc-160) being set for your app or library build. See also `MSVC_USE_STATIC_CRT` build flag. +> NOTE: In case of getting linker errors when consuming the SDK on Windows, make sure that [vcpkg triplet](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/users/triplets.md) being consumed matches the [CRT link flags](https://docs.microsoft.com/cpp/build/reference/md-mt-ld-use-run-time-library?view=msvc-160) being set for your app or library build. See also `MSVC_USE_STATIC_CRT` build flag. ## OpenSSL Version From 80917a035cbe247089ee7d951e69759fcbef541e Mon Sep 17 00:00:00 2001 From: George Arama <50641385+gearama@users.noreply.github.com> Date: Fri, 17 Feb 2023 15:20:04 -0800 Subject: [PATCH 4/4] Update sdk/keyvault/tools/cleanup/src/cleanup.cpp Co-authored-by: Anton Kolesnyk <41349689+antkmsft@users.noreply.github.com> --- sdk/keyvault/tools/cleanup/src/cleanup.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/keyvault/tools/cleanup/src/cleanup.cpp b/sdk/keyvault/tools/cleanup/src/cleanup.cpp index e527f6d41e..c49f9afb84 100644 --- a/sdk/keyvault/tools/cleanup/src/cleanup.cpp +++ b/sdk/keyvault/tools/cleanup/src/cleanup.cpp @@ -2,7 +2,7 @@ // SPDX-License-Identifier: MIT /** - * @brief This tool helps cleanup resources ( keys, certificates, secrets) existing in a key vault, + * @brief This tool helps cleanup resources (keys, certificates, secrets) existing in a key vault, * Attempts to restore it as close to original as possible without having to recreate the key vault. * * @remark The following environment variables must be set before running the sample.