Building AsmMeta - follow up
A couple days ago I've written about the error I was getting when building an Windows Mobile control with design time capabilities. What I forgot to write about was the solution for the problem:
The problem occurred because in one of my classes was inheriting from a ReadOnlyCollection
and this is not supported by the genasm.
As it's stated in this Microsoft Forum Thread.
So to work around this problem, I moved the classes that didn't require design time attributes to another assembly and the projects compiled just fine.
Comments
Post a Comment