Sean
Sean

Reputation: 4470

Does <include> comment tag suppress intellisense?

I was playing around with the idea of using Visual Studio's < include > tag to store some or all my code documentation separately from it's source, but when I tried creating a test xml file and pointed at it using the include for some of my methods, I discovered that intellisense didn't work for those methods.

Is the include tag for xml comments supposed to support intellisense, or is it not supported (for what I assume would be reasons of practicality)? If it is supported, then what might I be doing wrong? I'm pretty sure that my XPath is well formed, since StyleCop wasn't complaining about it.

I'm using VS2008, and I recently installed Resharper, StyleCop and StyleCop for Resharper.

Upvotes: 2

Views: 486

Answers (1)

Oleg Tkachenko
Oleg Tkachenko

Reputation: 2816

Unfortunately it's not supported neither in V2008 nor in VS2010 :(

I'm not sure about particular reason, but most likely because there weren't enough requests to implement it from customers both internally and externally of Microsoft.

We might consider implementing it in VS.next though. It would help if you file it as a bug on Microsoft Connect (http://connect.microsoft.com/VisualStudio) - then (provided there is a real demand for this feature) people would vote for it creating a pressure on Microsoft to implement it.

Upvotes: 3

Related Questions