I just downloaded PoshConsole\'s source code and was trying to build the solution. I initially had two problem -
the System.Interactivity.dll could not be
I have received this error message for another (non-GAC, custom) assembly.
In my case, the situation was as follows:
Y referenced X, Z referenced Y.
The error message was pointing to the line in the data template in Z where B was referenced, and pointed out that X could not be loaded.
The solution was to have Z also reference X. Apparently, the compiler cannot resolve that transitive reference for loading the required assemblies on its own.