Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

An unhandled exception of type 'System.IO.FileNotFoundException' occurred in Unknown Module

I am developing a c# application and I get the following error at debug runtime:

An unhandled exception of type 'System.IO.FileNotFoundException' occurred in Unknown Module.

Additional information: Could not load file or assembly 'Autodesk.Navisworks.Timeliner.dll' or one of its dependencies. The specified module could not be found.

Autodesk.Navisworks.Timeliner.dll is in the debug folder of the application. I have repaired the .net framework (version 4) but it did not resolve it. Any ideas on how to resolve this issue? Thanks.

like image 870
mj1261829 Avatar asked Mar 15 '12 23:03

mj1261829


People also ask

How do I fix the application is in break mode?

To help resolve "The Application is in Break Mode": The underlying errors to help you find out where the runtime is failing can be gotten by enabling Common Language Runtime Exceptions under Exception Settings, accessible from the Debug dropdown menu, navigate to Windows, navigate to Exception Settings.


1 Answers

Enable this option in VS: Just My Code option

Tools -> Options -> Debugging -> General -> Enable Just My Code (Managed only)

like image 119
Nanu Avatar answered Sep 28 '22 11:09

Nanu