Module driver debugging

How does one debug a module driver? I’m missing something. Must I build a package, install the package, then blind debug the module?

How do I get the module to shop up in the toolbox without package/install?

To debug modules, I usually add a “test project” to the module solution. Then I just add a reference to the module in the test app. Unfortunately, I don’t know a way other than installing it to make it show up in the toolbox :confused:

I install it once and then I just copy module’s debug assembly over. (Post build step)
That way I can debug and step into the code.

Ahh, so I didn’t miss something. It just is a pain in the butt… ;D

Guess I will first follow Steven’s suggestion to get most bugs sorted, then switch to Architect’s for final tests…