I have written:
namespace MyProject.Azure
{
using Azure.Storage.Blobs;
}
I get the error
[csharp CS0234] [E] The type or namespace name 'Storage' does not exist in the namespace 'MyProject.Azure' (are you missing an assembly reference?)
I guess that because my current namespace ends with Azure
, I am confusing C# somehow.
How can I use the top-level NuGet package Azure.Storage.Blobs, instead of try to search my current project?