Provide a walkthrough for how to install the Azure SDK packages in a VS (#5751)

MSBuild project via vcpkg.
This commit is contained in:
Ahson Khan 2024-07-08 14:10:28 -04:00 committed by GitHub
parent 0e6b920216
commit de7197daae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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
<!-- Commenting out for now until we know if something similar already exists or if we have to create it. -->