From de7197daaeabf3f63e1cb10b13c712bdf1816a6f Mon Sep 17 00:00:00 2001 From: Ahson Khan Date: Mon, 8 Jul 2024 14:10:28 -0400 Subject: [PATCH] Provide a walkthrough for how to install the Azure SDK packages in a VS (#5751) MSBuild project via vcpkg. --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8fbe1a573..cefb36740 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ vcpkg add port azure-identity-cpp azure-storage-blobs-cpp } ``` -### Configure project files +### Configure CMake project files - Replace the contents of `CMakeLists.txt` with the following: @@ -57,6 +57,12 @@ add_executable(HelloWorld helloworld.cpp) target_link_libraries(HelloWorld PRIVATE Azure::azure-identity Azure::azure-storage-blobs) ``` +### Installing Azure SDK packages in a Visual Studio MSBuild (.vcxproj) project + +Here's a walkthrough video on how to install the Azure SDK packages, using vcpkg, into an MSBuild project in VS: https://aka.ms/azsdk/cpp/gettingstarted-vcpkg-msbuild-video + +See the [vcpkg documentation](https://learn.microsoft.com/en-us/vcpkg/get_started/get-started-msbuild?pivots=shell-cmd) for more details. + ### Additional methods for installing and configuring