In my project I had installed the Microsoft.Azure.Management.Fluent
package (version 1.27) to do resource management for my azure subscription. My connection object looks like this:
AzureCredentials credentials = GenerateCredentials(); // custom method that returns my creds.
IAzure azureConn = Azure
.Configure()
.Authenticate(credentials)
.WithDefaultSubscription();
This worked fine. Today, I installed Azure.Storage.Blobs
package with Nuget
(version 12.4). After installing this package, I got an error:
> CS0234 C# The type or namespace name 'Configure' does not exist in the
> namespace 'Azure' (are you missing an assembly reference?)
When I uninstall the Azure.Storage.Blobs
package, the error disappears. What might be going on here? I am using it in a Net Core 2.2 MVC project.