| SandcastleProjectCppCommentsFixup 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.UtilsAssembly: SandcastleBuilder.Utils (in SandcastleBuilder.Utils.dll) Version: 2014.11.22.0
Syntax public bool CppCommentsFixup { get; set; }
Public Property CppCommentsFixup As Boolean
Get
Set
public:
property bool CppCommentsFixup {
bool get ();
void set (bool value);
}
member CppCommentsFixup : bool with get, set
Property Value
Type:
BooleanThe 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