In my solution, I have a project (let's say 'PRJ1' ) which has a type inside, say MyAttribute1 that implements UITypeEditor.
In another project,I reference PRJ1 and use MyAttribute1 as an attribute for a property.
The problem is, when I build the solution, prj1.dll does not copy in the final solution dir. This lead to CurrentDomain_AssemblyResolve to be fired. If I create a local field of type MyAttribut1e, everything is OK!
What is the problem? What I'm missing here?