我正在寻找配置 GhostDoc 以使“值”在单行上,而“摘要”始终在多行上。
有一个“在...下保持单行”选项,但它适用于“摘要”和“值”。
方法的行为表明这是可能的。默认文档将“摘要”放在多行上,但每个“参数”放在一行上。
这是我想要的与默认/选项显示的示例:
//////////// Want this:
/// <summary>
/// Gets or sets the description.
/// </summary>
/// <value>The description.</value>
//////////// With option checked - "Keep single line when under..."
/// <summary>Gets or sets the description.</summary>
/// <value>The description.</value>
//////////// With option unchecked - "Keep single line when under..."
/// <summary>
/// Gets or sets the description.
/// </summary>
/// <value>
/// The description.
/// </value>