Reputation: 981
Recently i've installed Azure Storage Client Library for C++ using NuGet in Visual Studio 2015 by running Install-Package wastorage
. But it seems that only a dynamic version of this library was installed.
How can i get a static one?
Upvotes: 0
Views: 474
Reputation: 18465
Per my understanding, I assumed that you want to install the wastorage
package with the specific version. If so, you could follow the command below:
Install-Package wastorage -Version 2.5.0
Note: You could leverage Find-package wastorage -allversions
to list versions of your package or directly access the wastorage package in your browser, in order to find the available versions.
For more details, you could refer to the command reference.
Upvotes: 0