如何设置 Visual Studio 以包含 Azure 名称空间?

发布于 2024-11-18 16:08:30 字数 497 浏览 6 评论 0原文

我已经安装了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

似最初 2024-11-25 16:08:30

正如文章中提到的,您应该在“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?

最初的梦 2024-11-25 16:08:30

您应该在添加引用对话框中找到 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文