|
dev
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Listing the dlls used by a .NET app and static linkingIs there a tool that lists out all the .NET framework dynamically
loaded libraries that are going to be loaded by a .NET exe? Also, is there an easy way to statically link a .NET application so that the .NET framework doesn't need to be installed on the target machine? > Is there a tool that lists out all the .NET framework dynamically Yes and no .. for the ones that have references added this is readily > loaded libraries that are going to be loaded by a .NET exe? available. The assembly may however use Assembly.Load() Assembly.LoadFrom etc in which case this information would not be available. http://www.codeproject.com/dotnet/Assemblydependencies.asp?df=100&forumid=31276&exp=0&select=977211 includes an example application which does this .. it is realtively straight forward. > Also, is there an easy way to statically link a .NET application so Salamander and some others support things such as this > that the .NET framework doesn't need to be installed on the target > machine? http://www.remotesoft.com/linker/ Cheers, Greg Young MVP - C# http://codebetter.com/blogs/gregyoung Show quote "James A. Bowery" <jabow***@gmail.com> wrote in message news:1155665108.389083.233410@m73g2000cwd.googlegroups.com... > Is there a tool that lists out all the .NET framework dynamically > loaded libraries that are going to be loaded by a .NET exe? > > Also, is there an easy way to statically link a .NET application so > that the .NET framework doesn't need to be installed on the target > machine? > |
|||||||||||||||||||||||