Visual Studio 2013 업데이트 2 RC 및 Azure SDK 2.3으로 업데이트되었습니다. 다음의 세 가지에'Storage.WindowsAzure'네임 스페이스에 'Storage'형식 또는 네임 스페이스 이름이 없습니다.
The type or namespace name 'Storage' does not exist in the namespace 'Microsoft.WindowsAzure'
:
지금 나는 다음과 같은 오류가 발생합니다
The type or namespace name 'CloudBlobClient' could not be found (are you missing a using directive or an assembly reference?)
: 다음이 사용하는 네임 스페이스를 제거하면
using Microsoft.WindowsAzure.Storage;
using Microsoft.WindowsAzure.Storage.Auth;
using Microsoft.WindowsAzure.Storage.Blob;
나는 오류 이 줄에 :
CloudBlobClient _blobClient;
내가 VS에서 작은 밑줄은 내가에 추가하는 것이 제안 얻을 : VS가 말하는 것을 내가 존재하지 않는 것과 같은 네임 스페이스가
using Microsoft.WindowsAzure.Storage.Blob;
.
아이디어가 있으십니까?
컴파일에서 솔루션을 방지 다른 (비 푸른) 오류가 있습니까? –
@ LukkhaCoder 아니요 – Kyle
이 프로젝트에 대해서도이 문제가있었습니다. 때때로 업그레이드가 프로젝트의 참조를 자동으로 업데이트하지 않는 것 같습니다. 모든 프로젝트가 새로운 Windows Azure .dll을 참조하는지 다시 확인하십시오. – mellamokb