I'm using Sandcastle Help File Builder GUI and I can't seem to get code examples in my comments to appear in the help file output.
I'm generating Help 1.x and MSDN-style HTML documentation.
The examples look like the following in my code:
/// <summary>
/// Connects to the server
/// </summary>
/// <example> Connecting to localhost
/// <code>
/// Client client = new Client(true);
/// EndPoint localhost = new IPEndPoint(IPAddress.Loopback, 8888);
/// client.Connect(localhost);
/// </code>
/// </example>
Do I need to configure some Project Property which is unknown to me?