add a reference to a visual studio project for amazon web services sdk
how can I add a reference to the amazon sdk (installed already) to my existing class library?
I can make a new amazon aws project, but I just want to add a reference to an already existing class library which will use amazon aws API's.
searched on line, but could not find it... so a link开发者_运维知识库 is as good as a direct answer.
Can't you just add a reference to the existing class library dll? I strongly engcourage you to download and install NuGet from Tools > Extension Manager and use that to install third party libraries. Check out the NuGet documentation for more details :)
To install (and reference) the AWS SDK, run the following command from the Package Manager Console:
Install-Package AWSSDK
精彩评论