如何设置 Visual Studio 以包含 Azure 名称空间?
我已经安装了 Azure 1.4 工具包。我在 VS2010 中有新的项目模板。
我想开始通过代码将文件保存到我的 azure 存储帐户 CDN。我引用此代码片段: http://www.totaldotnet.com/Article/ShowArticle104_AzureFileStorage.aspx
该片段包括:
using Microsoft.WindowsAzure;
using Microsoft.WindowsAzure.StorageClient;
对于我的一生,我找不到正确的 DLL 来引用以能够使用这些名称空间。
为了访问 Microsoft.WindowsAzure 命名空间,我需要引用什么?
I've installed the Azure 1.4 toolkit. I have the new project templates in VS2010.
I want to start saving files to my azure storage account CDN via code. I'm referencing this code snippet: http://www.totaldotnet.com/Article/ShowArticle104_AzureFileStorage.aspx
The snippet includes have:
using Microsoft.WindowsAzure;
using Microsoft.WindowsAzure.StorageClient;
For the life of me I can't find the correct DLL to reference to be able to use these name spaces.
What do I need to reference in order to access the Microsoft.WindowsAzure name space?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正如文章中提到的,您应该在“C:\Program Files\Windows Azure SDK\v1.4\ref”文件夹中找到此 dll。
顺便说一句,您收到的错误消息是什么?
As mentioned in the article, you should find this dll in "C:\Program Files\Windows Azure SDK\v1.4\ref" folder.
BTW, What's the error message you're getting?
您应该在添加引用对话框中找到 Microsoft.WindowsAzure.StorageClient。确保将项目设置为 .NET 4 而不是 .NET 4 Client Profile。
You should just find Microsoft.WindowsAzure.StorageClient in the add reference dialog. Make sure you have the project set to .NET 4 and not .NET 4 Client Profile.