FE0001
From Pigmeo - .NET/Mono/CLI (C#, VB.NET, C++/CLI, Nemerle...) for microcontrollers (PIC, dsPIC, AVR...)
Unable to load assembly
The assembly (usually a .dll file) your application (the .exe file) requires was not found.
Common mistakes
Library not installed into the GAC
You forgot to install a library into the Global Assembly Cache, a database where libraries available for all the applications in your system are stored.
Library not copied locally
The libraries your application references to must be installed into the GAC or placed in the same directory as your application.
Maybe you referenced a library when you compiled your application but that library wasn't copied to the output folder (the directory where the compiled .exe file is stored, usually bin/Debug or bin/Release).
Category: Frontend errors

