vote up 1 vote down star

Is there a way of getting all required assemblies (excluding the .net framework) for a .net project into a folder ready to be packaged into an nsis as setup file?

I've tried writing a small console app that uses reflection to get a list of dlls but have got stuck with finding a foolproof way of determining if a dll is from the .net framework or not.

The answer could be a simple switch in Visual Studio to output all dependencies, or a standalone app that can do it, or a plugin for Nsis, or some information on reflection that I've missed.

flag

In terms of the foolproof way of determining if a dll is from the .net framework or not, the best I can do is the using the Codebase property of the Assembly object, which for mscorlib is "C:\WINDOWS\Microsoft.NET\Framework, however it isn't for all .net framework assemblies. – Dave Arkell Sep 9 '08 at 15:03
You want to be careful with this, depending on what your NSIS installer is for. You might find that you accidentally include a DLL in your installer which you don't have a license to redistribute. – Free Wildebeest Sep 14 '08 at 23:49

3 Answers

vote up 1 vote down check

In Visual Studio (2005 at least - what I'm using right now), each reference that you have associated to a project has a property called "Copy Local", this can be set to true/false. When true it will copy the dll's for you into the current configuration directory.

link|flag
vote up 0 vote down

Dependency Walker is what you need. Or maybe Depends.Net

link|flag
1  
Dependency Walker does not resolve assembly references (see dependencywalker.com/faq.html) – Christian.K Nov 21 '08 at 10:48
vote up 1 vote down

You can use NDepend for this. Download it, build a new NDepend project, drag&drop your assemblies in the Application Assemblies data grid view, and you'll see NDepend resolving instantly the tier assemblies needed by your set of Application Assemblies.

You can also provide a list of folders to tell NDepend where to look. If a tier assembly can't be found, then NDepend will mark it as not found, which I think is a valuable information.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.