dll

hi,

is there a way to see which dll's are used for the project.

when i deploy my project t another computer i can not execute it. there is an system.dllnotfound error message. i am not sure if it is lookin for system.dll or another one. if it looks for system.dll (which system.dll).

any ideas  

 

 



Answer this question

dll

  • scott fluto

    hi,

    may be, that the free tool "Dependancy Walker" (http://www.dependencywalker.com/) can help. It shows which modules are used/needed/missing by e.g. a programs exe- or dll-Files

    regards AxelF


  • hasfad

    make sure the .net frame work is installed on the computer you are trying to run the project on also.

  • KFITZIE

    System.Reflection.Assembly.GetExecutingAssembly().GetReferencedAssemblies()

     

    You cannot see sub reference (if a dll in your program use an other dll)



  • dll