开发者

.NET Assembly References Overview

开发者 https://www.devze.com 2023-01-12 21:00 出处:网络
Does anybody know of a good tool or piece of code that will allow me to produce an overview of the assembly references a project is using?

Does anybody know of a good tool or piece of code that will allow me to produce an overview of the assembly references a project is using?

开发者_C百科

I'd like to see the Assembly Name, version, path, etc of all the assemblies in a spreadsheet format.

Thanks


You can always use http://dependencyvisualizer.codeplex.com/. You can also set different output formats (i.e. spreadsheet).


Reflector for .NET will show you the references an assembly has (as with ildasm), but the .NET Assembly type also has this information.

So probably easiest to create your own tool that uses Assembly.Load to get the Assembly instance and call its GetReferencedAssemblies method. You can then save the data in whatever format you like (possibly including automating Excel).

0

精彩评论

暂无评论...
验证码 换一张
取 消