Click here to Skip to main content
15,891,431 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
We are facing the below error while running Windows Service related to our application. We have cross checked with our code , we are not referencing any Coverage related DLL’s

Writer Library : Queue Iintialization Error. Message:Unable to load DLL 'coverage': The specified module could not be found. (Exception from HRESULT: 0x8007007E) -- stack:System.DllNotFoundException: Unable to load DLL 'coverage': The specified module could not be found. (Exception from HRESULT: 0x8007007E)
Posted
Comments
[no name] 2-May-14 23:12pm    
Somewhere, somehow, in your code, you are. There is a 99.999999999% certainty that the compiler is not lying to you. Another DLL that you reference has a dependency on that DLL that you are missing perhaps.
Sergey Alexandrovich Kryukov 3-May-14 0:09am    
If this is the mystery even for you, how can we see what have you done to screw up things, without seeing your project?
—SA

1 solution

Do the following: at the root directory of all your projects, try to perform a full-text search for the string "coverage". I bet you will find the place where you try to open or reference it. (Better clean all the projects before doing is, you can simply remove all "obj" sub-directories.) When you find it out and if you still cannot resolve the problem, ask a question providing more information (please see my comment to the question).

—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900