Weird DLL issue
Options
I have found a few posts dealing with this issue but none match exactly what is happening here.
I have a DLL in the BIN folder of a Visual Studio project. I am using a class from that assembly which works great. I added a new method to this class, rebuilt, and linqpad can see the new method, however, when I execute my query I get the MissingMethodException for that method. How is this possible? I am referencing the DLL located in the bin folder and have no other reference to it set anywhere.
I have a DLL in the BIN folder of a Visual Studio project. I am using a class from that assembly which works great. I added a new method to this class, rebuilt, and linqpad can see the new method, however, when I execute my query I get the MissingMethodException for that method. How is this possible? I am referencing the DLL located in the bin folder and have no other reference to it set anywhere.
Comments
-
Is there another copy of the DLL in the folder where LINQPad.exe exists?
-
Turns out I had an inner dependency issue. This was resolved when I added the library that the first DLL required. Nothing to see here.