Visual Studio editor doesn't see my generated types

283 Views Asked by At

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?

3

There are 3 best solutions below

0
On

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.

1
On

If Resharper is getting confused then you can try clearing the caches: Resharper->Options...->Environment->General and click the Clear Caches button.

0
On

I’ve just encountered the same problem. Here is the issue reported in Jetbrain’s forum:

ReSharper IntelliSense ANTLR support

And in the comments, you can find the solution: an extension to Resharper called External Code.

This works for me. Although after every build VS asks whether to reload the (generated) source that was modified outside of VS which is a little inconvenient.