nlog 1.0.0.505-mswin32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/docs/LICENSE.txt +32 -0
- data/docs/NLog.chm +0 -0
- data/docs/NLogC FAQ.txt +23 -0
- data/docs/README.txt +29 -0
- data/docs/examples/ExtendingLoggers/InheritFromLogger/InheritFromLogger.csproj +53 -0
- data/docs/examples/ExtendingLoggers/InheritFromLogger/InheritFromLogger.sln +20 -0
- data/docs/examples/ExtendingLoggers/InheritFromLogger/NLog.config +16 -0
- data/docs/examples/ExtendingLoggers/InheritFromLogger/Program.cs +87 -0
- data/docs/examples/ExtendingLoggers/InheritFromLogger/Properties/AssemblyInfo.cs +33 -0
- data/docs/examples/ExtendingLoggers/LoggerWrapper/LoggerWrapper.csproj +53 -0
- data/docs/examples/ExtendingLoggers/LoggerWrapper/LoggerWrapper.sln +20 -0
- data/docs/examples/ExtendingLoggers/LoggerWrapper/NLog.config +12 -0
- data/docs/examples/ExtendingLoggers/LoggerWrapper/Program.cs +85 -0
- data/docs/examples/ExtendingLoggers/LoggerWrapper/Properties/AssemblyInfo.cs +33 -0
- data/docs/examples/ExtendingLoggers/README.html +39 -0
- data/docs/examples/targets/Configuration API/ASPNetBufferingWrapper/ASPNetBufferingWrapper.csproj +95 -0
- data/docs/examples/targets/Configuration API/ASPNetBufferingWrapper/ASPNetBufferingWrapper.sln +20 -0
- data/docs/examples/targets/Configuration API/ASPNetBufferingWrapper/Global.asax +1 -0
- data/docs/examples/targets/Configuration API/ASPNetBufferingWrapper/Global.asax.cs +40 -0
- data/docs/examples/targets/Configuration API/ASPNetBufferingWrapper/NormalPage.aspx +16 -0
- data/docs/examples/targets/Configuration API/ASPNetBufferingWrapper/NormalPage.aspx.cs +30 -0
- data/docs/examples/targets/Configuration API/ASPNetBufferingWrapper/NormalPage.aspx.designer.cs +18 -0
- data/docs/examples/targets/Configuration API/ASPNetBufferingWrapper/PageWithWarnings.aspx +16 -0
- data/docs/examples/targets/Configuration API/ASPNetBufferingWrapper/PageWithWarnings.aspx.cs +32 -0
- data/docs/examples/targets/Configuration API/ASPNetBufferingWrapper/PageWithWarnings.aspx.designer.cs +18 -0
- data/docs/examples/targets/Configuration API/ASPNetBufferingWrapper/Properties/AssemblyInfo.cs +10 -0
- data/docs/examples/targets/Configuration API/ASPNetBufferingWrapper/Web.config +22 -0
- data/docs/examples/targets/Configuration API/ASPNetTrace/ASPNetTraceTest.csproj +130 -0
- data/docs/examples/targets/Configuration API/ASPNetTrace/ASPNetTraceTest.sln +20 -0
- data/docs/examples/targets/Configuration API/ASPNetTrace/Global.asax.cs +25 -0
- data/docs/examples/targets/Configuration API/ASPNetTrace/README.txt +4 -0
- data/docs/examples/targets/Configuration API/ASPNetTrace/global.asax +1 -0
- data/docs/examples/targets/Configuration API/ASPNetTrace/test.aspx +23 -0
- data/docs/examples/targets/Configuration API/ASPNetTrace/web.config +8 -0
- data/docs/examples/targets/Configuration API/All_Targets.sln +320 -0
- data/docs/examples/targets/Configuration API/AsyncWrapper/Wrapping File/AsyncWrapper.Wrapping File.csproj +39 -0
- data/docs/examples/targets/Configuration API/AsyncWrapper/Wrapping File/AsyncWrapper.Wrapping File.sln +20 -0
- data/docs/examples/targets/Configuration API/AsyncWrapper/Wrapping File/Example.cs +27 -0
- data/docs/examples/targets/Configuration API/AutoFlushWrapper/Simple/AutoFlushWrapper.csproj +40 -0
- data/docs/examples/targets/Configuration API/AutoFlushWrapper/Simple/AutoFlushWrapper.sln +20 -0
- data/docs/examples/targets/Configuration API/AutoFlushWrapper/Simple/Example.cs +23 -0
- data/docs/examples/targets/Configuration API/BufferingWrapper/Simple/BufferingWrapper.csproj +40 -0
- data/docs/examples/targets/Configuration API/BufferingWrapper/Simple/BufferingWrapper.sln +20 -0
- data/docs/examples/targets/Configuration API/BufferingWrapper/Simple/Example.cs +24 -0
- data/docs/examples/targets/Configuration API/Chainsaw/Simple/Chainsaw.csproj +39 -0
- data/docs/examples/targets/Configuration API/Chainsaw/Simple/Chainsaw.sln +20 -0
- data/docs/examples/targets/Configuration API/Chainsaw/Simple/Example.cs +21 -0
- data/docs/examples/targets/Configuration API/ColoredConsole/Row Highlighting/ColoredConsole.Row Highlighting.csproj +39 -0
- data/docs/examples/targets/Configuration API/ColoredConsole/Row Highlighting/ColoredConsole.Row Highlighting.sln +20 -0
- data/docs/examples/targets/Configuration API/ColoredConsole/Row Highlighting/Example.cs +44 -0
- data/docs/examples/targets/Configuration API/ColoredConsole/Simple/ColoredConsole.csproj +39 -0
- data/docs/examples/targets/Configuration API/ColoredConsole/Simple/ColoredConsole.sln +20 -0
- data/docs/examples/targets/Configuration API/ColoredConsole/Simple/Example.cs +21 -0
- data/docs/examples/targets/Configuration API/ColoredConsole/Word Highlighting/ColoredConsole.Word Highlighting.csproj +39 -0
- data/docs/examples/targets/Configuration API/ColoredConsole/Word Highlighting/ColoredConsole.Word Highlighting.sln +20 -0
- data/docs/examples/targets/Configuration API/ColoredConsole/Word Highlighting/Example.cs +30 -0
- data/docs/examples/targets/Configuration API/Console/Simple/Console.csproj +39 -0
- data/docs/examples/targets/Configuration API/Console/Simple/Console.sln +20 -0
- data/docs/examples/targets/Configuration API/Console/Simple/Example.cs +16 -0
- data/docs/examples/targets/Configuration API/Database/MSSQL/Database.MSSQL.csproj +39 -0
- data/docs/examples/targets/Configuration API/Database/MSSQL/Database.MSSQL.sln +20 -0
- data/docs/examples/targets/Configuration API/Database/MSSQL/Example.cs +43 -0
- data/docs/examples/targets/Configuration API/Database/Oracle.Native/Database.Oracle.Native.csproj +40 -0
- data/docs/examples/targets/Configuration API/Database/Oracle.Native/Database.Oracle.Native.sln +20 -0
- data/docs/examples/targets/Configuration API/Database/Oracle.Native/Example.cs +28 -0
- data/docs/examples/targets/Configuration API/Database/Oracle.OleDb/Database.Oracle.OleDb.csproj +40 -0
- data/docs/examples/targets/Configuration API/Database/Oracle.OleDb/Database.Oracle.OleDb.sln +20 -0
- data/docs/examples/targets/Configuration API/Database/Oracle.OleDb/Example.cs +26 -0
- data/docs/examples/targets/Configuration API/Debug/Simple/Debug.csproj +39 -0
- data/docs/examples/targets/Configuration API/Debug/Simple/Debug.sln +20 -0
- data/docs/examples/targets/Configuration API/Debug/Simple/Example.cs +22 -0
- data/docs/examples/targets/Configuration API/Debugger/Simple/Debugger.csproj +39 -0
- data/docs/examples/targets/Configuration API/Debugger/Simple/Debugger.sln +20 -0
- data/docs/examples/targets/Configuration API/Debugger/Simple/Example.cs +18 -0
- data/docs/examples/targets/Configuration API/EventLog/Simple/EventLog.csproj +39 -0
- data/docs/examples/targets/Configuration API/EventLog/Simple/EventLog.sln +20 -0
- data/docs/examples/targets/Configuration API/EventLog/Simple/Example.cs +20 -0
- data/docs/examples/targets/Configuration API/FallbackGroup/Simple/Example.cs +31 -0
- data/docs/examples/targets/Configuration API/FallbackGroup/Simple/FallbackGroup.csproj +40 -0
- data/docs/examples/targets/Configuration API/FallbackGroup/Simple/FallbackGroup.sln +20 -0
- data/docs/examples/targets/Configuration API/File/Archive1/Example.cs +29 -0
- data/docs/examples/targets/Configuration API/File/Archive1/File.Archive1.csproj +39 -0
- data/docs/examples/targets/Configuration API/File/Archive1/File.Archive1.sln +20 -0
- data/docs/examples/targets/Configuration API/File/Archive2/Example.cs +46 -0
- data/docs/examples/targets/Configuration API/File/Archive2/File.Archive2.csproj +39 -0
- data/docs/examples/targets/Configuration API/File/Archive2/File.Archive2.sln +20 -0
- data/docs/examples/targets/Configuration API/File/Archive3/Example.cs +50 -0
- data/docs/examples/targets/Configuration API/File/Archive3/File.Archive3.csproj +39 -0
- data/docs/examples/targets/Configuration API/File/Archive3/File.Archive3.sln +20 -0
- data/docs/examples/targets/Configuration API/File/Archive4/Example.cs +63 -0
- data/docs/examples/targets/Configuration API/File/Archive4/File.Archive4.csproj +39 -0
- data/docs/examples/targets/Configuration API/File/Archive4/File.Archive4.sln +20 -0
- data/docs/examples/targets/Configuration API/File/Asynchronous/Example.cs +25 -0
- data/docs/examples/targets/Configuration API/File/Asynchronous/File.Asynchronous.csproj +39 -0
- data/docs/examples/targets/Configuration API/File/Asynchronous/File.Asynchronous.sln +20 -0
- data/docs/examples/targets/Configuration API/File/CSV/Example.cs +29 -0
- data/docs/examples/targets/Configuration API/File/CSV/File.CSV.csproj +39 -0
- data/docs/examples/targets/Configuration API/File/CSV/File.CSV.sln +20 -0
- data/docs/examples/targets/Configuration API/File/Multiple/Example.cs +19 -0
- data/docs/examples/targets/Configuration API/File/Multiple/File.Multiple.csproj +39 -0
- data/docs/examples/targets/Configuration API/File/Multiple/File.Multiple.sln +20 -0
- data/docs/examples/targets/Configuration API/File/Multiple2/Example.cs +19 -0
- data/docs/examples/targets/Configuration API/File/Multiple2/File.Multiple2.csproj +39 -0
- data/docs/examples/targets/Configuration API/File/Multiple2/File.Multiple2.sln +20 -0
- data/docs/examples/targets/Configuration API/File/Simple/Example.cs +19 -0
- data/docs/examples/targets/Configuration API/File/Simple/File.csproj +39 -0
- data/docs/examples/targets/Configuration API/File/Simple/File.sln +20 -0
- data/docs/examples/targets/Configuration API/FilteringWrapper/Simple/Example.cs +28 -0
- data/docs/examples/targets/Configuration API/FilteringWrapper/Simple/FilteringWrapper.csproj +40 -0
- data/docs/examples/targets/Configuration API/FilteringWrapper/Simple/FilteringWrapper.sln +20 -0
- data/docs/examples/targets/Configuration API/FormControl/Example.cs +22 -0
- data/docs/examples/targets/Configuration API/FormControl/Form1.Designer.cs +62 -0
- data/docs/examples/targets/Configuration API/FormControl/Form1.cs +36 -0
- data/docs/examples/targets/Configuration API/FormControl/Form1.resx +120 -0
- data/docs/examples/targets/Configuration API/FormControl/FormControl.csproj +81 -0
- data/docs/examples/targets/Configuration API/FormControl/FormControl.sln +20 -0
- data/docs/examples/targets/Configuration API/FormControl/Properties/AssemblyInfo.cs +33 -0
- data/docs/examples/targets/Configuration API/FormControl/Properties/Resources.Designer.cs +71 -0
- data/docs/examples/targets/Configuration API/FormControl/Properties/Resources.resx +117 -0
- data/docs/examples/targets/Configuration API/FormControl/Properties/Settings.Designer.cs +30 -0
- data/docs/examples/targets/Configuration API/FormControl/Properties/Settings.settings +7 -0
- data/docs/examples/targets/Configuration API/MSMQ/Multiple Queues/Example.cs +28 -0
- data/docs/examples/targets/Configuration API/MSMQ/Multiple Queues/MSMQ.Multiple Queues.csproj +39 -0
- data/docs/examples/targets/Configuration API/MSMQ/Multiple Queues/MSMQ.Multiple Queues.sln +20 -0
- data/docs/examples/targets/Configuration API/MSMQ/Simple/Example.cs +28 -0
- data/docs/examples/targets/Configuration API/MSMQ/Simple/MSMQ.csproj +39 -0
- data/docs/examples/targets/Configuration API/MSMQ/Simple/MSMQ.sln +20 -0
- data/docs/examples/targets/Configuration API/Mail/Buffered/Example.cs +48 -0
- data/docs/examples/targets/Configuration API/Mail/Buffered/Mail.Buffered.csproj +39 -0
- data/docs/examples/targets/Configuration API/Mail/Buffered/Mail.Buffered.sln +20 -0
- data/docs/examples/targets/Configuration API/Mail/Simple/Example.cs +33 -0
- data/docs/examples/targets/Configuration API/Mail/Simple/Mail.csproj +39 -0
- data/docs/examples/targets/Configuration API/Mail/Simple/Mail.sln +20 -0
- data/docs/examples/targets/Configuration API/Memory/Simple/Example.cs +23 -0
- data/docs/examples/targets/Configuration API/Memory/Simple/Memory.csproj +39 -0
- data/docs/examples/targets/Configuration API/Memory/Simple/Memory.sln +20 -0
- data/docs/examples/targets/Configuration API/MessageBox/Simple/Example.cs +19 -0
- data/docs/examples/targets/Configuration API/MessageBox/Simple/MessageBox.csproj +39 -0
- data/docs/examples/targets/Configuration API/MessageBox/Simple/MessageBox.sln +20 -0
- data/docs/examples/targets/Configuration API/MethodCall/Simple/Example.cs +27 -0
- data/docs/examples/targets/Configuration API/MethodCall/Simple/MethodCall.csproj +39 -0
- data/docs/examples/targets/Configuration API/MethodCall/Simple/MethodCall.sln +20 -0
- data/docs/examples/targets/Configuration API/NLogViewer/Simple/Example.cs +21 -0
- data/docs/examples/targets/Configuration API/NLogViewer/Simple/NLogViewer.csproj +39 -0
- data/docs/examples/targets/Configuration API/NLogViewer/Simple/NLogViewer.sln +20 -0
- data/docs/examples/targets/Configuration API/Network/Simple/Example.cs +22 -0
- data/docs/examples/targets/Configuration API/Network/Simple/Network.csproj +39 -0
- data/docs/examples/targets/Configuration API/Network/Simple/Network.sln +20 -0
- data/docs/examples/targets/Configuration API/Null/Simple/Example.cs +19 -0
- data/docs/examples/targets/Configuration API/Null/Simple/Null.csproj +40 -0
- data/docs/examples/targets/Configuration API/Null/Simple/Null.sln +20 -0
- data/docs/examples/targets/Configuration API/OutputDebugString/Simple/Example.cs +19 -0
- data/docs/examples/targets/Configuration API/OutputDebugString/Simple/OutputDebugString.csproj +40 -0
- data/docs/examples/targets/Configuration API/OutputDebugString/Simple/OutputDebugString.sln +20 -0
- data/docs/examples/targets/Configuration API/PerfCounter/Simple/Example.cs +24 -0
- data/docs/examples/targets/Configuration API/PerfCounter/Simple/PerfCounter.csproj +40 -0
- data/docs/examples/targets/Configuration API/PerfCounter/Simple/PerfCounter.sln +20 -0
- data/docs/examples/targets/Configuration API/PostFilteringWrapper/Simple/Example.cs +41 -0
- data/docs/examples/targets/Configuration API/PostFilteringWrapper/Simple/PostFilteringWrapper.csproj +40 -0
- data/docs/examples/targets/Configuration API/PostFilteringWrapper/Simple/PostFilteringWrapper.sln +20 -0
- data/docs/examples/targets/Configuration API/RandomizeGroup/Simple/Example.cs +27 -0
- data/docs/examples/targets/Configuration API/RandomizeGroup/Simple/RandomizeGroup.csproj +40 -0
- data/docs/examples/targets/Configuration API/RandomizeGroup/Simple/RandomizeGroup.sln +20 -0
- data/docs/examples/targets/Configuration API/RepeatingWrapper/Simple/Example.cs +24 -0
- data/docs/examples/targets/Configuration API/RepeatingWrapper/Simple/RepeatingWrapper.csproj +40 -0
- data/docs/examples/targets/Configuration API/RepeatingWrapper/Simple/RepeatingWrapper.sln +20 -0
- data/docs/examples/targets/Configuration API/RetryingWrapper/Simple/Example.cs +25 -0
- data/docs/examples/targets/Configuration API/RetryingWrapper/Simple/RetryingWrapper.csproj +40 -0
- data/docs/examples/targets/Configuration API/RetryingWrapper/Simple/RetryingWrapper.sln +20 -0
- data/docs/examples/targets/Configuration API/RichTextBox/RowColoring/Example.cs +22 -0
- data/docs/examples/targets/Configuration API/RichTextBox/RowColoring/Form1.Designer.cs +61 -0
- data/docs/examples/targets/Configuration API/RichTextBox/RowColoring/Form1.cs +46 -0
- data/docs/examples/targets/Configuration API/RichTextBox/RowColoring/Form1.resx +120 -0
- data/docs/examples/targets/Configuration API/RichTextBox/RowColoring/Properties/AssemblyInfo.cs +33 -0
- data/docs/examples/targets/Configuration API/RichTextBox/RowColoring/Properties/Resources.Designer.cs +71 -0
- data/docs/examples/targets/Configuration API/RichTextBox/RowColoring/Properties/Resources.resx +117 -0
- data/docs/examples/targets/Configuration API/RichTextBox/RowColoring/Properties/Settings.Designer.cs +30 -0
- data/docs/examples/targets/Configuration API/RichTextBox/RowColoring/Properties/Settings.settings +7 -0
- data/docs/examples/targets/Configuration API/RichTextBox/RowColoring/RichTextBox.RowColoring.csproj +81 -0
- data/docs/examples/targets/Configuration API/RichTextBox/RowColoring/RichTextBox.RowColoring.sln +20 -0
- data/docs/examples/targets/Configuration API/RichTextBox/Simple/Example.cs +22 -0
- data/docs/examples/targets/Configuration API/RichTextBox/Simple/Form1.Designer.cs +61 -0
- data/docs/examples/targets/Configuration API/RichTextBox/Simple/Form1.cs +36 -0
- data/docs/examples/targets/Configuration API/RichTextBox/Simple/Form1.resx +120 -0
- data/docs/examples/targets/Configuration API/RichTextBox/Simple/Properties/AssemblyInfo.cs +33 -0
- data/docs/examples/targets/Configuration API/RichTextBox/Simple/Properties/Resources.Designer.cs +71 -0
- data/docs/examples/targets/Configuration API/RichTextBox/Simple/Properties/Resources.resx +117 -0
- data/docs/examples/targets/Configuration API/RichTextBox/Simple/Properties/Settings.Designer.cs +30 -0
- data/docs/examples/targets/Configuration API/RichTextBox/Simple/Properties/Settings.settings +7 -0
- data/docs/examples/targets/Configuration API/RichTextBox/Simple/RichTextBox.csproj +81 -0
- data/docs/examples/targets/Configuration API/RichTextBox/Simple/RichTextBox.sln +20 -0
- data/docs/examples/targets/Configuration API/RichTextBox/WordColoring/Example.cs +22 -0
- data/docs/examples/targets/Configuration API/RichTextBox/WordColoring/Form1.Designer.cs +61 -0
- data/docs/examples/targets/Configuration API/RichTextBox/WordColoring/Form1.cs +46 -0
- data/docs/examples/targets/Configuration API/RichTextBox/WordColoring/Form1.resx +120 -0
- data/docs/examples/targets/Configuration API/RichTextBox/WordColoring/Properties/AssemblyInfo.cs +33 -0
- data/docs/examples/targets/Configuration API/RichTextBox/WordColoring/Properties/Resources.Designer.cs +71 -0
- data/docs/examples/targets/Configuration API/RichTextBox/WordColoring/Properties/Resources.resx +117 -0
- data/docs/examples/targets/Configuration API/RichTextBox/WordColoring/Properties/Settings.Designer.cs +30 -0
- data/docs/examples/targets/Configuration API/RichTextBox/WordColoring/Properties/Settings.settings +7 -0
- data/docs/examples/targets/Configuration API/RichTextBox/WordColoring/RichTextBox.WordColoring.csproj +81 -0
- data/docs/examples/targets/Configuration API/RichTextBox/WordColoring/RichTextBox.WordColoring.sln +20 -0
- data/docs/examples/targets/Configuration API/RoundRobinGroup/Simple/Example.cs +27 -0
- data/docs/examples/targets/Configuration API/RoundRobinGroup/Simple/RoundRobinGroup.csproj +40 -0
- data/docs/examples/targets/Configuration API/RoundRobinGroup/Simple/RoundRobinGroup.sln +20 -0
- data/docs/examples/targets/Configuration API/SplitGroup/Simple/Example.cs +27 -0
- data/docs/examples/targets/Configuration API/SplitGroup/Simple/SplitGroup.csproj +40 -0
- data/docs/examples/targets/Configuration API/SplitGroup/Simple/SplitGroup.sln +20 -0
- data/docs/examples/targets/Configuration API/Template.csproj +39 -0
- data/docs/examples/targets/Configuration API/Template.sln +20 -0
- data/docs/examples/targets/Configuration API/Trace/Simple/Example.cs +21 -0
- data/docs/examples/targets/Configuration API/Trace/Simple/Trace.csproj +40 -0
- data/docs/examples/targets/Configuration API/Trace/Simple/Trace.sln +20 -0
- data/docs/examples/targets/Configuration API/WebService/Simple/Example.cs +28 -0
- data/docs/examples/targets/Configuration API/WebService/Simple/WebService.csproj +39 -0
- data/docs/examples/targets/Configuration API/WebService/Simple/WebService.sln +26 -0
- data/docs/examples/targets/Configuration API/WebService/Simple/WebService1/Properties/AssemblyInfo.cs +13 -0
- data/docs/examples/targets/Configuration API/WebService/Simple/WebService1/Service1.asmx +1 -0
- data/docs/examples/targets/Configuration API/WebService/Simple/WebService1/Service1.asmx.cs +24 -0
- data/docs/examples/targets/Configuration API/WebService/Simple/WebService1/Web.config +36 -0
- data/docs/examples/targets/Configuration API/WebService/Simple/WebService1/WebService1.csproj +77 -0
- data/docs/examples/targets/Configuration API/makeproject.pl +37 -0
- data/docs/examples/targets/Configuration File/ASPNetBufferingWrapper/web.nlog +15 -0
- data/docs/examples/targets/Configuration File/ASPNetTrace/web.nlog +10 -0
- data/docs/examples/targets/Configuration File/AsyncWrapper/NLog.config +17 -0
- data/docs/examples/targets/Configuration File/AutoFlushWrapper/NLog.config +13 -0
- data/docs/examples/targets/Configuration File/BufferingWrapper/NLog.config +13 -0
- data/docs/examples/targets/Configuration File/Chainsaw/NLog.config +11 -0
- data/docs/examples/targets/Configuration File/ColoredConsole/Row Highlighting/NLog.config +14 -0
- data/docs/examples/targets/Configuration File/ColoredConsole/Simple/NLog.config +12 -0
- data/docs/examples/targets/Configuration File/ColoredConsole/Word Highlighting/NLog.config +14 -0
- data/docs/examples/targets/Configuration File/Console/NLog.config +11 -0
- data/docs/examples/targets/Configuration File/Database/MSSQL/NLog.config +30 -0
- data/docs/examples/targets/Configuration File/Database/MSSQL/create_nlog_database.bat +21 -0
- data/docs/examples/targets/Configuration File/Database/MSSQL/create_nlog_database.sql +35 -0
- data/docs/examples/targets/Configuration File/Database/MSSQL/drop_nlog_database.bat +19 -0
- data/docs/examples/targets/Configuration File/Database/MSSQL/drop_nlog_database.sql +4 -0
- data/docs/examples/targets/Configuration File/Database/Oracle.Native/NLog.config +23 -0
- data/docs/examples/targets/Configuration File/Database/Oracle.OleDb/NLog.config +22 -0
- data/docs/examples/targets/Configuration File/Debug/NLog.config +11 -0
- data/docs/examples/targets/Configuration File/Debugger/NLog.config +11 -0
- data/docs/examples/targets/Configuration File/EventLog/NLog.config +11 -0
- data/docs/examples/targets/Configuration File/FallbackGroup/NLog.config +14 -0
- data/docs/examples/targets/Configuration File/File/Archive1/NLog.config +20 -0
- data/docs/examples/targets/Configuration File/File/Archive2/NLog.config +20 -0
- data/docs/examples/targets/Configuration File/File/Archive3/NLog.config +22 -0
- data/docs/examples/targets/Configuration File/File/Archive4/NLog.config +22 -0
- data/docs/examples/targets/Configuration File/File/Asynchronous/NLog.config +18 -0
- data/docs/examples/targets/Configuration File/File/CSV/NLog.config +18 -0
- data/docs/examples/targets/Configuration File/File/Multiple/NLog.config +14 -0
- data/docs/examples/targets/Configuration File/File/Multiple2/NLog.config +14 -0
- data/docs/examples/targets/Configuration File/File/Simple/NLog.config +16 -0
- data/docs/examples/targets/Configuration File/FilteringWrapper/NLog.config +13 -0
- data/docs/examples/targets/Configuration File/FormControl/NLog.config +12 -0
- data/docs/examples/targets/Configuration File/MSMQ/Multiple/NLog.config +17 -0
- data/docs/examples/targets/Configuration File/MSMQ/Simple/NLog.config +17 -0
- data/docs/examples/targets/Configuration File/Mail/Buffered/NLog.config +18 -0
- data/docs/examples/targets/Configuration File/Mail/Simple/NLog.config +16 -0
- data/docs/examples/targets/Configuration File/Memory/NLog.config +11 -0
- data/docs/examples/targets/Configuration File/MessageBox/NLog.config +11 -0
- data/docs/examples/targets/Configuration File/MethodCall/NLog.config +14 -0
- data/docs/examples/targets/Configuration File/NLogViewer/NLog.config +11 -0
- data/docs/examples/targets/Configuration File/Network/NLog.config +11 -0
- data/docs/examples/targets/Configuration File/Null/NLog.config +11 -0
- data/docs/examples/targets/Configuration File/OutputDebugString/NLog.config +11 -0
- data/docs/examples/targets/Configuration File/PerfCounter/NLog.config +12 -0
- data/docs/examples/targets/Configuration File/PostFilteringWrapper/NLog.config +16 -0
- data/docs/examples/targets/Configuration File/RandomizeGroup/NLog.config +14 -0
- data/docs/examples/targets/Configuration File/RepeatingWrapper/NLog.config +13 -0
- data/docs/examples/targets/Configuration File/RetryingWrapper/NLog.config +13 -0
- data/docs/examples/targets/Configuration File/RichTextBox/RowColoring/NLog.config +14 -0
- data/docs/examples/targets/Configuration File/RichTextBox/Simple/NLog.config +12 -0
- data/docs/examples/targets/Configuration File/RichTextBox/WordColoring/NLog.config +14 -0
- data/docs/examples/targets/Configuration File/RoundRobinGroup/NLog.config +14 -0
- data/docs/examples/targets/Configuration File/SplitGroup/NLog.config +14 -0
- data/docs/examples/targets/Configuration File/Trace/NLog.config +11 -0
- data/docs/examples/targets/Configuration File/WebService/NLog.config +17 -0
- data/docs/examples/targets/Configuration File/WebService/WebService1/Properties/AssemblyInfo.cs +13 -0
- data/docs/examples/targets/Configuration File/WebService/WebService1/Service1.asmx +1 -0
- data/docs/examples/targets/Configuration File/WebService/WebService1/Service1.asmx.cs +24 -0
- data/docs/examples/targets/Configuration File/WebService/WebService1/Web.config +36 -0
- data/docs/examples/targets/Configuration File/WebService/WebService1/WebService1.csproj +77 -0
- data/docs/examples/targets/Configuration File/WebService/WebService1/WebService1.sln +20 -0
- data/docs/examples/targets/Screenshots/ASPNetTrace/ASPNetTraceOutput1.gif +0 -0
- data/docs/examples/targets/Screenshots/ASPNetTrace/ASPNetTraceOutput2.gif +0 -0
- data/docs/examples/targets/Screenshots/ColoredConsole/Row Highlighting.gif +0 -0
- data/docs/examples/targets/Screenshots/ColoredConsole/Simple.gif +0 -0
- data/docs/examples/targets/Screenshots/ColoredConsole/Word Highlighting.gif +0 -0
- data/docs/examples/targets/Screenshots/FormControl/FormControl.gif +0 -0
- data/docs/examples/targets/Screenshots/MessageBox/MessageBoxTarget.gif +0 -0
- data/docs/examples/targets/Screenshots/Network/Output.gif +0 -0
- data/docs/examples/targets/Screenshots/RichTextBox/RowColoring.gif +0 -0
- data/docs/examples/targets/Screenshots/RichTextBox/Simple.gif +0 -0
- data/docs/examples/targets/Screenshots/RichTextBox/WordColoring.gif +0 -0
- data/docs/examples/web/AddFilter.cs +6 -0
- data/docs/examples/web/AddLayoutRenderer.cs +6 -0
- data/docs/examples/web/AddTarget.cs +6 -0
- data/docs/examples/web/GetCurrentClassLogger.cs +11 -0
- data/docs/examples/web/GetLogger.cs +11 -0
- data/docs/examples/web/MyFirstFilter.cs +35 -0
- data/docs/examples/web/MyFirstLayoutRenderer.cs +41 -0
- data/docs/examples/web/MyFirstTarget.cs +28 -0
- data/docs/examples/web/NLogC.cpp +26 -0
- data/docs/examples/web/NLogCdef.cpp +28 -0
- data/docs/examples/web/Performance.cs +16 -0
- data/docs/examples/web/app.config +10 -0
- data/docs/examples/web/article1.cs +21 -0
- data/docs/examples/web/article2.cs +33 -0
- data/docs/examples/web/article3.nlog +9 -0
- data/docs/examples/web/article4.nlog +9 -0
- data/docs/examples/web/article5.nlog +24 -0
- data/docs/examples/web/article6.nlog +7 -0
- data/docs/examples/web/benchmark_log4net.cs +30 -0
- data/docs/examples/web/benchmark_nlog.cs +29 -0
- data/docs/examples/web/config1.nlog +4 -0
- data/docs/examples/web/config10.nlog +18 -0
- data/docs/examples/web/config11.nlog +14 -0
- data/docs/examples/web/config12.nlog +4 -0
- data/docs/examples/web/config2.nlog +3 -0
- data/docs/examples/web/config3.nlog +24 -0
- data/docs/examples/web/config4.nlog +25 -0
- data/docs/examples/web/config5.nlog +10 -0
- data/docs/examples/web/config6.nlog +23 -0
- data/docs/examples/web/config7.nlog +14 -0
- data/docs/examples/web/config8.nlog +9 -0
- data/docs/examples/web/config8a.nlog +9 -0
- data/docs/examples/web/config9.nlog +14 -0
- data/docs/examples/web/test.js +44 -0
- data/docs/examples/web/test.vbs +46 -0
- data/docs/examples/web/tutorial.cs +37 -0
- data/lib/Mono 1.0/NLog.dll +0 -0
- data/lib/Mono 1.0/NLog.xml +12948 -0
- data/lib/Mono 1.0/NLog.xsd +1566 -0
- data/lib/Mono 1.0/Policy.1.0.NLog.dll +0 -0
- data/lib/Mono 1.0/Policy.1.0.NLog.xml +11 -0
- data/lib/Mono 2.0/NLog.dll +0 -0
- data/lib/Mono 2.0/NLog.xml +12969 -0
- data/lib/Mono 2.0/NLog.xsd +1566 -0
- data/lib/Mono 2.0/Policy.1.0.NLog.dll +0 -0
- data/lib/Mono 2.0/Policy.1.0.NLog.xml +11 -0
- metadata +410 -0
Binary file
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<configuration>
|
3
|
+
<runtime>
|
4
|
+
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
5
|
+
<dependentAssembly>
|
6
|
+
<assemblyIdentity name="NLog" publicKeyToken="5120e14c03d0593c" culture="" />
|
7
|
+
<bindingRedirect oldVersion="1.0.0.0-1.0.0.504" newVersion="1.0.0.505" />
|
8
|
+
</dependentAssembly>
|
9
|
+
</assemblyBinding>
|
10
|
+
</runtime>
|
11
|
+
</configuration>
|
metadata
ADDED
@@ -0,0 +1,410 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: nlog
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 941
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 0
|
9
|
+
- 0
|
10
|
+
- 505
|
11
|
+
version: 1.0.0.505
|
12
|
+
platform: mswin32
|
13
|
+
authors:
|
14
|
+
- Jaroslaw Kowalski
|
15
|
+
autorequire:
|
16
|
+
bindir: bin
|
17
|
+
cert_chain: []
|
18
|
+
|
19
|
+
date: 2010-07-20 00:00:00 -05:00
|
20
|
+
default_executable:
|
21
|
+
dependencies: []
|
22
|
+
|
23
|
+
description: |
|
24
|
+
NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. It uses familar logger pattern known from log4xxx.
|
25
|
+
NLog is very easy to use and configure, both through Configuration File and programmatically at runtime. Advanced routing options include buffering, asynchronous logging, load balancing, failover, and more.
|
26
|
+
|
27
|
+
email:
|
28
|
+
executables: []
|
29
|
+
|
30
|
+
extensions: []
|
31
|
+
|
32
|
+
extra_rdoc_files: []
|
33
|
+
|
34
|
+
files:
|
35
|
+
- lib/Mono 1.0/NLog.dll
|
36
|
+
- lib/Mono 1.0/NLog.xml
|
37
|
+
- lib/Mono 1.0/NLog.xsd
|
38
|
+
- lib/Mono 1.0/Policy.1.0.NLog.dll
|
39
|
+
- lib/Mono 1.0/Policy.1.0.NLog.xml
|
40
|
+
- lib/Mono 2.0/NLog.dll
|
41
|
+
- lib/Mono 2.0/NLog.xml
|
42
|
+
- lib/Mono 2.0/NLog.xsd
|
43
|
+
- lib/Mono 2.0/Policy.1.0.NLog.dll
|
44
|
+
- lib/Mono 2.0/Policy.1.0.NLog.xml
|
45
|
+
- docs/examples/ExtendingLoggers/InheritFromLogger/InheritFromLogger.csproj
|
46
|
+
- docs/examples/ExtendingLoggers/InheritFromLogger/InheritFromLogger.sln
|
47
|
+
- docs/examples/ExtendingLoggers/InheritFromLogger/NLog.config
|
48
|
+
- docs/examples/ExtendingLoggers/InheritFromLogger/Program.cs
|
49
|
+
- docs/examples/ExtendingLoggers/InheritFromLogger/Properties/AssemblyInfo.cs
|
50
|
+
- docs/examples/ExtendingLoggers/LoggerWrapper/LoggerWrapper.csproj
|
51
|
+
- docs/examples/ExtendingLoggers/LoggerWrapper/LoggerWrapper.sln
|
52
|
+
- docs/examples/ExtendingLoggers/LoggerWrapper/NLog.config
|
53
|
+
- docs/examples/ExtendingLoggers/LoggerWrapper/Program.cs
|
54
|
+
- docs/examples/ExtendingLoggers/LoggerWrapper/Properties/AssemblyInfo.cs
|
55
|
+
- docs/examples/ExtendingLoggers/README.html
|
56
|
+
- docs/examples/targets/Configuration API/All_Targets.sln
|
57
|
+
- docs/examples/targets/Configuration API/ASPNetBufferingWrapper/ASPNetBufferingWrapper.csproj
|
58
|
+
- docs/examples/targets/Configuration API/ASPNetBufferingWrapper/ASPNetBufferingWrapper.sln
|
59
|
+
- docs/examples/targets/Configuration API/ASPNetBufferingWrapper/Global.asax
|
60
|
+
- docs/examples/targets/Configuration API/ASPNetBufferingWrapper/Global.asax.cs
|
61
|
+
- docs/examples/targets/Configuration API/ASPNetBufferingWrapper/NormalPage.aspx
|
62
|
+
- docs/examples/targets/Configuration API/ASPNetBufferingWrapper/NormalPage.aspx.cs
|
63
|
+
- docs/examples/targets/Configuration API/ASPNetBufferingWrapper/NormalPage.aspx.designer.cs
|
64
|
+
- docs/examples/targets/Configuration API/ASPNetBufferingWrapper/PageWithWarnings.aspx
|
65
|
+
- docs/examples/targets/Configuration API/ASPNetBufferingWrapper/PageWithWarnings.aspx.cs
|
66
|
+
- docs/examples/targets/Configuration API/ASPNetBufferingWrapper/PageWithWarnings.aspx.designer.cs
|
67
|
+
- docs/examples/targets/Configuration API/ASPNetBufferingWrapper/Properties/AssemblyInfo.cs
|
68
|
+
- docs/examples/targets/Configuration API/ASPNetBufferingWrapper/Web.config
|
69
|
+
- docs/examples/targets/Configuration API/ASPNetTrace/ASPNetTraceTest.csproj
|
70
|
+
- docs/examples/targets/Configuration API/ASPNetTrace/ASPNetTraceTest.sln
|
71
|
+
- docs/examples/targets/Configuration API/ASPNetTrace/global.asax
|
72
|
+
- docs/examples/targets/Configuration API/ASPNetTrace/Global.asax.cs
|
73
|
+
- docs/examples/targets/Configuration API/ASPNetTrace/README.txt
|
74
|
+
- docs/examples/targets/Configuration API/ASPNetTrace/test.aspx
|
75
|
+
- docs/examples/targets/Configuration API/ASPNetTrace/web.config
|
76
|
+
- docs/examples/targets/Configuration API/AsyncWrapper/Wrapping File/AsyncWrapper.Wrapping File.csproj
|
77
|
+
- docs/examples/targets/Configuration API/AsyncWrapper/Wrapping File/AsyncWrapper.Wrapping File.sln
|
78
|
+
- docs/examples/targets/Configuration API/AsyncWrapper/Wrapping File/Example.cs
|
79
|
+
- docs/examples/targets/Configuration API/AutoFlushWrapper/Simple/AutoFlushWrapper.csproj
|
80
|
+
- docs/examples/targets/Configuration API/AutoFlushWrapper/Simple/AutoFlushWrapper.sln
|
81
|
+
- docs/examples/targets/Configuration API/AutoFlushWrapper/Simple/Example.cs
|
82
|
+
- docs/examples/targets/Configuration API/BufferingWrapper/Simple/BufferingWrapper.csproj
|
83
|
+
- docs/examples/targets/Configuration API/BufferingWrapper/Simple/BufferingWrapper.sln
|
84
|
+
- docs/examples/targets/Configuration API/BufferingWrapper/Simple/Example.cs
|
85
|
+
- docs/examples/targets/Configuration API/Chainsaw/Simple/Chainsaw.csproj
|
86
|
+
- docs/examples/targets/Configuration API/Chainsaw/Simple/Chainsaw.sln
|
87
|
+
- docs/examples/targets/Configuration API/Chainsaw/Simple/Example.cs
|
88
|
+
- docs/examples/targets/Configuration API/ColoredConsole/Row Highlighting/ColoredConsole.Row Highlighting.csproj
|
89
|
+
- docs/examples/targets/Configuration API/ColoredConsole/Row Highlighting/ColoredConsole.Row Highlighting.sln
|
90
|
+
- docs/examples/targets/Configuration API/ColoredConsole/Row Highlighting/Example.cs
|
91
|
+
- docs/examples/targets/Configuration API/ColoredConsole/Simple/ColoredConsole.csproj
|
92
|
+
- docs/examples/targets/Configuration API/ColoredConsole/Simple/ColoredConsole.sln
|
93
|
+
- docs/examples/targets/Configuration API/ColoredConsole/Simple/Example.cs
|
94
|
+
- docs/examples/targets/Configuration API/ColoredConsole/Word Highlighting/ColoredConsole.Word Highlighting.csproj
|
95
|
+
- docs/examples/targets/Configuration API/ColoredConsole/Word Highlighting/ColoredConsole.Word Highlighting.sln
|
96
|
+
- docs/examples/targets/Configuration API/ColoredConsole/Word Highlighting/Example.cs
|
97
|
+
- docs/examples/targets/Configuration API/Console/Simple/Console.csproj
|
98
|
+
- docs/examples/targets/Configuration API/Console/Simple/Console.sln
|
99
|
+
- docs/examples/targets/Configuration API/Console/Simple/Example.cs
|
100
|
+
- docs/examples/targets/Configuration API/Database/MSSQL/Database.MSSQL.csproj
|
101
|
+
- docs/examples/targets/Configuration API/Database/MSSQL/Database.MSSQL.sln
|
102
|
+
- docs/examples/targets/Configuration API/Database/MSSQL/Example.cs
|
103
|
+
- docs/examples/targets/Configuration API/Database/Oracle.Native/Database.Oracle.Native.csproj
|
104
|
+
- docs/examples/targets/Configuration API/Database/Oracle.Native/Database.Oracle.Native.sln
|
105
|
+
- docs/examples/targets/Configuration API/Database/Oracle.Native/Example.cs
|
106
|
+
- docs/examples/targets/Configuration API/Database/Oracle.OleDb/Database.Oracle.OleDb.csproj
|
107
|
+
- docs/examples/targets/Configuration API/Database/Oracle.OleDb/Database.Oracle.OleDb.sln
|
108
|
+
- docs/examples/targets/Configuration API/Database/Oracle.OleDb/Example.cs
|
109
|
+
- docs/examples/targets/Configuration API/Debug/Simple/Debug.csproj
|
110
|
+
- docs/examples/targets/Configuration API/Debug/Simple/Debug.sln
|
111
|
+
- docs/examples/targets/Configuration API/Debug/Simple/Example.cs
|
112
|
+
- docs/examples/targets/Configuration API/Debugger/Simple/Debugger.csproj
|
113
|
+
- docs/examples/targets/Configuration API/Debugger/Simple/Debugger.sln
|
114
|
+
- docs/examples/targets/Configuration API/Debugger/Simple/Example.cs
|
115
|
+
- docs/examples/targets/Configuration API/EventLog/Simple/EventLog.csproj
|
116
|
+
- docs/examples/targets/Configuration API/EventLog/Simple/EventLog.sln
|
117
|
+
- docs/examples/targets/Configuration API/EventLog/Simple/Example.cs
|
118
|
+
- docs/examples/targets/Configuration API/FallbackGroup/Simple/Example.cs
|
119
|
+
- docs/examples/targets/Configuration API/FallbackGroup/Simple/FallbackGroup.csproj
|
120
|
+
- docs/examples/targets/Configuration API/FallbackGroup/Simple/FallbackGroup.sln
|
121
|
+
- docs/examples/targets/Configuration API/File/Archive1/Example.cs
|
122
|
+
- docs/examples/targets/Configuration API/File/Archive1/File.Archive1.csproj
|
123
|
+
- docs/examples/targets/Configuration API/File/Archive1/File.Archive1.sln
|
124
|
+
- docs/examples/targets/Configuration API/File/Archive2/Example.cs
|
125
|
+
- docs/examples/targets/Configuration API/File/Archive2/File.Archive2.csproj
|
126
|
+
- docs/examples/targets/Configuration API/File/Archive2/File.Archive2.sln
|
127
|
+
- docs/examples/targets/Configuration API/File/Archive3/Example.cs
|
128
|
+
- docs/examples/targets/Configuration API/File/Archive3/File.Archive3.csproj
|
129
|
+
- docs/examples/targets/Configuration API/File/Archive3/File.Archive3.sln
|
130
|
+
- docs/examples/targets/Configuration API/File/Archive4/Example.cs
|
131
|
+
- docs/examples/targets/Configuration API/File/Archive4/File.Archive4.csproj
|
132
|
+
- docs/examples/targets/Configuration API/File/Archive4/File.Archive4.sln
|
133
|
+
- docs/examples/targets/Configuration API/File/Asynchronous/Example.cs
|
134
|
+
- docs/examples/targets/Configuration API/File/Asynchronous/File.Asynchronous.csproj
|
135
|
+
- docs/examples/targets/Configuration API/File/Asynchronous/File.Asynchronous.sln
|
136
|
+
- docs/examples/targets/Configuration API/File/CSV/Example.cs
|
137
|
+
- docs/examples/targets/Configuration API/File/CSV/File.CSV.csproj
|
138
|
+
- docs/examples/targets/Configuration API/File/CSV/File.CSV.sln
|
139
|
+
- docs/examples/targets/Configuration API/File/Multiple/Example.cs
|
140
|
+
- docs/examples/targets/Configuration API/File/Multiple/File.Multiple.csproj
|
141
|
+
- docs/examples/targets/Configuration API/File/Multiple/File.Multiple.sln
|
142
|
+
- docs/examples/targets/Configuration API/File/Multiple2/Example.cs
|
143
|
+
- docs/examples/targets/Configuration API/File/Multiple2/File.Multiple2.csproj
|
144
|
+
- docs/examples/targets/Configuration API/File/Multiple2/File.Multiple2.sln
|
145
|
+
- docs/examples/targets/Configuration API/File/Simple/Example.cs
|
146
|
+
- docs/examples/targets/Configuration API/File/Simple/File.csproj
|
147
|
+
- docs/examples/targets/Configuration API/File/Simple/File.sln
|
148
|
+
- docs/examples/targets/Configuration API/FilteringWrapper/Simple/Example.cs
|
149
|
+
- docs/examples/targets/Configuration API/FilteringWrapper/Simple/FilteringWrapper.csproj
|
150
|
+
- docs/examples/targets/Configuration API/FilteringWrapper/Simple/FilteringWrapper.sln
|
151
|
+
- docs/examples/targets/Configuration API/FormControl/Example.cs
|
152
|
+
- docs/examples/targets/Configuration API/FormControl/Form1.cs
|
153
|
+
- docs/examples/targets/Configuration API/FormControl/Form1.Designer.cs
|
154
|
+
- docs/examples/targets/Configuration API/FormControl/Form1.resx
|
155
|
+
- docs/examples/targets/Configuration API/FormControl/FormControl.csproj
|
156
|
+
- docs/examples/targets/Configuration API/FormControl/FormControl.sln
|
157
|
+
- docs/examples/targets/Configuration API/FormControl/Properties/AssemblyInfo.cs
|
158
|
+
- docs/examples/targets/Configuration API/FormControl/Properties/Resources.Designer.cs
|
159
|
+
- docs/examples/targets/Configuration API/FormControl/Properties/Resources.resx
|
160
|
+
- docs/examples/targets/Configuration API/FormControl/Properties/Settings.Designer.cs
|
161
|
+
- docs/examples/targets/Configuration API/FormControl/Properties/Settings.settings
|
162
|
+
- docs/examples/targets/Configuration API/Mail/Buffered/Example.cs
|
163
|
+
- docs/examples/targets/Configuration API/Mail/Buffered/Mail.Buffered.csproj
|
164
|
+
- docs/examples/targets/Configuration API/Mail/Buffered/Mail.Buffered.sln
|
165
|
+
- docs/examples/targets/Configuration API/Mail/Simple/Example.cs
|
166
|
+
- docs/examples/targets/Configuration API/Mail/Simple/Mail.csproj
|
167
|
+
- docs/examples/targets/Configuration API/Mail/Simple/Mail.sln
|
168
|
+
- docs/examples/targets/Configuration API/makeproject.pl
|
169
|
+
- docs/examples/targets/Configuration API/Memory/Simple/Example.cs
|
170
|
+
- docs/examples/targets/Configuration API/Memory/Simple/Memory.csproj
|
171
|
+
- docs/examples/targets/Configuration API/Memory/Simple/Memory.sln
|
172
|
+
- docs/examples/targets/Configuration API/MessageBox/Simple/Example.cs
|
173
|
+
- docs/examples/targets/Configuration API/MessageBox/Simple/MessageBox.csproj
|
174
|
+
- docs/examples/targets/Configuration API/MessageBox/Simple/MessageBox.sln
|
175
|
+
- docs/examples/targets/Configuration API/MethodCall/Simple/Example.cs
|
176
|
+
- docs/examples/targets/Configuration API/MethodCall/Simple/MethodCall.csproj
|
177
|
+
- docs/examples/targets/Configuration API/MethodCall/Simple/MethodCall.sln
|
178
|
+
- docs/examples/targets/Configuration API/MSMQ/Multiple Queues/Example.cs
|
179
|
+
- docs/examples/targets/Configuration API/MSMQ/Multiple Queues/MSMQ.Multiple Queues.csproj
|
180
|
+
- docs/examples/targets/Configuration API/MSMQ/Multiple Queues/MSMQ.Multiple Queues.sln
|
181
|
+
- docs/examples/targets/Configuration API/MSMQ/Simple/Example.cs
|
182
|
+
- docs/examples/targets/Configuration API/MSMQ/Simple/MSMQ.csproj
|
183
|
+
- docs/examples/targets/Configuration API/MSMQ/Simple/MSMQ.sln
|
184
|
+
- docs/examples/targets/Configuration API/Network/Simple/Example.cs
|
185
|
+
- docs/examples/targets/Configuration API/Network/Simple/Network.csproj
|
186
|
+
- docs/examples/targets/Configuration API/Network/Simple/Network.sln
|
187
|
+
- docs/examples/targets/Configuration API/NLogViewer/Simple/Example.cs
|
188
|
+
- docs/examples/targets/Configuration API/NLogViewer/Simple/NLogViewer.csproj
|
189
|
+
- docs/examples/targets/Configuration API/NLogViewer/Simple/NLogViewer.sln
|
190
|
+
- docs/examples/targets/Configuration API/Null/Simple/Example.cs
|
191
|
+
- docs/examples/targets/Configuration API/Null/Simple/Null.csproj
|
192
|
+
- docs/examples/targets/Configuration API/Null/Simple/Null.sln
|
193
|
+
- docs/examples/targets/Configuration API/OutputDebugString/Simple/Example.cs
|
194
|
+
- docs/examples/targets/Configuration API/OutputDebugString/Simple/OutputDebugString.csproj
|
195
|
+
- docs/examples/targets/Configuration API/OutputDebugString/Simple/OutputDebugString.sln
|
196
|
+
- docs/examples/targets/Configuration API/PerfCounter/Simple/Example.cs
|
197
|
+
- docs/examples/targets/Configuration API/PerfCounter/Simple/PerfCounter.csproj
|
198
|
+
- docs/examples/targets/Configuration API/PerfCounter/Simple/PerfCounter.sln
|
199
|
+
- docs/examples/targets/Configuration API/PostFilteringWrapper/Simple/Example.cs
|
200
|
+
- docs/examples/targets/Configuration API/PostFilteringWrapper/Simple/PostFilteringWrapper.csproj
|
201
|
+
- docs/examples/targets/Configuration API/PostFilteringWrapper/Simple/PostFilteringWrapper.sln
|
202
|
+
- docs/examples/targets/Configuration API/RandomizeGroup/Simple/Example.cs
|
203
|
+
- docs/examples/targets/Configuration API/RandomizeGroup/Simple/RandomizeGroup.csproj
|
204
|
+
- docs/examples/targets/Configuration API/RandomizeGroup/Simple/RandomizeGroup.sln
|
205
|
+
- docs/examples/targets/Configuration API/RepeatingWrapper/Simple/Example.cs
|
206
|
+
- docs/examples/targets/Configuration API/RepeatingWrapper/Simple/RepeatingWrapper.csproj
|
207
|
+
- docs/examples/targets/Configuration API/RepeatingWrapper/Simple/RepeatingWrapper.sln
|
208
|
+
- docs/examples/targets/Configuration API/RetryingWrapper/Simple/Example.cs
|
209
|
+
- docs/examples/targets/Configuration API/RetryingWrapper/Simple/RetryingWrapper.csproj
|
210
|
+
- docs/examples/targets/Configuration API/RetryingWrapper/Simple/RetryingWrapper.sln
|
211
|
+
- docs/examples/targets/Configuration API/RichTextBox/RowColoring/Example.cs
|
212
|
+
- docs/examples/targets/Configuration API/RichTextBox/RowColoring/Form1.cs
|
213
|
+
- docs/examples/targets/Configuration API/RichTextBox/RowColoring/Form1.Designer.cs
|
214
|
+
- docs/examples/targets/Configuration API/RichTextBox/RowColoring/Form1.resx
|
215
|
+
- docs/examples/targets/Configuration API/RichTextBox/RowColoring/Properties/AssemblyInfo.cs
|
216
|
+
- docs/examples/targets/Configuration API/RichTextBox/RowColoring/Properties/Resources.Designer.cs
|
217
|
+
- docs/examples/targets/Configuration API/RichTextBox/RowColoring/Properties/Resources.resx
|
218
|
+
- docs/examples/targets/Configuration API/RichTextBox/RowColoring/Properties/Settings.Designer.cs
|
219
|
+
- docs/examples/targets/Configuration API/RichTextBox/RowColoring/Properties/Settings.settings
|
220
|
+
- docs/examples/targets/Configuration API/RichTextBox/RowColoring/RichTextBox.RowColoring.csproj
|
221
|
+
- docs/examples/targets/Configuration API/RichTextBox/RowColoring/RichTextBox.RowColoring.sln
|
222
|
+
- docs/examples/targets/Configuration API/RichTextBox/Simple/Example.cs
|
223
|
+
- docs/examples/targets/Configuration API/RichTextBox/Simple/Form1.cs
|
224
|
+
- docs/examples/targets/Configuration API/RichTextBox/Simple/Form1.Designer.cs
|
225
|
+
- docs/examples/targets/Configuration API/RichTextBox/Simple/Form1.resx
|
226
|
+
- docs/examples/targets/Configuration API/RichTextBox/Simple/Properties/AssemblyInfo.cs
|
227
|
+
- docs/examples/targets/Configuration API/RichTextBox/Simple/Properties/Resources.Designer.cs
|
228
|
+
- docs/examples/targets/Configuration API/RichTextBox/Simple/Properties/Resources.resx
|
229
|
+
- docs/examples/targets/Configuration API/RichTextBox/Simple/Properties/Settings.Designer.cs
|
230
|
+
- docs/examples/targets/Configuration API/RichTextBox/Simple/Properties/Settings.settings
|
231
|
+
- docs/examples/targets/Configuration API/RichTextBox/Simple/RichTextBox.csproj
|
232
|
+
- docs/examples/targets/Configuration API/RichTextBox/Simple/RichTextBox.sln
|
233
|
+
- docs/examples/targets/Configuration API/RichTextBox/WordColoring/Example.cs
|
234
|
+
- docs/examples/targets/Configuration API/RichTextBox/WordColoring/Form1.cs
|
235
|
+
- docs/examples/targets/Configuration API/RichTextBox/WordColoring/Form1.Designer.cs
|
236
|
+
- docs/examples/targets/Configuration API/RichTextBox/WordColoring/Form1.resx
|
237
|
+
- docs/examples/targets/Configuration API/RichTextBox/WordColoring/Properties/AssemblyInfo.cs
|
238
|
+
- docs/examples/targets/Configuration API/RichTextBox/WordColoring/Properties/Resources.Designer.cs
|
239
|
+
- docs/examples/targets/Configuration API/RichTextBox/WordColoring/Properties/Resources.resx
|
240
|
+
- docs/examples/targets/Configuration API/RichTextBox/WordColoring/Properties/Settings.Designer.cs
|
241
|
+
- docs/examples/targets/Configuration API/RichTextBox/WordColoring/Properties/Settings.settings
|
242
|
+
- docs/examples/targets/Configuration API/RichTextBox/WordColoring/RichTextBox.WordColoring.csproj
|
243
|
+
- docs/examples/targets/Configuration API/RichTextBox/WordColoring/RichTextBox.WordColoring.sln
|
244
|
+
- docs/examples/targets/Configuration API/RoundRobinGroup/Simple/Example.cs
|
245
|
+
- docs/examples/targets/Configuration API/RoundRobinGroup/Simple/RoundRobinGroup.csproj
|
246
|
+
- docs/examples/targets/Configuration API/RoundRobinGroup/Simple/RoundRobinGroup.sln
|
247
|
+
- docs/examples/targets/Configuration API/SplitGroup/Simple/Example.cs
|
248
|
+
- docs/examples/targets/Configuration API/SplitGroup/Simple/SplitGroup.csproj
|
249
|
+
- docs/examples/targets/Configuration API/SplitGroup/Simple/SplitGroup.sln
|
250
|
+
- docs/examples/targets/Configuration API/Template.csproj
|
251
|
+
- docs/examples/targets/Configuration API/Template.sln
|
252
|
+
- docs/examples/targets/Configuration API/Trace/Simple/Example.cs
|
253
|
+
- docs/examples/targets/Configuration API/Trace/Simple/Trace.csproj
|
254
|
+
- docs/examples/targets/Configuration API/Trace/Simple/Trace.sln
|
255
|
+
- docs/examples/targets/Configuration API/WebService/Simple/Example.cs
|
256
|
+
- docs/examples/targets/Configuration API/WebService/Simple/WebService.csproj
|
257
|
+
- docs/examples/targets/Configuration API/WebService/Simple/WebService.sln
|
258
|
+
- docs/examples/targets/Configuration API/WebService/Simple/WebService1/Properties/AssemblyInfo.cs
|
259
|
+
- docs/examples/targets/Configuration API/WebService/Simple/WebService1/Service1.asmx
|
260
|
+
- docs/examples/targets/Configuration API/WebService/Simple/WebService1/Service1.asmx.cs
|
261
|
+
- docs/examples/targets/Configuration API/WebService/Simple/WebService1/Web.config
|
262
|
+
- docs/examples/targets/Configuration API/WebService/Simple/WebService1/WebService1.csproj
|
263
|
+
- docs/examples/targets/Configuration File/ASPNetBufferingWrapper/web.nlog
|
264
|
+
- docs/examples/targets/Configuration File/ASPNetTrace/web.nlog
|
265
|
+
- docs/examples/targets/Configuration File/AsyncWrapper/NLog.config
|
266
|
+
- docs/examples/targets/Configuration File/AutoFlushWrapper/NLog.config
|
267
|
+
- docs/examples/targets/Configuration File/BufferingWrapper/NLog.config
|
268
|
+
- docs/examples/targets/Configuration File/Chainsaw/NLog.config
|
269
|
+
- docs/examples/targets/Configuration File/ColoredConsole/Row Highlighting/NLog.config
|
270
|
+
- docs/examples/targets/Configuration File/ColoredConsole/Simple/NLog.config
|
271
|
+
- docs/examples/targets/Configuration File/ColoredConsole/Word Highlighting/NLog.config
|
272
|
+
- docs/examples/targets/Configuration File/Console/NLog.config
|
273
|
+
- docs/examples/targets/Configuration File/Database/MSSQL/create_nlog_database.bat
|
274
|
+
- docs/examples/targets/Configuration File/Database/MSSQL/create_nlog_database.sql
|
275
|
+
- docs/examples/targets/Configuration File/Database/MSSQL/drop_nlog_database.bat
|
276
|
+
- docs/examples/targets/Configuration File/Database/MSSQL/drop_nlog_database.sql
|
277
|
+
- docs/examples/targets/Configuration File/Database/MSSQL/NLog.config
|
278
|
+
- docs/examples/targets/Configuration File/Database/Oracle.Native/NLog.config
|
279
|
+
- docs/examples/targets/Configuration File/Database/Oracle.OleDb/NLog.config
|
280
|
+
- docs/examples/targets/Configuration File/Debug/NLog.config
|
281
|
+
- docs/examples/targets/Configuration File/Debugger/NLog.config
|
282
|
+
- docs/examples/targets/Configuration File/EventLog/NLog.config
|
283
|
+
- docs/examples/targets/Configuration File/FallbackGroup/NLog.config
|
284
|
+
- docs/examples/targets/Configuration File/File/Archive1/NLog.config
|
285
|
+
- docs/examples/targets/Configuration File/File/Archive2/NLog.config
|
286
|
+
- docs/examples/targets/Configuration File/File/Archive3/NLog.config
|
287
|
+
- docs/examples/targets/Configuration File/File/Archive4/NLog.config
|
288
|
+
- docs/examples/targets/Configuration File/File/Asynchronous/NLog.config
|
289
|
+
- docs/examples/targets/Configuration File/File/CSV/NLog.config
|
290
|
+
- docs/examples/targets/Configuration File/File/Multiple/NLog.config
|
291
|
+
- docs/examples/targets/Configuration File/File/Multiple2/NLog.config
|
292
|
+
- docs/examples/targets/Configuration File/File/Simple/NLog.config
|
293
|
+
- docs/examples/targets/Configuration File/FilteringWrapper/NLog.config
|
294
|
+
- docs/examples/targets/Configuration File/FormControl/NLog.config
|
295
|
+
- docs/examples/targets/Configuration File/Mail/Buffered/NLog.config
|
296
|
+
- docs/examples/targets/Configuration File/Mail/Simple/NLog.config
|
297
|
+
- docs/examples/targets/Configuration File/Memory/NLog.config
|
298
|
+
- docs/examples/targets/Configuration File/MessageBox/NLog.config
|
299
|
+
- docs/examples/targets/Configuration File/MethodCall/NLog.config
|
300
|
+
- docs/examples/targets/Configuration File/MSMQ/Multiple/NLog.config
|
301
|
+
- docs/examples/targets/Configuration File/MSMQ/Simple/NLog.config
|
302
|
+
- docs/examples/targets/Configuration File/Network/NLog.config
|
303
|
+
- docs/examples/targets/Configuration File/NLogViewer/NLog.config
|
304
|
+
- docs/examples/targets/Configuration File/Null/NLog.config
|
305
|
+
- docs/examples/targets/Configuration File/OutputDebugString/NLog.config
|
306
|
+
- docs/examples/targets/Configuration File/PerfCounter/NLog.config
|
307
|
+
- docs/examples/targets/Configuration File/PostFilteringWrapper/NLog.config
|
308
|
+
- docs/examples/targets/Configuration File/RandomizeGroup/NLog.config
|
309
|
+
- docs/examples/targets/Configuration File/RepeatingWrapper/NLog.config
|
310
|
+
- docs/examples/targets/Configuration File/RetryingWrapper/NLog.config
|
311
|
+
- docs/examples/targets/Configuration File/RichTextBox/RowColoring/NLog.config
|
312
|
+
- docs/examples/targets/Configuration File/RichTextBox/Simple/NLog.config
|
313
|
+
- docs/examples/targets/Configuration File/RichTextBox/WordColoring/NLog.config
|
314
|
+
- docs/examples/targets/Configuration File/RoundRobinGroup/NLog.config
|
315
|
+
- docs/examples/targets/Configuration File/SplitGroup/NLog.config
|
316
|
+
- docs/examples/targets/Configuration File/Trace/NLog.config
|
317
|
+
- docs/examples/targets/Configuration File/WebService/NLog.config
|
318
|
+
- docs/examples/targets/Configuration File/WebService/WebService1/Properties/AssemblyInfo.cs
|
319
|
+
- docs/examples/targets/Configuration File/WebService/WebService1/Service1.asmx
|
320
|
+
- docs/examples/targets/Configuration File/WebService/WebService1/Service1.asmx.cs
|
321
|
+
- docs/examples/targets/Configuration File/WebService/WebService1/Web.config
|
322
|
+
- docs/examples/targets/Configuration File/WebService/WebService1/WebService1.csproj
|
323
|
+
- docs/examples/targets/Configuration File/WebService/WebService1/WebService1.sln
|
324
|
+
- docs/examples/targets/Screenshots/ASPNetTrace/ASPNetTraceOutput1.gif
|
325
|
+
- docs/examples/targets/Screenshots/ASPNetTrace/ASPNetTraceOutput2.gif
|
326
|
+
- docs/examples/targets/Screenshots/ColoredConsole/Row Highlighting.gif
|
327
|
+
- docs/examples/targets/Screenshots/ColoredConsole/Simple.gif
|
328
|
+
- docs/examples/targets/Screenshots/ColoredConsole/Word Highlighting.gif
|
329
|
+
- docs/examples/targets/Screenshots/FormControl/FormControl.gif
|
330
|
+
- docs/examples/targets/Screenshots/MessageBox/MessageBoxTarget.gif
|
331
|
+
- docs/examples/targets/Screenshots/Network/Output.gif
|
332
|
+
- docs/examples/targets/Screenshots/RichTextBox/RowColoring.gif
|
333
|
+
- docs/examples/targets/Screenshots/RichTextBox/Simple.gif
|
334
|
+
- docs/examples/targets/Screenshots/RichTextBox/WordColoring.gif
|
335
|
+
- docs/examples/web/AddFilter.cs
|
336
|
+
- docs/examples/web/AddLayoutRenderer.cs
|
337
|
+
- docs/examples/web/AddTarget.cs
|
338
|
+
- docs/examples/web/app.config
|
339
|
+
- docs/examples/web/article1.cs
|
340
|
+
- docs/examples/web/article2.cs
|
341
|
+
- docs/examples/web/article3.nlog
|
342
|
+
- docs/examples/web/article4.nlog
|
343
|
+
- docs/examples/web/article5.nlog
|
344
|
+
- docs/examples/web/article6.nlog
|
345
|
+
- docs/examples/web/benchmark_log4net.cs
|
346
|
+
- docs/examples/web/benchmark_nlog.cs
|
347
|
+
- docs/examples/web/config1.nlog
|
348
|
+
- docs/examples/web/config10.nlog
|
349
|
+
- docs/examples/web/config11.nlog
|
350
|
+
- docs/examples/web/config12.nlog
|
351
|
+
- docs/examples/web/config2.nlog
|
352
|
+
- docs/examples/web/config3.nlog
|
353
|
+
- docs/examples/web/config4.nlog
|
354
|
+
- docs/examples/web/config5.nlog
|
355
|
+
- docs/examples/web/config6.nlog
|
356
|
+
- docs/examples/web/config7.nlog
|
357
|
+
- docs/examples/web/config8.nlog
|
358
|
+
- docs/examples/web/config8a.nlog
|
359
|
+
- docs/examples/web/config9.nlog
|
360
|
+
- docs/examples/web/GetCurrentClassLogger.cs
|
361
|
+
- docs/examples/web/GetLogger.cs
|
362
|
+
- docs/examples/web/MyFirstFilter.cs
|
363
|
+
- docs/examples/web/MyFirstLayoutRenderer.cs
|
364
|
+
- docs/examples/web/MyFirstTarget.cs
|
365
|
+
- docs/examples/web/NLogC.cpp
|
366
|
+
- docs/examples/web/NLogCdef.cpp
|
367
|
+
- docs/examples/web/Performance.cs
|
368
|
+
- docs/examples/web/test.js
|
369
|
+
- docs/examples/web/test.vbs
|
370
|
+
- docs/examples/web/tutorial.cs
|
371
|
+
- docs/LICENSE.txt
|
372
|
+
- docs/NLog.chm
|
373
|
+
- docs/NLogC FAQ.txt
|
374
|
+
- docs/README.txt
|
375
|
+
has_rdoc: true
|
376
|
+
homepage: http://nlog-project.org/
|
377
|
+
licenses: []
|
378
|
+
|
379
|
+
post_install_message:
|
380
|
+
rdoc_options: []
|
381
|
+
|
382
|
+
require_paths:
|
383
|
+
- lib
|
384
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
385
|
+
none: false
|
386
|
+
requirements:
|
387
|
+
- - ">="
|
388
|
+
- !ruby/object:Gem::Version
|
389
|
+
hash: 3
|
390
|
+
segments:
|
391
|
+
- 0
|
392
|
+
version: "0"
|
393
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
394
|
+
none: false
|
395
|
+
requirements:
|
396
|
+
- - ">="
|
397
|
+
- !ruby/object:Gem::Version
|
398
|
+
hash: 3
|
399
|
+
segments:
|
400
|
+
- 0
|
401
|
+
version: "0"
|
402
|
+
requirements: []
|
403
|
+
|
404
|
+
rubyforge_project: nlog
|
405
|
+
rubygems_version: 1.3.7
|
406
|
+
signing_key:
|
407
|
+
specification_version: 3
|
408
|
+
summary: NLog - Advanced .NET Logging
|
409
|
+
test_files: []
|
410
|
+
|