Unable to load DLL 'fusion.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E)
See original GitHub issueEnvironment: VS 2017 Community edition 15.5.2 dotnet --version => 2.1.2 Windows 10 Enterprise
Steps to reproduce this bug:
- Create a simple console application using default template
- Add these Nuget packages:
<ItemGroup>
<PackageReference Include="WindowsAzure.Storage" Version="8.7.0" />
<PackageReference Include="Microsoft.WindowsAzure.ConfigurationManager" Version="3.2.3" />
</ItemGroup>
- Write these lines of codes to get a container:
var accessKey = "your access key";
CloudStorageAccount storageAccount = CloudStorageAccount.Parse(CloudConfigurationManager.GetSetting(accessKey));
CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();
CloudBlobContainer container = blobClient.GetContainerReference("images");
- Run the application
Issue Analytics
- State:
- Created 6 years ago
- Comments:6 (1 by maintainers)
Top Results From Across the Web
fusion.dll on Azure storage using Visual Studio for Mac
System.DllNotFoundException: fusion.dll. AFAIK, Fusion.dll is a type of DLL file associated with Microsoft .NET Framework for the Windows ...
Read more >Error when you try to copy content to Azure
DllNotFoundException,Message=Unable to load DLL 'jvm.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E) ...
Read more >System.DllNotFoundException: Unable to Load DLL 'file. ...
DllNotFoundException: Unable to Load DLL 'file. dll'. The specified module could not be found. (Exception from HRESULT: 0x8007007E)
Read more >Unable to call method because (Unable to load DLL
Unable to call method because (Unable to load DLL '': The specified module could not be found. (Exception from HRESUClosed - Not Enough...
Read more >ASP.Net returns- Unable to load DLL 'sybdrvado11.dll'
DllNotFoundException: Unable to load DLL 'sybdrvado11.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E) at. Sybase.Data.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
This issue was moved to Azure/azure-sdk-for-net#4010
I see the same issue when I try to use Microsoft.WindowsAzure.ConfigurationManager in ASP.NET Core Web Application. ASP.NET Web Application(.NET Framework) do not have this problem.