I use Sandcastle to generate chm files for my dlls, but I want to use the VS2010 presentation style.
When I create a chm file with a presentation style of VS2005, the "Usage Note" method is as follows:
Usage Note
In Visual Basic and C
object of type Object. When you use instance method syntax to call this method,
omit the first parameter. For more information, see
Extension Methods (Visual Basic) or Extension Methods (C
where the text "Extension Methods (Visual Basic)" and "Extension Methods (C # Programming Guide)" are links to MSDN sites.
But when I use the VS2010 presentation style (and this is the only property I changed), I get the following:
Usage Note
In Visual Basic and C
object of type Object. When you use instance method syntax to call this method,
omit the first parameter. For more information, see
[b8020aae-374d-46a9-bcb7-8cc2390b93b6] or [175ce3ff-9bbf-4e64-8421-faeb81a0bb51].
So no links, but Guides. The question is how to get links in the style of VS2010 in the same way as in the style of VS2005.
source
share