I have a issue when i try to add the namespace Azure.Storage.Blobs as using to a class. It is caused by another referenced NuGet package called CopmanyName.Azure
When i add using Azure.Storage.Blobs it shows me the subnamespaces from CopmanyName.Azure.
However i want to add the using from Azure.Storage.Blobs. This is caused due to a maching project stucture CompanyName.Azure.D365FO and reference NuGet package Company.Azure.
See the sturcture of the main project: ProjectStructure and the structure of the referenced project: ReferencedProjectStructur
Is there any way to get arround this problem without changing structures of namespaces in the current projects? So i get to the result below.
namespace CompanyName.Azure.Model.CSP
{
#if NET46
using Microsoft.WindowsAzure.Storage.Blob;
#else
using Azure.Storage.Blobs;
#endif