Reputation: 10088
I have written a small program in C# in Visual Studio Express 2008
. How do I determine which dll's this app requires, so that I could distribute it along with the required files?
Note:
Visual Studio Express 2008 comes without the Modules Window ('Debug->Windows->Modules').
Upvotes: 0
Views: 168
Reputation: 1279
You could use Dependency Walker to determine dll dependencies.
http://www.dependencywalker.com/
Upvotes: 1