nlog 1.0.0.505

Sign up to get free protection for your applications and to get access to all the features.
Files changed (341) hide show
  1. data/docs/LICENSE.txt +32 -0
  2. data/docs/NLog.chm +0 -0
  3. data/docs/NLogC FAQ.txt +23 -0
  4. data/docs/README.txt +29 -0
  5. data/docs/examples/ExtendingLoggers/InheritFromLogger/InheritFromLogger.csproj +53 -0
  6. data/docs/examples/ExtendingLoggers/InheritFromLogger/InheritFromLogger.sln +20 -0
  7. data/docs/examples/ExtendingLoggers/InheritFromLogger/NLog.config +16 -0
  8. data/docs/examples/ExtendingLoggers/InheritFromLogger/Program.cs +87 -0
  9. data/docs/examples/ExtendingLoggers/InheritFromLogger/Properties/AssemblyInfo.cs +33 -0
  10. data/docs/examples/ExtendingLoggers/LoggerWrapper/LoggerWrapper.csproj +53 -0
  11. data/docs/examples/ExtendingLoggers/LoggerWrapper/LoggerWrapper.sln +20 -0
  12. data/docs/examples/ExtendingLoggers/LoggerWrapper/NLog.config +12 -0
  13. data/docs/examples/ExtendingLoggers/LoggerWrapper/Program.cs +85 -0
  14. data/docs/examples/ExtendingLoggers/LoggerWrapper/Properties/AssemblyInfo.cs +33 -0
  15. data/docs/examples/ExtendingLoggers/README.html +39 -0
  16. data/docs/examples/targets/Configuration API/ASPNetBufferingWrapper/ASPNetBufferingWrapper.csproj +95 -0
  17. data/docs/examples/targets/Configuration API/ASPNetBufferingWrapper/ASPNetBufferingWrapper.sln +20 -0
  18. data/docs/examples/targets/Configuration API/ASPNetBufferingWrapper/Global.asax +1 -0
  19. data/docs/examples/targets/Configuration API/ASPNetBufferingWrapper/Global.asax.cs +40 -0
  20. data/docs/examples/targets/Configuration API/ASPNetBufferingWrapper/NormalPage.aspx +16 -0
  21. data/docs/examples/targets/Configuration API/ASPNetBufferingWrapper/NormalPage.aspx.cs +30 -0
  22. data/docs/examples/targets/Configuration API/ASPNetBufferingWrapper/NormalPage.aspx.designer.cs +18 -0
  23. data/docs/examples/targets/Configuration API/ASPNetBufferingWrapper/PageWithWarnings.aspx +16 -0
  24. data/docs/examples/targets/Configuration API/ASPNetBufferingWrapper/PageWithWarnings.aspx.cs +32 -0
  25. data/docs/examples/targets/Configuration API/ASPNetBufferingWrapper/PageWithWarnings.aspx.designer.cs +18 -0
  26. data/docs/examples/targets/Configuration API/ASPNetBufferingWrapper/Properties/AssemblyInfo.cs +10 -0
  27. data/docs/examples/targets/Configuration API/ASPNetBufferingWrapper/Web.config +22 -0
  28. data/docs/examples/targets/Configuration API/ASPNetTrace/ASPNetTraceTest.csproj +130 -0
  29. data/docs/examples/targets/Configuration API/ASPNetTrace/ASPNetTraceTest.sln +20 -0
  30. data/docs/examples/targets/Configuration API/ASPNetTrace/Global.asax.cs +25 -0
  31. data/docs/examples/targets/Configuration API/ASPNetTrace/README.txt +4 -0
  32. data/docs/examples/targets/Configuration API/ASPNetTrace/global.asax +1 -0
  33. data/docs/examples/targets/Configuration API/ASPNetTrace/test.aspx +23 -0
  34. data/docs/examples/targets/Configuration API/ASPNetTrace/web.config +8 -0
  35. data/docs/examples/targets/Configuration API/All_Targets.sln +320 -0
  36. data/docs/examples/targets/Configuration API/AsyncWrapper/Wrapping File/AsyncWrapper.Wrapping File.csproj +39 -0
  37. data/docs/examples/targets/Configuration API/AsyncWrapper/Wrapping File/AsyncWrapper.Wrapping File.sln +20 -0
  38. data/docs/examples/targets/Configuration API/AsyncWrapper/Wrapping File/Example.cs +27 -0
  39. data/docs/examples/targets/Configuration API/AutoFlushWrapper/Simple/AutoFlushWrapper.csproj +40 -0
  40. data/docs/examples/targets/Configuration API/AutoFlushWrapper/Simple/AutoFlushWrapper.sln +20 -0
  41. data/docs/examples/targets/Configuration API/AutoFlushWrapper/Simple/Example.cs +23 -0
  42. data/docs/examples/targets/Configuration API/BufferingWrapper/Simple/BufferingWrapper.csproj +40 -0
  43. data/docs/examples/targets/Configuration API/BufferingWrapper/Simple/BufferingWrapper.sln +20 -0
  44. data/docs/examples/targets/Configuration API/BufferingWrapper/Simple/Example.cs +24 -0
  45. data/docs/examples/targets/Configuration API/Chainsaw/Simple/Chainsaw.csproj +39 -0
  46. data/docs/examples/targets/Configuration API/Chainsaw/Simple/Chainsaw.sln +20 -0
  47. data/docs/examples/targets/Configuration API/Chainsaw/Simple/Example.cs +21 -0
  48. data/docs/examples/targets/Configuration API/ColoredConsole/Row Highlighting/ColoredConsole.Row Highlighting.csproj +39 -0
  49. data/docs/examples/targets/Configuration API/ColoredConsole/Row Highlighting/ColoredConsole.Row Highlighting.sln +20 -0
  50. data/docs/examples/targets/Configuration API/ColoredConsole/Row Highlighting/Example.cs +44 -0
  51. data/docs/examples/targets/Configuration API/ColoredConsole/Simple/ColoredConsole.csproj +39 -0
  52. data/docs/examples/targets/Configuration API/ColoredConsole/Simple/ColoredConsole.sln +20 -0
  53. data/docs/examples/targets/Configuration API/ColoredConsole/Simple/Example.cs +21 -0
  54. data/docs/examples/targets/Configuration API/ColoredConsole/Word Highlighting/ColoredConsole.Word Highlighting.csproj +39 -0
  55. data/docs/examples/targets/Configuration API/ColoredConsole/Word Highlighting/ColoredConsole.Word Highlighting.sln +20 -0
  56. data/docs/examples/targets/Configuration API/ColoredConsole/Word Highlighting/Example.cs +30 -0
  57. data/docs/examples/targets/Configuration API/Console/Simple/Console.csproj +39 -0
  58. data/docs/examples/targets/Configuration API/Console/Simple/Console.sln +20 -0
  59. data/docs/examples/targets/Configuration API/Console/Simple/Example.cs +16 -0
  60. data/docs/examples/targets/Configuration API/Database/MSSQL/Database.MSSQL.csproj +39 -0
  61. data/docs/examples/targets/Configuration API/Database/MSSQL/Database.MSSQL.sln +20 -0
  62. data/docs/examples/targets/Configuration API/Database/MSSQL/Example.cs +43 -0
  63. data/docs/examples/targets/Configuration API/Database/Oracle.Native/Database.Oracle.Native.csproj +40 -0
  64. data/docs/examples/targets/Configuration API/Database/Oracle.Native/Database.Oracle.Native.sln +20 -0
  65. data/docs/examples/targets/Configuration API/Database/Oracle.Native/Example.cs +28 -0
  66. data/docs/examples/targets/Configuration API/Database/Oracle.OleDb/Database.Oracle.OleDb.csproj +40 -0
  67. data/docs/examples/targets/Configuration API/Database/Oracle.OleDb/Database.Oracle.OleDb.sln +20 -0
  68. data/docs/examples/targets/Configuration API/Database/Oracle.OleDb/Example.cs +26 -0
  69. data/docs/examples/targets/Configuration API/Debug/Simple/Debug.csproj +39 -0
  70. data/docs/examples/targets/Configuration API/Debug/Simple/Debug.sln +20 -0
  71. data/docs/examples/targets/Configuration API/Debug/Simple/Example.cs +22 -0
  72. data/docs/examples/targets/Configuration API/Debugger/Simple/Debugger.csproj +39 -0
  73. data/docs/examples/targets/Configuration API/Debugger/Simple/Debugger.sln +20 -0
  74. data/docs/examples/targets/Configuration API/Debugger/Simple/Example.cs +18 -0
  75. data/docs/examples/targets/Configuration API/EventLog/Simple/EventLog.csproj +39 -0
  76. data/docs/examples/targets/Configuration API/EventLog/Simple/EventLog.sln +20 -0
  77. data/docs/examples/targets/Configuration API/EventLog/Simple/Example.cs +20 -0
  78. data/docs/examples/targets/Configuration API/FallbackGroup/Simple/Example.cs +31 -0
  79. data/docs/examples/targets/Configuration API/FallbackGroup/Simple/FallbackGroup.csproj +40 -0
  80. data/docs/examples/targets/Configuration API/FallbackGroup/Simple/FallbackGroup.sln +20 -0
  81. data/docs/examples/targets/Configuration API/File/Archive1/Example.cs +29 -0
  82. data/docs/examples/targets/Configuration API/File/Archive1/File.Archive1.csproj +39 -0
  83. data/docs/examples/targets/Configuration API/File/Archive1/File.Archive1.sln +20 -0
  84. data/docs/examples/targets/Configuration API/File/Archive2/Example.cs +46 -0
  85. data/docs/examples/targets/Configuration API/File/Archive2/File.Archive2.csproj +39 -0
  86. data/docs/examples/targets/Configuration API/File/Archive2/File.Archive2.sln +20 -0
  87. data/docs/examples/targets/Configuration API/File/Archive3/Example.cs +50 -0
  88. data/docs/examples/targets/Configuration API/File/Archive3/File.Archive3.csproj +39 -0
  89. data/docs/examples/targets/Configuration API/File/Archive3/File.Archive3.sln +20 -0
  90. data/docs/examples/targets/Configuration API/File/Archive4/Example.cs +63 -0
  91. data/docs/examples/targets/Configuration API/File/Archive4/File.Archive4.csproj +39 -0
  92. data/docs/examples/targets/Configuration API/File/Archive4/File.Archive4.sln +20 -0
  93. data/docs/examples/targets/Configuration API/File/Asynchronous/Example.cs +25 -0
  94. data/docs/examples/targets/Configuration API/File/Asynchronous/File.Asynchronous.csproj +39 -0
  95. data/docs/examples/targets/Configuration API/File/Asynchronous/File.Asynchronous.sln +20 -0
  96. data/docs/examples/targets/Configuration API/File/CSV/Example.cs +29 -0
  97. data/docs/examples/targets/Configuration API/File/CSV/File.CSV.csproj +39 -0
  98. data/docs/examples/targets/Configuration API/File/CSV/File.CSV.sln +20 -0
  99. data/docs/examples/targets/Configuration API/File/Multiple/Example.cs +19 -0
  100. data/docs/examples/targets/Configuration API/File/Multiple/File.Multiple.csproj +39 -0
  101. data/docs/examples/targets/Configuration API/File/Multiple/File.Multiple.sln +20 -0
  102. data/docs/examples/targets/Configuration API/File/Multiple2/Example.cs +19 -0
  103. data/docs/examples/targets/Configuration API/File/Multiple2/File.Multiple2.csproj +39 -0
  104. data/docs/examples/targets/Configuration API/File/Multiple2/File.Multiple2.sln +20 -0
  105. data/docs/examples/targets/Configuration API/File/Simple/Example.cs +19 -0
  106. data/docs/examples/targets/Configuration API/File/Simple/File.csproj +39 -0
  107. data/docs/examples/targets/Configuration API/File/Simple/File.sln +20 -0
  108. data/docs/examples/targets/Configuration API/FilteringWrapper/Simple/Example.cs +28 -0
  109. data/docs/examples/targets/Configuration API/FilteringWrapper/Simple/FilteringWrapper.csproj +40 -0
  110. data/docs/examples/targets/Configuration API/FilteringWrapper/Simple/FilteringWrapper.sln +20 -0
  111. data/docs/examples/targets/Configuration API/FormControl/Example.cs +22 -0
  112. data/docs/examples/targets/Configuration API/FormControl/Form1.Designer.cs +62 -0
  113. data/docs/examples/targets/Configuration API/FormControl/Form1.cs +36 -0
  114. data/docs/examples/targets/Configuration API/FormControl/Form1.resx +120 -0
  115. data/docs/examples/targets/Configuration API/FormControl/FormControl.csproj +81 -0
  116. data/docs/examples/targets/Configuration API/FormControl/FormControl.sln +20 -0
  117. data/docs/examples/targets/Configuration API/FormControl/Properties/AssemblyInfo.cs +33 -0
  118. data/docs/examples/targets/Configuration API/FormControl/Properties/Resources.Designer.cs +71 -0
  119. data/docs/examples/targets/Configuration API/FormControl/Properties/Resources.resx +117 -0
  120. data/docs/examples/targets/Configuration API/FormControl/Properties/Settings.Designer.cs +30 -0
  121. data/docs/examples/targets/Configuration API/FormControl/Properties/Settings.settings +7 -0
  122. data/docs/examples/targets/Configuration API/MSMQ/Multiple Queues/Example.cs +28 -0
  123. data/docs/examples/targets/Configuration API/MSMQ/Multiple Queues/MSMQ.Multiple Queues.csproj +39 -0
  124. data/docs/examples/targets/Configuration API/MSMQ/Multiple Queues/MSMQ.Multiple Queues.sln +20 -0
  125. data/docs/examples/targets/Configuration API/MSMQ/Simple/Example.cs +28 -0
  126. data/docs/examples/targets/Configuration API/MSMQ/Simple/MSMQ.csproj +39 -0
  127. data/docs/examples/targets/Configuration API/MSMQ/Simple/MSMQ.sln +20 -0
  128. data/docs/examples/targets/Configuration API/Mail/Buffered/Example.cs +48 -0
  129. data/docs/examples/targets/Configuration API/Mail/Buffered/Mail.Buffered.csproj +39 -0
  130. data/docs/examples/targets/Configuration API/Mail/Buffered/Mail.Buffered.sln +20 -0
  131. data/docs/examples/targets/Configuration API/Mail/Simple/Example.cs +33 -0
  132. data/docs/examples/targets/Configuration API/Mail/Simple/Mail.csproj +39 -0
  133. data/docs/examples/targets/Configuration API/Mail/Simple/Mail.sln +20 -0
  134. data/docs/examples/targets/Configuration API/Memory/Simple/Example.cs +23 -0
  135. data/docs/examples/targets/Configuration API/Memory/Simple/Memory.csproj +39 -0
  136. data/docs/examples/targets/Configuration API/Memory/Simple/Memory.sln +20 -0
  137. data/docs/examples/targets/Configuration API/MessageBox/Simple/Example.cs +19 -0
  138. data/docs/examples/targets/Configuration API/MessageBox/Simple/MessageBox.csproj +39 -0
  139. data/docs/examples/targets/Configuration API/MessageBox/Simple/MessageBox.sln +20 -0
  140. data/docs/examples/targets/Configuration API/MethodCall/Simple/Example.cs +27 -0
  141. data/docs/examples/targets/Configuration API/MethodCall/Simple/MethodCall.csproj +39 -0
  142. data/docs/examples/targets/Configuration API/MethodCall/Simple/MethodCall.sln +20 -0
  143. data/docs/examples/targets/Configuration API/NLogViewer/Simple/Example.cs +21 -0
  144. data/docs/examples/targets/Configuration API/NLogViewer/Simple/NLogViewer.csproj +39 -0
  145. data/docs/examples/targets/Configuration API/NLogViewer/Simple/NLogViewer.sln +20 -0
  146. data/docs/examples/targets/Configuration API/Network/Simple/Example.cs +22 -0
  147. data/docs/examples/targets/Configuration API/Network/Simple/Network.csproj +39 -0
  148. data/docs/examples/targets/Configuration API/Network/Simple/Network.sln +20 -0
  149. data/docs/examples/targets/Configuration API/Null/Simple/Example.cs +19 -0
  150. data/docs/examples/targets/Configuration API/Null/Simple/Null.csproj +40 -0
  151. data/docs/examples/targets/Configuration API/Null/Simple/Null.sln +20 -0
  152. data/docs/examples/targets/Configuration API/OutputDebugString/Simple/Example.cs +19 -0
  153. data/docs/examples/targets/Configuration API/OutputDebugString/Simple/OutputDebugString.csproj +40 -0
  154. data/docs/examples/targets/Configuration API/OutputDebugString/Simple/OutputDebugString.sln +20 -0
  155. data/docs/examples/targets/Configuration API/PerfCounter/Simple/Example.cs +24 -0
  156. data/docs/examples/targets/Configuration API/PerfCounter/Simple/PerfCounter.csproj +40 -0
  157. data/docs/examples/targets/Configuration API/PerfCounter/Simple/PerfCounter.sln +20 -0
  158. data/docs/examples/targets/Configuration API/PostFilteringWrapper/Simple/Example.cs +41 -0
  159. data/docs/examples/targets/Configuration API/PostFilteringWrapper/Simple/PostFilteringWrapper.csproj +40 -0
  160. data/docs/examples/targets/Configuration API/PostFilteringWrapper/Simple/PostFilteringWrapper.sln +20 -0
  161. data/docs/examples/targets/Configuration API/RandomizeGroup/Simple/Example.cs +27 -0
  162. data/docs/examples/targets/Configuration API/RandomizeGroup/Simple/RandomizeGroup.csproj +40 -0
  163. data/docs/examples/targets/Configuration API/RandomizeGroup/Simple/RandomizeGroup.sln +20 -0
  164. data/docs/examples/targets/Configuration API/RepeatingWrapper/Simple/Example.cs +24 -0
  165. data/docs/examples/targets/Configuration API/RepeatingWrapper/Simple/RepeatingWrapper.csproj +40 -0
  166. data/docs/examples/targets/Configuration API/RepeatingWrapper/Simple/RepeatingWrapper.sln +20 -0
  167. data/docs/examples/targets/Configuration API/RetryingWrapper/Simple/Example.cs +25 -0
  168. data/docs/examples/targets/Configuration API/RetryingWrapper/Simple/RetryingWrapper.csproj +40 -0
  169. data/docs/examples/targets/Configuration API/RetryingWrapper/Simple/RetryingWrapper.sln +20 -0
  170. data/docs/examples/targets/Configuration API/RichTextBox/RowColoring/Example.cs +22 -0
  171. data/docs/examples/targets/Configuration API/RichTextBox/RowColoring/Form1.Designer.cs +61 -0
  172. data/docs/examples/targets/Configuration API/RichTextBox/RowColoring/Form1.cs +46 -0
  173. data/docs/examples/targets/Configuration API/RichTextBox/RowColoring/Form1.resx +120 -0
  174. data/docs/examples/targets/Configuration API/RichTextBox/RowColoring/Properties/AssemblyInfo.cs +33 -0
  175. data/docs/examples/targets/Configuration API/RichTextBox/RowColoring/Properties/Resources.Designer.cs +71 -0
  176. data/docs/examples/targets/Configuration API/RichTextBox/RowColoring/Properties/Resources.resx +117 -0
  177. data/docs/examples/targets/Configuration API/RichTextBox/RowColoring/Properties/Settings.Designer.cs +30 -0
  178. data/docs/examples/targets/Configuration API/RichTextBox/RowColoring/Properties/Settings.settings +7 -0
  179. data/docs/examples/targets/Configuration API/RichTextBox/RowColoring/RichTextBox.RowColoring.csproj +81 -0
  180. data/docs/examples/targets/Configuration API/RichTextBox/RowColoring/RichTextBox.RowColoring.sln +20 -0
  181. data/docs/examples/targets/Configuration API/RichTextBox/Simple/Example.cs +22 -0
  182. data/docs/examples/targets/Configuration API/RichTextBox/Simple/Form1.Designer.cs +61 -0
  183. data/docs/examples/targets/Configuration API/RichTextBox/Simple/Form1.cs +36 -0
  184. data/docs/examples/targets/Configuration API/RichTextBox/Simple/Form1.resx +120 -0
  185. data/docs/examples/targets/Configuration API/RichTextBox/Simple/Properties/AssemblyInfo.cs +33 -0
  186. data/docs/examples/targets/Configuration API/RichTextBox/Simple/Properties/Resources.Designer.cs +71 -0
  187. data/docs/examples/targets/Configuration API/RichTextBox/Simple/Properties/Resources.resx +117 -0
  188. data/docs/examples/targets/Configuration API/RichTextBox/Simple/Properties/Settings.Designer.cs +30 -0
  189. data/docs/examples/targets/Configuration API/RichTextBox/Simple/Properties/Settings.settings +7 -0
  190. data/docs/examples/targets/Configuration API/RichTextBox/Simple/RichTextBox.csproj +81 -0
  191. data/docs/examples/targets/Configuration API/RichTextBox/Simple/RichTextBox.sln +20 -0
  192. data/docs/examples/targets/Configuration API/RichTextBox/WordColoring/Example.cs +22 -0
  193. data/docs/examples/targets/Configuration API/RichTextBox/WordColoring/Form1.Designer.cs +61 -0
  194. data/docs/examples/targets/Configuration API/RichTextBox/WordColoring/Form1.cs +46 -0
  195. data/docs/examples/targets/Configuration API/RichTextBox/WordColoring/Form1.resx +120 -0
  196. data/docs/examples/targets/Configuration API/RichTextBox/WordColoring/Properties/AssemblyInfo.cs +33 -0
  197. data/docs/examples/targets/Configuration API/RichTextBox/WordColoring/Properties/Resources.Designer.cs +71 -0
  198. data/docs/examples/targets/Configuration API/RichTextBox/WordColoring/Properties/Resources.resx +117 -0
  199. data/docs/examples/targets/Configuration API/RichTextBox/WordColoring/Properties/Settings.Designer.cs +30 -0
  200. data/docs/examples/targets/Configuration API/RichTextBox/WordColoring/Properties/Settings.settings +7 -0
  201. data/docs/examples/targets/Configuration API/RichTextBox/WordColoring/RichTextBox.WordColoring.csproj +81 -0
  202. data/docs/examples/targets/Configuration API/RichTextBox/WordColoring/RichTextBox.WordColoring.sln +20 -0
  203. data/docs/examples/targets/Configuration API/RoundRobinGroup/Simple/Example.cs +27 -0
  204. data/docs/examples/targets/Configuration API/RoundRobinGroup/Simple/RoundRobinGroup.csproj +40 -0
  205. data/docs/examples/targets/Configuration API/RoundRobinGroup/Simple/RoundRobinGroup.sln +20 -0
  206. data/docs/examples/targets/Configuration API/SplitGroup/Simple/Example.cs +27 -0
  207. data/docs/examples/targets/Configuration API/SplitGroup/Simple/SplitGroup.csproj +40 -0
  208. data/docs/examples/targets/Configuration API/SplitGroup/Simple/SplitGroup.sln +20 -0
  209. data/docs/examples/targets/Configuration API/Template.csproj +39 -0
  210. data/docs/examples/targets/Configuration API/Template.sln +20 -0
  211. data/docs/examples/targets/Configuration API/Trace/Simple/Example.cs +21 -0
  212. data/docs/examples/targets/Configuration API/Trace/Simple/Trace.csproj +40 -0
  213. data/docs/examples/targets/Configuration API/Trace/Simple/Trace.sln +20 -0
  214. data/docs/examples/targets/Configuration API/WebService/Simple/Example.cs +28 -0
  215. data/docs/examples/targets/Configuration API/WebService/Simple/WebService.csproj +39 -0
  216. data/docs/examples/targets/Configuration API/WebService/Simple/WebService.sln +26 -0
  217. data/docs/examples/targets/Configuration API/WebService/Simple/WebService1/Properties/AssemblyInfo.cs +13 -0
  218. data/docs/examples/targets/Configuration API/WebService/Simple/WebService1/Service1.asmx +1 -0
  219. data/docs/examples/targets/Configuration API/WebService/Simple/WebService1/Service1.asmx.cs +24 -0
  220. data/docs/examples/targets/Configuration API/WebService/Simple/WebService1/Web.config +36 -0
  221. data/docs/examples/targets/Configuration API/WebService/Simple/WebService1/WebService1.csproj +77 -0
  222. data/docs/examples/targets/Configuration API/makeproject.pl +37 -0
  223. data/docs/examples/targets/Configuration File/ASPNetBufferingWrapper/web.nlog +15 -0
  224. data/docs/examples/targets/Configuration File/ASPNetTrace/web.nlog +10 -0
  225. data/docs/examples/targets/Configuration File/AsyncWrapper/NLog.config +17 -0
  226. data/docs/examples/targets/Configuration File/AutoFlushWrapper/NLog.config +13 -0
  227. data/docs/examples/targets/Configuration File/BufferingWrapper/NLog.config +13 -0
  228. data/docs/examples/targets/Configuration File/Chainsaw/NLog.config +11 -0
  229. data/docs/examples/targets/Configuration File/ColoredConsole/Row Highlighting/NLog.config +14 -0
  230. data/docs/examples/targets/Configuration File/ColoredConsole/Simple/NLog.config +12 -0
  231. data/docs/examples/targets/Configuration File/ColoredConsole/Word Highlighting/NLog.config +14 -0
  232. data/docs/examples/targets/Configuration File/Console/NLog.config +11 -0
  233. data/docs/examples/targets/Configuration File/Database/MSSQL/NLog.config +30 -0
  234. data/docs/examples/targets/Configuration File/Database/MSSQL/create_nlog_database.bat +21 -0
  235. data/docs/examples/targets/Configuration File/Database/MSSQL/create_nlog_database.sql +35 -0
  236. data/docs/examples/targets/Configuration File/Database/MSSQL/drop_nlog_database.bat +19 -0
  237. data/docs/examples/targets/Configuration File/Database/MSSQL/drop_nlog_database.sql +4 -0
  238. data/docs/examples/targets/Configuration File/Database/Oracle.Native/NLog.config +23 -0
  239. data/docs/examples/targets/Configuration File/Database/Oracle.OleDb/NLog.config +22 -0
  240. data/docs/examples/targets/Configuration File/Debug/NLog.config +11 -0
  241. data/docs/examples/targets/Configuration File/Debugger/NLog.config +11 -0
  242. data/docs/examples/targets/Configuration File/EventLog/NLog.config +11 -0
  243. data/docs/examples/targets/Configuration File/FallbackGroup/NLog.config +14 -0
  244. data/docs/examples/targets/Configuration File/File/Archive1/NLog.config +20 -0
  245. data/docs/examples/targets/Configuration File/File/Archive2/NLog.config +20 -0
  246. data/docs/examples/targets/Configuration File/File/Archive3/NLog.config +22 -0
  247. data/docs/examples/targets/Configuration File/File/Archive4/NLog.config +22 -0
  248. data/docs/examples/targets/Configuration File/File/Asynchronous/NLog.config +18 -0
  249. data/docs/examples/targets/Configuration File/File/CSV/NLog.config +18 -0
  250. data/docs/examples/targets/Configuration File/File/Multiple/NLog.config +14 -0
  251. data/docs/examples/targets/Configuration File/File/Multiple2/NLog.config +14 -0
  252. data/docs/examples/targets/Configuration File/File/Simple/NLog.config +16 -0
  253. data/docs/examples/targets/Configuration File/FilteringWrapper/NLog.config +13 -0
  254. data/docs/examples/targets/Configuration File/FormControl/NLog.config +12 -0
  255. data/docs/examples/targets/Configuration File/MSMQ/Multiple/NLog.config +17 -0
  256. data/docs/examples/targets/Configuration File/MSMQ/Simple/NLog.config +17 -0
  257. data/docs/examples/targets/Configuration File/Mail/Buffered/NLog.config +18 -0
  258. data/docs/examples/targets/Configuration File/Mail/Simple/NLog.config +16 -0
  259. data/docs/examples/targets/Configuration File/Memory/NLog.config +11 -0
  260. data/docs/examples/targets/Configuration File/MessageBox/NLog.config +11 -0
  261. data/docs/examples/targets/Configuration File/MethodCall/NLog.config +14 -0
  262. data/docs/examples/targets/Configuration File/NLogViewer/NLog.config +11 -0
  263. data/docs/examples/targets/Configuration File/Network/NLog.config +11 -0
  264. data/docs/examples/targets/Configuration File/Null/NLog.config +11 -0
  265. data/docs/examples/targets/Configuration File/OutputDebugString/NLog.config +11 -0
  266. data/docs/examples/targets/Configuration File/PerfCounter/NLog.config +12 -0
  267. data/docs/examples/targets/Configuration File/PostFilteringWrapper/NLog.config +16 -0
  268. data/docs/examples/targets/Configuration File/RandomizeGroup/NLog.config +14 -0
  269. data/docs/examples/targets/Configuration File/RepeatingWrapper/NLog.config +13 -0
  270. data/docs/examples/targets/Configuration File/RetryingWrapper/NLog.config +13 -0
  271. data/docs/examples/targets/Configuration File/RichTextBox/RowColoring/NLog.config +14 -0
  272. data/docs/examples/targets/Configuration File/RichTextBox/Simple/NLog.config +12 -0
  273. data/docs/examples/targets/Configuration File/RichTextBox/WordColoring/NLog.config +14 -0
  274. data/docs/examples/targets/Configuration File/RoundRobinGroup/NLog.config +14 -0
  275. data/docs/examples/targets/Configuration File/SplitGroup/NLog.config +14 -0
  276. data/docs/examples/targets/Configuration File/Trace/NLog.config +11 -0
  277. data/docs/examples/targets/Configuration File/WebService/NLog.config +17 -0
  278. data/docs/examples/targets/Configuration File/WebService/WebService1/Properties/AssemblyInfo.cs +13 -0
  279. data/docs/examples/targets/Configuration File/WebService/WebService1/Service1.asmx +1 -0
  280. data/docs/examples/targets/Configuration File/WebService/WebService1/Service1.asmx.cs +24 -0
  281. data/docs/examples/targets/Configuration File/WebService/WebService1/Web.config +36 -0
  282. data/docs/examples/targets/Configuration File/WebService/WebService1/WebService1.csproj +77 -0
  283. data/docs/examples/targets/Configuration File/WebService/WebService1/WebService1.sln +20 -0
  284. data/docs/examples/targets/Screenshots/ASPNetTrace/ASPNetTraceOutput1.gif +0 -0
  285. data/docs/examples/targets/Screenshots/ASPNetTrace/ASPNetTraceOutput2.gif +0 -0
  286. data/docs/examples/targets/Screenshots/ColoredConsole/Row Highlighting.gif +0 -0
  287. data/docs/examples/targets/Screenshots/ColoredConsole/Simple.gif +0 -0
  288. data/docs/examples/targets/Screenshots/ColoredConsole/Word Highlighting.gif +0 -0
  289. data/docs/examples/targets/Screenshots/FormControl/FormControl.gif +0 -0
  290. data/docs/examples/targets/Screenshots/MessageBox/MessageBoxTarget.gif +0 -0
  291. data/docs/examples/targets/Screenshots/Network/Output.gif +0 -0
  292. data/docs/examples/targets/Screenshots/RichTextBox/RowColoring.gif +0 -0
  293. data/docs/examples/targets/Screenshots/RichTextBox/Simple.gif +0 -0
  294. data/docs/examples/targets/Screenshots/RichTextBox/WordColoring.gif +0 -0
  295. data/docs/examples/web/AddFilter.cs +6 -0
  296. data/docs/examples/web/AddLayoutRenderer.cs +6 -0
  297. data/docs/examples/web/AddTarget.cs +6 -0
  298. data/docs/examples/web/GetCurrentClassLogger.cs +11 -0
  299. data/docs/examples/web/GetLogger.cs +11 -0
  300. data/docs/examples/web/MyFirstFilter.cs +35 -0
  301. data/docs/examples/web/MyFirstLayoutRenderer.cs +41 -0
  302. data/docs/examples/web/MyFirstTarget.cs +28 -0
  303. data/docs/examples/web/NLogC.cpp +26 -0
  304. data/docs/examples/web/NLogCdef.cpp +28 -0
  305. data/docs/examples/web/Performance.cs +16 -0
  306. data/docs/examples/web/app.config +10 -0
  307. data/docs/examples/web/article1.cs +21 -0
  308. data/docs/examples/web/article2.cs +33 -0
  309. data/docs/examples/web/article3.nlog +9 -0
  310. data/docs/examples/web/article4.nlog +9 -0
  311. data/docs/examples/web/article5.nlog +24 -0
  312. data/docs/examples/web/article6.nlog +7 -0
  313. data/docs/examples/web/benchmark_log4net.cs +30 -0
  314. data/docs/examples/web/benchmark_nlog.cs +29 -0
  315. data/docs/examples/web/config1.nlog +4 -0
  316. data/docs/examples/web/config10.nlog +18 -0
  317. data/docs/examples/web/config11.nlog +14 -0
  318. data/docs/examples/web/config12.nlog +4 -0
  319. data/docs/examples/web/config2.nlog +3 -0
  320. data/docs/examples/web/config3.nlog +24 -0
  321. data/docs/examples/web/config4.nlog +25 -0
  322. data/docs/examples/web/config5.nlog +10 -0
  323. data/docs/examples/web/config6.nlog +23 -0
  324. data/docs/examples/web/config7.nlog +14 -0
  325. data/docs/examples/web/config8.nlog +9 -0
  326. data/docs/examples/web/config8a.nlog +9 -0
  327. data/docs/examples/web/config9.nlog +14 -0
  328. data/docs/examples/web/test.js +44 -0
  329. data/docs/examples/web/test.vbs +46 -0
  330. data/docs/examples/web/tutorial.cs +37 -0
  331. data/lib/Mono 1.0/NLog.dll +0 -0
  332. data/lib/Mono 1.0/NLog.xml +12948 -0
  333. data/lib/Mono 1.0/NLog.xsd +1566 -0
  334. data/lib/Mono 1.0/Policy.1.0.NLog.dll +0 -0
  335. data/lib/Mono 1.0/Policy.1.0.NLog.xml +11 -0
  336. data/lib/Mono 2.0/NLog.dll +0 -0
  337. data/lib/Mono 2.0/NLog.xml +12969 -0
  338. data/lib/Mono 2.0/NLog.xsd +1566 -0
  339. data/lib/Mono 2.0/Policy.1.0.NLog.dll +0 -0
  340. data/lib/Mono 2.0/Policy.1.0.NLog.xml +11 -0
  341. metadata +410 -0
@@ -0,0 +1,20 @@
1
+ 
2
+ Microsoft Visual Studio Solution File, Format Version 9.00
3
+ # Visual Studio 2005
4
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RepeatingWrapper", "RepeatingWrapper.csproj", "{F7F3F62B-96E4-4FB9-8923-FB883E87520F}"
5
+ EndProject
6
+ Global
7
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
8
+ Debug|Any CPU = Debug|Any CPU
9
+ Release|Any CPU = Release|Any CPU
10
+ EndGlobalSection
11
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
12
+ {F7F3F62B-96E4-4FB9-8923-FB883E87520F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
13
+ {F7F3F62B-96E4-4FB9-8923-FB883E87520F}.Debug|Any CPU.Build.0 = Debug|Any CPU
14
+ {F7F3F62B-96E4-4FB9-8923-FB883E87520F}.Release|Any CPU.ActiveCfg = Release|Any CPU
15
+ {F7F3F62B-96E4-4FB9-8923-FB883E87520F}.Release|Any CPU.Build.0 = Release|Any CPU
16
+ EndGlobalSection
17
+ GlobalSection(SolutionProperties) = preSolution
18
+ HideSolutionNode = FALSE
19
+ EndGlobalSection
20
+ EndGlobal
@@ -0,0 +1,25 @@
1
+ using System;
2
+
3
+ using NLog;
4
+ using NLog.Targets;
5
+ using NLog.Targets.Wrappers;
6
+ using System.Diagnostics;
7
+
8
+ class Example
9
+ {
10
+ static void Main(string[] args)
11
+ {
12
+ FileTarget wrappedTarget = new FileTarget();
13
+ wrappedTarget.FileName = "${basedir}/file.txt";
14
+
15
+ RetryingTargetWrapper target = new RetryingTargetWrapper();
16
+ target.WrappedTarget = wrappedTarget;
17
+ target.RetryCount = 3;
18
+ target.RetryDelayMilliseconds = 1000;
19
+
20
+ NLog.Config.SimpleConfigurator.ConfigureForTargetLogging(target, LogLevel.Debug);
21
+
22
+ Logger logger = LogManager.GetLogger("Example");
23
+ logger.Debug("log message");
24
+ }
25
+ }
@@ -0,0 +1,40 @@
1
+ <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2
+ <PropertyGroup>
3
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
4
+ <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
5
+ <ProjectGuid>{B2529445-C84E-4E3F-B4D7-651E9C195D39}</ProjectGuid>
6
+ <OutputType>Exe</OutputType>
7
+ <NoStandardLibraries>false</NoStandardLibraries>
8
+ <AssemblyName>RetryingWrapper</AssemblyName>
9
+ <RootNamespace>
10
+ </RootNamespace>
11
+ </PropertyGroup>
12
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
13
+ <DebugSymbols>true</DebugSymbols>
14
+ <DebugType>full</DebugType>
15
+ <Optimize>false</Optimize>
16
+ <OutputPath>.\bin\Debug\</OutputPath>
17
+ <DefineConstants>DEBUG;TRACE</DefineConstants>
18
+ </PropertyGroup>
19
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
20
+ <DebugType>pdbonly</DebugType>
21
+ <Optimize>true</Optimize>
22
+ <OutputPath>.\bin\Release\</OutputPath>
23
+ <DefineConstants>TRACE</DefineConstants>
24
+ </PropertyGroup>
25
+ <ItemGroup>
26
+ <Reference Include="NLog">
27
+ <SpecificVersion>False</SpecificVersion>
28
+ </Reference>
29
+ <Reference Include="System" />
30
+ <Reference Include="System.Data" />
31
+ <Reference Include="System.Xml" />
32
+ </ItemGroup>
33
+ <ItemGroup>
34
+ <Compile Include="Example.cs" />
35
+ </ItemGroup>
36
+ <Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" />
37
+ <ProjectExtensions>
38
+ <VisualStudio AllowExistingFolder="true" />
39
+ </ProjectExtensions>
40
+ </Project>
@@ -0,0 +1,20 @@
1
+ 
2
+ Microsoft Visual Studio Solution File, Format Version 9.00
3
+ # Visual Studio 2005
4
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RetryingWrapper", "RetryingWrapper.csproj", "{B2529445-C84E-4E3F-B4D7-651E9C195D39}"
5
+ EndProject
6
+ Global
7
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
8
+ Debug|Any CPU = Debug|Any CPU
9
+ Release|Any CPU = Release|Any CPU
10
+ EndGlobalSection
11
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
12
+ {B2529445-C84E-4E3F-B4D7-651E9C195D39}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
13
+ {B2529445-C84E-4E3F-B4D7-651E9C195D39}.Debug|Any CPU.Build.0 = Debug|Any CPU
14
+ {B2529445-C84E-4E3F-B4D7-651E9C195D39}.Release|Any CPU.ActiveCfg = Release|Any CPU
15
+ {B2529445-C84E-4E3F-B4D7-651E9C195D39}.Release|Any CPU.Build.0 = Release|Any CPU
16
+ EndGlobalSection
17
+ GlobalSection(SolutionProperties) = preSolution
18
+ HideSolutionNode = FALSE
19
+ EndGlobalSection
20
+ EndGlobal
@@ -0,0 +1,22 @@
1
+ using System;
2
+ using System.Windows.Forms;
3
+ using NLog;
4
+ using NLog.Targets;
5
+
6
+ namespace RichTextBox2
7
+ {
8
+ static class Example
9
+ {
10
+ /// <summary>
11
+ /// The main entry point for the application.
12
+ /// </summary>
13
+ [STAThread]
14
+ static void Main()
15
+ {
16
+ Application.EnableVisualStyles();
17
+ Application.SetCompatibleTextRenderingDefault(false);
18
+ Application.Run(new Form1());
19
+ // for NLog configuration look in Form1.cs
20
+ }
21
+ }
22
+ }
@@ -0,0 +1,61 @@
1
+ namespace RichTextBox2
2
+ {
3
+ partial class Form1
4
+ {
5
+ /// <summary>
6
+ /// Required designer variable.
7
+ /// </summary>
8
+ private System.ComponentModel.IContainer components = null;
9
+
10
+ /// <summary>
11
+ /// Clean up any resources being used.
12
+ /// </summary>
13
+ /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14
+ protected override void Dispose(bool disposing)
15
+ {
16
+ if (disposing && (components != null))
17
+ {
18
+ components.Dispose();
19
+ }
20
+ base.Dispose(disposing);
21
+ }
22
+
23
+ #region Windows Form Designer generated code
24
+
25
+ /// <summary>
26
+ /// Required method for Designer support - do not modify
27
+ /// the contents of this method with the code editor.
28
+ /// </summary>
29
+ private void InitializeComponent()
30
+ {
31
+ this.richTextBox1 = new System.Windows.Forms.RichTextBox();
32
+ this.SuspendLayout();
33
+ //
34
+ // richTextBox1
35
+ //
36
+ this.richTextBox1.Dock = System.Windows.Forms.DockStyle.Fill;
37
+ this.richTextBox1.Location = new System.Drawing.Point(0, 0);
38
+ this.richTextBox1.Name = "richTextBox1";
39
+ this.richTextBox1.Size = new System.Drawing.Size(292, 266);
40
+ this.richTextBox1.TabIndex = 0;
41
+ this.richTextBox1.Text = "";
42
+ //
43
+ // Form1
44
+ //
45
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
46
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
47
+ this.ClientSize = new System.Drawing.Size(292, 266);
48
+ this.Controls.Add(this.richTextBox1);
49
+ this.Name = "Form1";
50
+ this.Text = "Form1";
51
+ this.Load += new System.EventHandler(this.Form1_Load);
52
+ this.ResumeLayout(false);
53
+
54
+ }
55
+
56
+ #endregion
57
+
58
+ private System.Windows.Forms.RichTextBox richTextBox1;
59
+ }
60
+ }
61
+
@@ -0,0 +1,46 @@
1
+ using System;
2
+ using System.Drawing;
3
+ using System.Text;
4
+ using System.Windows.Forms;
5
+ using NLog;
6
+ using NLog.Targets;
7
+
8
+ namespace RichTextBox2
9
+ {
10
+ public partial class Form1 : Form
11
+ {
12
+ public Form1()
13
+ {
14
+ InitializeComponent();
15
+ }
16
+
17
+ private void Form1_Load(object sender, EventArgs e)
18
+ {
19
+
20
+ RichTextBoxTarget target = new RichTextBoxTarget();
21
+ target.Layout = "${date:format=HH\\:MM\\:ss} ${logger} ${message}";
22
+ target.ControlName = "richTextBox1";
23
+ target.FormName = "Form1";
24
+ target.UseDefaultRowColoringRules = false;
25
+ target.RowColoringRules.Add(
26
+ new RichTextBoxRowColoringRule(
27
+ "level >= LogLevel.Error and contains(message,'serious')", // condition
28
+ "White", // font color
29
+ "Red", // background color
30
+ FontStyle.Bold | FontStyle.Italic
31
+ )
32
+ );
33
+
34
+ NLog.Config.SimpleConfigurator.ConfigureForTargetLogging(target, LogLevel.Trace);
35
+
36
+ Logger logger = LogManager.GetLogger("Example");
37
+ logger.Trace("trace log message");
38
+ logger.Debug("debug log message");
39
+ logger.Info("info log message");
40
+ logger.Warn("warn log message");
41
+ logger.Error("error log message");
42
+ logger.Fatal("fatal log message");
43
+ logger.Fatal("fatal log message, rather serious");
44
+ }
45
+ }
46
+ }
@@ -0,0 +1,120 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <root>
3
+ <!--
4
+ Microsoft ResX Schema
5
+
6
+ Version 2.0
7
+
8
+ The primary goals of this format is to allow a simple XML format
9
+ that is mostly human readable. The generation and parsing of the
10
+ various data types are done through the TypeConverter classes
11
+ associated with the data types.
12
+
13
+ Example:
14
+
15
+ ... ado.net/XML headers & schema ...
16
+ <resheader name="resmimetype">text/microsoft-resx</resheader>
17
+ <resheader name="version">2.0</resheader>
18
+ <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
19
+ <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
20
+ <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
21
+ <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
22
+ <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
23
+ <value>[base64 mime encoded serialized .NET Framework object]</value>
24
+ </data>
25
+ <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
26
+ <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
27
+ <comment>This is a comment</comment>
28
+ </data>
29
+
30
+ There are any number of "resheader" rows that contain simple
31
+ name/value pairs.
32
+
33
+ Each data row contains a name, and value. The row also contains a
34
+ type or mimetype. Type corresponds to a .NET class that support
35
+ text/value conversion through the TypeConverter architecture.
36
+ Classes that don't support this are serialized and stored with the
37
+ mimetype set.
38
+
39
+ The mimetype is used for serialized objects, and tells the
40
+ ResXResourceReader how to depersist the object. This is currently not
41
+ extensible. For a given mimetype the value must be set accordingly:
42
+
43
+ Note - application/x-microsoft.net.object.binary.base64 is the format
44
+ that the ResXResourceWriter will generate, however the reader can
45
+ read any of the formats listed below.
46
+
47
+ mimetype: application/x-microsoft.net.object.binary.base64
48
+ value : The object must be serialized with
49
+ : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
50
+ : and then encoded with base64 encoding.
51
+
52
+ mimetype: application/x-microsoft.net.object.soap.base64
53
+ value : The object must be serialized with
54
+ : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
55
+ : and then encoded with base64 encoding.
56
+
57
+ mimetype: application/x-microsoft.net.object.bytearray.base64
58
+ value : The object must be serialized into a byte array
59
+ : using a System.ComponentModel.TypeConverter
60
+ : and then encoded with base64 encoding.
61
+ -->
62
+ <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
63
+ <xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
64
+ <xsd:element name="root" msdata:IsDataSet="true">
65
+ <xsd:complexType>
66
+ <xsd:choice maxOccurs="unbounded">
67
+ <xsd:element name="metadata">
68
+ <xsd:complexType>
69
+ <xsd:sequence>
70
+ <xsd:element name="value" type="xsd:string" minOccurs="0" />
71
+ </xsd:sequence>
72
+ <xsd:attribute name="name" use="required" type="xsd:string" />
73
+ <xsd:attribute name="type" type="xsd:string" />
74
+ <xsd:attribute name="mimetype" type="xsd:string" />
75
+ <xsd:attribute ref="xml:space" />
76
+ </xsd:complexType>
77
+ </xsd:element>
78
+ <xsd:element name="assembly">
79
+ <xsd:complexType>
80
+ <xsd:attribute name="alias" type="xsd:string" />
81
+ <xsd:attribute name="name" type="xsd:string" />
82
+ </xsd:complexType>
83
+ </xsd:element>
84
+ <xsd:element name="data">
85
+ <xsd:complexType>
86
+ <xsd:sequence>
87
+ <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
88
+ <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
89
+ </xsd:sequence>
90
+ <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
91
+ <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
92
+ <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
93
+ <xsd:attribute ref="xml:space" />
94
+ </xsd:complexType>
95
+ </xsd:element>
96
+ <xsd:element name="resheader">
97
+ <xsd:complexType>
98
+ <xsd:sequence>
99
+ <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
100
+ </xsd:sequence>
101
+ <xsd:attribute name="name" type="xsd:string" use="required" />
102
+ </xsd:complexType>
103
+ </xsd:element>
104
+ </xsd:choice>
105
+ </xsd:complexType>
106
+ </xsd:element>
107
+ </xsd:schema>
108
+ <resheader name="resmimetype">
109
+ <value>text/microsoft-resx</value>
110
+ </resheader>
111
+ <resheader name="version">
112
+ <value>2.0</value>
113
+ </resheader>
114
+ <resheader name="reader">
115
+ <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
116
+ </resheader>
117
+ <resheader name="writer">
118
+ <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
119
+ </resheader>
120
+ </root>
@@ -0,0 +1,33 @@
1
+ using System.Reflection;
2
+ using System.Runtime.CompilerServices;
3
+ using System.Runtime.InteropServices;
4
+
5
+ // General Information about an assembly is controlled through the following
6
+ // set of attributes. Change these attribute values to modify the information
7
+ // associated with an assembly.
8
+ [assembly: AssemblyTitle("RichTextBox")]
9
+ [assembly: AssemblyDescription("")]
10
+ [assembly: AssemblyConfiguration("")]
11
+ [assembly: AssemblyCompany("MK")]
12
+ [assembly: AssemblyProduct("RichTextBox")]
13
+ [assembly: AssemblyCopyright("Copyright © MK 2006")]
14
+ [assembly: AssemblyTrademark("")]
15
+ [assembly: AssemblyCulture("")]
16
+
17
+ // Setting ComVisible to false makes the types in this assembly not visible
18
+ // to COM components. If you need to access a type in this assembly from
19
+ // COM, set the ComVisible attribute to true on that type.
20
+ [assembly: ComVisible(false)]
21
+
22
+ // The following GUID is for the ID of the typelib if this project is exposed to COM
23
+ [assembly: Guid("037e89f0-c093-4797-89d4-97b194dfdb98")]
24
+
25
+ // Version information for an assembly consists of the following four values:
26
+ //
27
+ // Major Version
28
+ // Minor Version
29
+ // Build Number
30
+ // Revision
31
+ //
32
+ [assembly: AssemblyVersion("1.0.0.0")]
33
+ [assembly: AssemblyFileVersion("1.0.0.0")]
@@ -0,0 +1,71 @@
1
+ //------------------------------------------------------------------------------
2
+ // <auto-generated>
3
+ // This code was generated by a tool.
4
+ // Runtime Version:2.0.50727.42
5
+ //
6
+ // Changes to this file may cause incorrect behavior and will be lost if
7
+ // the code is regenerated.
8
+ // </auto-generated>
9
+ //------------------------------------------------------------------------------
10
+
11
+ namespace RichTextBox2.Properties
12
+ {
13
+
14
+
15
+ /// <summary>
16
+ /// A strongly-typed resource class, for looking up localized strings, etc.
17
+ /// </summary>
18
+ // This class was auto-generated by the StronglyTypedResourceBuilder
19
+ // class via a tool like ResGen or Visual Studio.
20
+ // To add or remove a member, edit your .ResX file then rerun ResGen
21
+ // with the /str option, or rebuild your VS project.
22
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0")]
23
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
24
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
25
+ internal class Resources
26
+ {
27
+
28
+ private static global::System.Resources.ResourceManager resourceMan;
29
+
30
+ private static global::System.Globalization.CultureInfo resourceCulture;
31
+
32
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
33
+ internal Resources()
34
+ {
35
+ }
36
+
37
+ /// <summary>
38
+ /// Returns the cached ResourceManager instance used by this class.
39
+ /// </summary>
40
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
41
+ internal static global::System.Resources.ResourceManager ResourceManager
42
+ {
43
+ get
44
+ {
45
+ if ((resourceMan == null))
46
+ {
47
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("RichTextBox2.Properties.Resources", typeof(Resources).Assembly);
48
+ resourceMan = temp;
49
+ }
50
+ return resourceMan;
51
+ }
52
+ }
53
+
54
+ /// <summary>
55
+ /// Overrides the current thread's CurrentUICulture property for all
56
+ /// resource lookups using this strongly typed resource class.
57
+ /// </summary>
58
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
59
+ internal static global::System.Globalization.CultureInfo Culture
60
+ {
61
+ get
62
+ {
63
+ return resourceCulture;
64
+ }
65
+ set
66
+ {
67
+ resourceCulture = value;
68
+ }
69
+ }
70
+ }
71
+ }