Hi and thanks for reading.

I'm trying to develop a generic class that uses Imports statements. Right now, the Imports reference the name of a specific project (e.g. "Imports WWRIS.DataAccessLayer" and "Imports WWRIS.Global"), I want to eliminate the "WWRIS" part to make the class truly generic (e.g. "Imports [Project Default Namespace].DataAccessLayer"). Is this possible?

I know I could remove the namespace for a project altogether, but I would prefer not too.

Thanks,
OneSource