10000 CsvLayout - Fixed links to NLog Wiki in XML docs by hangy · Pull Request #5475 · NLog/NLog · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

CsvLayout - Fixed links to NLog Wiki in XML docs #5475

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/NLog/Layouts/CSV/CsvLayout.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ namespace NLog.Layouts
/// <para>
/// If <see cref="LayoutWithHeaderAndFooter.Header"/> is set, then the header generation with column names will be disabled.
/// </para>
/// <a href="https://github.com/NLog/NLog/wiki/JsonLayout">See NLog Wiki</a>
/// <a href="https://github.com/NLog/NLog/wiki/CsvLayout">See NLog Wiki</a>
/// </remarks>
/// <seealso href="https://github.com/NLog/NLog/wiki/JsonLayout">Documentation on NLog Wiki</seealso>
/// <seealso href="https://github.com/NLog/NLog/wiki/CsvLayout">Documentation on NLog Wiki</seealso>
[Layout("CsvLayout")]
[ThreadAgnostic]
[AppDomainFixedOutput]
Expand Down Expand Up @@ -318,4 +318,4 @@ public override string ToString()
return ToStringWithNestedItems(Columns, c => c.Name);
}
}
}
}
0