Question Removing a dll reference

mpiontek

New member
Joined
Feb 13, 2009
Messages
4
Programming Experience
10+
I have a class that was originally compiled as a separate .dll file and included in the project properties as a file reference. I want to take the class code and embed it into a module within the project. When I do that and remove the reference to the original .dll file, the build fails because it can't find the class. I have a feeling that I just need to set something somewhere that I'm missing. Any ideas?
 
When you referenced it the namespace qualified type was prehaps ClassLibrary1.SomeClass, when you add the class to the application it may now be WindowsApplication1.SomeClass.
Fixing it can most likely be done by double-clicking the errors and updating the type names.
 
Back
Top