0

In my ASP.NET application I am getting an error sometimes. When I refresh the page error will be gone. The error is,

Could not load file or assembly 'FSharp.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified.

I am thinking that some of my app assemblies reference this assembly. Is it possible to get all refrences recursively. I mean, I will get all reference assemblies of my application, all reference assemblies of my application's reference assemblies and so on.

Imran Qadir Baksh - Baloch
  • 32,612
  • 68
  • 179
  • 322

3 Answers3

1

Use this tool to find the DEpendencies

"NDepend"

http://www.ndepend.com

Murugan
  • 1,441
  • 1
  • 12
  • 22
  • Once you add your applicatin in it, then it will provide a result with all the assessmeblies used in your application and its Dependecies information. See the sample report in below link. http://www.ndepend.com/Res/NDependBig02.png Try a Trial Version. – Murugan Apr 30 '13 at 09:54
1

You can use a free AssemblyInfo tool to see the assembly dependency graph.

alex
  • 12,464
  • 3
  • 46
  • 67
0

You can investigate your assemblies for references using a tool like .NET Reflector

Stefan P.
  • 9,489
  • 6
  • 29
  • 43