Can't deploy library.

  • Thread starter Thread starter Sandman
  • Start date Start date
S

Sandman

Ok, so here's the problem. I write a library and then
attempt to deploy it to the ppc emulator. VS does not
deploy anything. However, if I write a exe and attempt
to deploy it, deploys to the emulator just fine. Any
thoughts?

Thanks
 
You can't deploy a dll on its own because it is a code library, not an
executable. What you need is to add an Application project to the same
solution, set this as the start-up project and then you can deploy your
solution.

Peter
 
Back
Top