VB.Net adds a "default" namespace to all types based on the assembly/project name. So for example, if your project was named "Bar", then a class declared in no namespace would still be called "Foo.MyClass". If you also declared a namespace, say "Bar", then the full name would be "Foo.Bar.MyClass".
Try specifing "<project name>.<class name>" in the attribute. |