All I wanted to do is make a simple DLL that I could call from VB. Last time I made a DLL was in VC++ 6.0 and it was fairly easy. Now I am trying to do the same thing in visual studio 2008 and it's changed and I an not sure how to deploy it.

It appears one can no longer just generate a .DLL file for simple distribution. Instead, I get the following files after I build with no errors:

The debug directory:
BuildLog.htm
MyDll.dll.embed.manifest
MyDll.dll.embed.manifest.res
MyDll.dll.intermediate.manifest
MyDll.obj
MyDll.pch
MyDll.res
mt.dep
stdafx.obj
vc90.idb
vc90.pdb



Release directory:

MyDll.dll.intermediate.manifest
MyDll.obj
MyDll.pch
MyDll.res
mt.dep
stdafx.obj
vc90.idb
vc90.pdb


So what file is my actual DLL to be called from VB?

How can I deploy this file?