Click or drag to resize
Sandcastle Help File BuilderSandcastleProjectCppCommentsFixup Property
This is used to get or set whether to fix-up the XML comments files to work around an issue with those generated by the C++ compiler.

Namespace: SandcastleBuilder.Utils
Assembly: SandcastleBuilder.Utils (in SandcastleBuilder.Utils.dll) Version: 2014.11.22.0
Syntax
public bool CppCommentsFixup { get; set; }

Property Value

Type: Boolean
The default value is false.
Remarks
The C++ compiler generates method signatures that differ from the other .NET compilers for methods that take generics as parameters. These methods fail to get documented as they do not match the output of MRefBuilder. The C# and VB.NET compilers generate names that do match it and this option is not needed for comments files generated by them. Set this to true if the project contains C++ compiler generated XML comments files and your project contains methods that take generic types for parameters.
See Also