Skip to content

Commit b8a46b7

Browse files
committed
added supported frameworks doc
1 parent c215f2b commit b8a46b7

File tree

3 files changed

+67
-2
lines changed

3 files changed

+67
-2
lines changed

src/site/antora/modules/ROOT/nav.adoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
** xref:manual/layouts.adoc[]
4545
** xref:manual/installation.adoc[]
4646
* xref:features.adoc[]
47+
* xref:supported-frameworks.adoc[]
4748
* xref:release-notes.adoc[]
4849
* xref:release-review.adoc[]
4950
* {logging-services-url}/support.html[Support]

src/site/antora/modules/ROOT/pages/manual/layouts.adoc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ An xref:manual/appenders.adoc[appender] uses a *layout* to encode a LogEvent int
2121
This page will try to answer following questions:
2222
2323
* <<concerns,What are some common concerns shared by all predefined layouts?>>
24-
* <<collection,Which layouts does log4net provide?>>
25-
* <<extending,How can you create custom layouts?>>
24+
* <<predefined-layouts,Which layouts does log4net provide?>>
2625
2726
[#concerns]
2827
== Common Concerns
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
////
2+
Licensed to the Apache Software Foundation (ASF) under one or more
3+
contributor license agreements. See the NOTICE file distributed with
4+
this work for additional information regarding copyright ownership.
5+
The ASF licenses this file to You under the Apache License, Version 2.0
6+
(the "License"); you may not use this file except in compliance with
7+
the License. You may obtain a copy of the License at
8+
9+
http://www.apache.org/licenses/LICENSE-2.0
10+
11+
Unless required by applicable law or agreed to in writing, software
12+
distributed under the License is distributed on an "AS IS" BASIS,
13+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
See the License for the specific language governing permissions and
15+
limitations under the License.
16+
////
17+
18+
= Supported Frameworks
19+
20+
This document summarizes the .NET frameworks supported by log4net.
21+
22+
The log4net project is actively built and tested by its maintainers against the following target frameworks:
23+
24+
[cols="Framework,Website"]
25+
|===
26+
| Framework | Website
27+
28+
| Microsoft .NET 8 (via .NET Standard 2.0)
29+
| https://dotnet.microsoft.com/en-us/download/dotnet/8.0
30+
31+
| Microsoft .NET Framework 4.6.2
32+
| http://msdn.microsoft.com/en-us/netframework/
33+
|===
34+
35+
[#appenders]
36+
== Supported Appenders
37+
38+
The following appenders are supported on the specified frameworks:
39+
40+
[cols="Appender,net462,netstandard2.0"]
41+
|===
42+
| Appender | .NET Framework 4.6.2 | .NET Standard 2.0
43+
44+
| AdoNetAppender | x | x
45+
| AnsiColorTerminalAppender | x | x
46+
| AspNetTraceAppender | x |
47+
| BufferingForwardingAppender | x | x
48+
| ColoredConsoleAppender | x | x
49+
| ConsoleAppender | x | x
50+
| DebugAppender | x | x
51+
| EventLogAppender | x |
52+
| FileAppender | x | x
53+
| ForwardingAppender | x | x
54+
| LocalSyslogAppender | x | x
55+
| ManagedColoredConsoleAppender | x | x
56+
| MemoryAppender | x | x
57+
| OutputDebugStringAppender | x | x
58+
| RemoteSyslogAppender | x | x
59+
| RollingFileAppender | x | x
60+
| SmtpAppender | x | x
61+
| SmtpPickupDirAppender | x | x
62+
| TelnetAppender | x | x
63+
| TraceAppender | x | x
64+
| UdpAppender | x | x
65+
|===

0 commit comments

Comments
 (0)