ZviBar
ZviBar

Reputation: 10088

Determining .dll dependencies in Visual Studio Express Edition C#

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

Answers (1)

2power10
2power10

Reputation: 1279

You could use Dependency Walker to determine dll dependencies.

http://www.dependencywalker.com/

Upvotes: 1

Related Questions