Reputation: 145
I'm building a dll(c# assembly which implements some interfaces) that's called by another app. the dll built on my machine works but the one built on our build machine does not work. I have very little control on that app and can not debug it, I can only see the output of it. Is there any way to check the differences of the dlls? I have used reflector, but it only shows limited info like classes and methods. I also tried building it on other machines with vs2005, xps can create correctly, server 2008 and win7 can not. could you guys help me with it? any help would be appreciated. If I was not clear, please let me know. Thank you!
Upvotes: 0
Views: 92
Reputation: 14755
Since you didn-t tell us the error-symptoms of "does not work" here is my guess formulated as a question:
Does your dll reference other dlls that are installed in global-assembly-cache? do all build machines have the same version of the gac-dll installed?
Upvotes: 1