Using Cecil, I'm modifying an assembly for a certain project to include a few extra interfaces. This is triggered from an AfterBuild target in my project file, which calls a custom task. This works fine. The resulting assembly is modified just as it should be.
However, I have another project with a dependency to the one whose assembly is being modified. While working in a Visual Studio 2013 code editor, Visual Studio doesn't seem to pick up on my generated types at all, even though builds work just fine.
I have tried referencing the generated assembly directly rather than the project, but the result is the same. Somehow the editor doesn't see what the build is seeing.
What might be causing this? How do I get the editor to pick up on these types?
Edit: It looks like the problem isn't visual studio itself, but resharper. When I suspend resharper, the editor no longer shows any red symbols nor does it complain about unresolved symbols.
So now the question is, how do I get resharper to pick up on my generated types?
If the modified assembly's project is loaded in the current solution, ReSharper will use the source code to provide symbols, and so it won't see the generated interfaces. If the project isn't included, and the assembly is just a simple file reference, then ReSharper will pick up the symbols from the assembly's IL + metadata, in which case, the generated interfaces should be visible.