I am trying to migrate a VS 2003 custom control to VS 2005. There
exists a custom designer for this control in a separate assembly. The
designer is attached to the control via the Designer attribute using
only strings instead of the types.
In order for VS 2003 to find the designer assembly, I had listed its
directory under the AssemblyFolders registry key, but this key doees
not exist for VS 2005. So does anybody know, how do I have to register
the designer assembly such that VS 2005 will find it when designing my
custom controls?
Thanks
Peter
peter.pohmann@dataweb.de - 28 Dec 2005 17:07 GMT
Problem solved:
Instead of HKLM\Software\Microsoft\VisualStudio\7.1\AssemblyFolders
I put the directory now under
HKLM\Microsoft\.NETFramework\AssemblyFolders
Visual Studio seems to look it up there as well.
Thanks
Peter