XML comments not showing up in intellisense

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Bob

    XML comments not showing up in intellisense

    The xml comments I have on my public methods (using summary tag) only shows
    up in the project where the class itself is in. Once I compile the project
    (a class libraray project), and refrence the DLL from another project, the
    comments don't show up anymore in VS.NET interllisense. Does anyone know
    what I need to do for the comments to show up when using the DLL in another
    project?


  • Nicholas Paldino [.NET/C# MVP]

    #2
    Re: XML comments not showing up in intellisense

    Bob,

    In order to get the comments to show up in IntelliSense, you need to
    generate the XML file with the same name as the assembly referenced, except
    the DLL extension is replaced with XML. This file needs to be in the same
    directory as the assembly itself. If VS.NET finds it, then IntelliSense
    will parse the XML file and include the comments.

    Hope this helps.


    --
    - Nicholas Paldino [.NET/C# MVP]
    - mvp@spam.guard. caspershouse.co m

    " Bob" <bobatkpmg@yaho o.com> wrote in message
    news:eb8hgMsMEH A.3380@TK2MSFTN GP11.phx.gbl...[color=blue]
    > The xml comments I have on my public methods (using summary tag) only[/color]
    shows[color=blue]
    > up in the project where the class itself is in. Once I compile the[/color]
    project[color=blue]
    > (a class libraray project), and refrence the DLL from another project, the
    > comments don't show up anymore in VS.NET interllisense. Does anyone know
    > what I need to do for the comments to show up when using the DLL in[/color]
    another[color=blue]
    > project?
    >
    >[/color]


    Comment

    Working...