Skip to content

Commit 406c0c1

Browse files
authored
Updated XML docs to point to the moved Wiki-pages (#203)
1 parent a3747e5 commit 406c0c1

File tree

5 files changed

+19
-4
lines changed

5 files changed

+19
-4
lines changed

NLog.Windows.Forms/FormControlTarget.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ namespace NLog.Windows.Forms
99
/// <summary>
1010
/// Logs text to Windows.Forms.Control.Text property control of specified Name.
1111
/// </summary>
12+
/// <remarks>
13+
/// <a href="https://github.com/NLog/NLog.Windows.Forms/wiki/FormControlTarget">See NLog Wiki</a>
14+
/// </remarks>
15+
/// <seealso href="https://github.com/NLog/NLog.Windows.Forms/wiki/FormControlTarget">Documentation on NLog Wiki</seealso>
1216
/// <example>
1317
/// <p>
1418
/// To set up the target in the <a href="config.html">configuration file</a>,

NLog.Windows.Forms/MessageBoxTarget.cs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ namespace NLog.Windows.Forms
1111
/// <summary>
1212
/// Pops up log messages as message boxes.
1313
/// </summary>
14-
/// <seealso href="https://github.com/nlog/nlog/wiki/MessageBox-target">Documentation on NLog Wiki</seealso>
14+
/// <remarks>
15+
/// <a href="https://github.com/NLog/NLog.Windows.Forms/wiki/MessageBoxTarget">See NLog Wiki</a>
16+
/// </remarks>
17+
/// <seealso href="https://github.com/NLog/NLog.Windows.Forms/wiki/MessageBoxTarget">Documentation on NLog Wiki</seealso>
1518
/// <example>
1619
/// <p>
1720
/// To set up the target in the <a href="config.html">configuration file</a>,
@@ -109,4 +112,4 @@ protected override void Write(IList<AsyncLogEventInfo> logEvents)
109112
}
110113
}
111114
}
112-
}
115+
}

NLog.Windows.Forms/RichTextBoxLinkLayoutRenderer .cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ namespace NLog.Windows.Forms
1010
/// <summary>
1111
/// Strings rendered with this rendrer would convert to links in the control. <see cref="RichTextBoxTarget.SupportLinks" />
1212
/// </summary>
13+
/// <seealso href="https://github.com/NLog/NLog.Windows.Forms/wiki/RTB-Link-Layout-Renderer">Documentation on NLog Wiki</seealso>
1314
/// <remarks>
1415
/// Internally this renderer replaces the rendered text with a GUID and stores the info in <see cref="LogEventInfo.Properties" /> by <see cref="LinkInfo.PropertyName" /> as a key
1516
/// Actual rendering is done in <see cref="RichTextBoxTarget.SendTheMessageToRichTextBox" />
@@ -90,4 +91,4 @@ internal void Add(string guid, string linkText)
9091
}
9192
}
9293
}
93-
}
94+
}

NLog.Windows.Forms/RichTextBoxTarget.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@ namespace NLog.Windows.Forms
1515
/// <summary>
1616
/// Log text a Rich Text Box control in an existing or new form.
1717
/// </summary>
18-
/// <seealso href="https://github.com/nlog/nlog/wiki/RichTextBox-target">Documentation on NLog Wiki</seealso>
18+
/// <remarks>
19+
/// <a href="https://github.com/NLog/NLog.Windows.Forms/wiki/RichTextBoxTarget">See NLog Wiki</a>
20+
/// </remarks>
21+
/// <seealso href="https://github.com/NLog/NLog.Windows.Forms/wiki/RichTextBoxTarget">Documentation on NLog Wiki</seealso>
1922
/// <example>
2023
/// <p>
2124
/// To set up the target in the <a href="config.html">configuration file</a>,

NLog.Windows.Forms/ToolStripItemTarget.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ namespace NLog.Windows.Forms
99
/// <summary>
1010
/// Logs text to Windows.Forms.ToolStripItem.Text property control of specified Name.
1111
/// </summary>
12+
/// <remarks>
13+
/// <a href="https://github.com/NLog/NLog.Windows.Forms/wiki/ToolStripItemTarget">See NLog Wiki</a>
14+
/// </remarks>
15+
/// <seealso href="https://github.com/NLog/NLog.Windows.Forms/wiki/ToolStripItemTarget">Documentation on NLog Wiki</seealso>
1216
/// <example>
1317
/// <p>
1418
/// To set up the target in the <a href="config.html">configuration file</a>,

0 commit comments

Comments
 (0)