How do you get XML comments to appear in a different project (dll)?

Viewed 12422
/// <summary>
/// This method does something...
/// </summary>
public void DoSomething() 
{
    // code...
}

When using that method/class etc... in a different .dll the comments do not show up.

1 Answers
Related