Porting VS 2005 => 2010: "Could not load file or assembly..." [SOLVED]
-
Hi all, I'm porting a C# 2 application from Visual Studio 2005 to 2010 .Net 4, and getting a baffling error: "Error 1 'Could not load file or assembly 'Aurigma.GraphicsMill' or one of its dependencies. Could not find or load a specific file. (Exception from HRESULT: 0x80131621)' C:\Alan\Label Designer\64-bit\Source\LabelDesigner\LC LabelDesigner" It's complaining about not being able to load Aurigma.GraphicsMill but the damn DLL is there! It's maddening. The same files run perfectly under VS 2005. It also mentions an "LC" file, but no file has anything like that name anywhere under this project folder, or the original which compiles. I tried deleting the GraphicsMill reference and re-adding it, but got the same results. Wasted hours on this; I'm calling it a day. Can anyone make any suggestions of what to try next?
-
Hi all, I'm porting a C# 2 application from Visual Studio 2005 to 2010 .Net 4, and getting a baffling error: "Error 1 'Could not load file or assembly 'Aurigma.GraphicsMill' or one of its dependencies. Could not find or load a specific file. (Exception from HRESULT: 0x80131621)' C:\Alan\Label Designer\64-bit\Source\LabelDesigner\LC LabelDesigner" It's complaining about not being able to load Aurigma.GraphicsMill but the damn DLL is there! It's maddening. The same files run perfectly under VS 2005. It also mentions an "LC" file, but no file has anything like that name anywhere under this project folder, or the original which compiles. I tried deleting the GraphicsMill reference and re-adding it, but got the same results. Wasted hours on this; I'm calling it a day. Can anyone make any suggestions of what to try next?
I noticed the
64-bit
in your path above. Could it be that you are creating a 64-bit app and this dll is a) stored in the 32-bit directory or b) not available in 64-bit? Just a guess.Unrequited desire is character building. OriginalGriff I'm sitting here giving you a standing ovation - Len Goodman
-
I noticed the
64-bit
in your path above. Could it be that you are creating a 64-bit app and this dll is a) stored in the 32-bit directory or b) not available in 64-bit? Just a guess.Unrequited desire is character building. OriginalGriff I'm sitting here giving you a standing ovation - Len Goodman
Thanks for the suggestion, but at this point it's 32-bit. (64-bit is a later goal, but the first step is just to get it working under VS 2010.)
-
Thanks for the suggestion, but at this point it's 32-bit. (64-bit is a later goal, but the first step is just to get it working under VS 2010.)
I put that error code into Google and came up with this[^]; the first link looks like it may be of use - if you understand what they are saying.
Unrequited desire is character building. OriginalGriff I'm sitting here giving you a standing ovation - Len Goodman
-
I put that error code into Google and came up with this[^]; the first link looks like it may be of use - if you understand what they are saying.
Unrequited desire is character building. OriginalGriff I'm sitting here giving you a standing ovation - Len Goodman
Thanks. I did the same thing! Great minds think alike. Microsoft has no workaround for this artificial "bug" they've caused. I've emailed Aurigma to see they have an updated DLL for .NET 4.
-
Hi all, I'm porting a C# 2 application from Visual Studio 2005 to 2010 .Net 4, and getting a baffling error: "Error 1 'Could not load file or assembly 'Aurigma.GraphicsMill' or one of its dependencies. Could not find or load a specific file. (Exception from HRESULT: 0x80131621)' C:\Alan\Label Designer\64-bit\Source\LabelDesigner\LC LabelDesigner" It's complaining about not being able to load Aurigma.GraphicsMill but the damn DLL is there! It's maddening. The same files run perfectly under VS 2005. It also mentions an "LC" file, but no file has anything like that name anywhere under this project folder, or the original which compiles. I tried deleting the GraphicsMill reference and re-adding it, but got the same results. Wasted hours on this; I'm calling it a day. Can anyone make any suggestions of what to try next?