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}") = "ASPNetTraceTest", "ASPNetTraceTest.csproj", "{C7BA2451-7027-4838-BD3B-02DC5DCD8CB5}"
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
+ {C7BA2451-7027-4838-BD3B-02DC5DCD8CB5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
13
+ {C7BA2451-7027-4838-BD3B-02DC5DCD8CB5}.Debug|Any CPU.Build.0 = Debug|Any CPU
14
+ {C7BA2451-7027-4838-BD3B-02DC5DCD8CB5}.Release|Any CPU.ActiveCfg = Release|Any CPU
15
+ {C7BA2451-7027-4838-BD3B-02DC5DCD8CB5}.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
+ using System.Web;
3
+
4
+ using NLog;
5
+ using NLog.Targets;
6
+
7
+ namespace SomeWebApplication
8
+ {
9
+ public class Global : System.Web.HttpApplication
10
+ {
11
+ //
12
+ // this event handler is executed at the very start of the web application
13
+ // so this is a good place to configure targets programmatically
14
+ //
15
+ // alternative you could place this code in a static type constructor
16
+ //
17
+ protected void Application_Start(Object sender, EventArgs e)
18
+ {
19
+ ASPNetTraceTarget target = new ASPNetTraceTarget();
20
+ target.Layout = "${logger} ${message}";
21
+
22
+ NLog.Config.SimpleConfigurator.ConfigureForTargetLogging(target, LogLevel.Debug);
23
+ }
24
+ }
25
+ }
@@ -0,0 +1,4 @@
1
+ To open this example in VS2005 you need to get
2
+ "Visual Studio 2005 Web Application Projects" component available at:
3
+
4
+ http://msdn.microsoft.com/asp.net/reference/infrastructure/wap/default.aspx
@@ -0,0 +1 @@
1
+ <%@ Application Codebehind="Global.asax.cs" Inherits="SomeWebApplication.Global" %>
@@ -0,0 +1,23 @@
1
+ <%@ Page language="c#" AutoEventWireup="true" %>
2
+ <script language="C#" runat="server">
3
+ NLog.Logger logger = NLog.LogManager.GetLogger("default.aspx");
4
+
5
+ void Page_Load(Object sender, EventArgs e)
6
+ {
7
+ logger.Info("got Page_Load() event");
8
+ logger.Warn("Some warning...");
9
+ logger.Error("Some error...");
10
+ }
11
+ </script>
12
+ <html>
13
+ <head>
14
+ </head>
15
+ <body>
16
+ <p>
17
+ Page has been loaded and log events have been registered for display in ASP.NET Trace facility.
18
+ </p>
19
+ <p>
20
+ <a href="Trace.axd">Click here to view trace output from Trace.axd</a>
21
+ </p>
22
+ </body>
23
+ </html>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0"?>
2
+ <configuration>
3
+ <system.web>
4
+ <compilation defaultLanguage="c#" debug="true"/>
5
+ <!-- the following line enables ASP.NET trace -->
6
+ <trace enabled="true" requestLimit="10" pageOutput="false" traceMode="SortByTime" localOnly="true"/>
7
+ <xhtmlConformance mode="Legacy"/></system.web>
8
+ </configuration>
@@ -0,0 +1,320 @@
1
+ 
2
+ Microsoft Visual Studio Solution File, Format Version 9.00
3
+ # Visual Studio 2005
4
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AsyncWrapper.Wrapping File", "AsyncWrapper\Wrapping File\AsyncWrapper.Wrapping File.csproj", "{29B2985C-C196-453F-848E-7195AADAC21C}"
5
+ EndProject
6
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Chainsaw", "Chainsaw\Simple\Chainsaw.csproj", "{D7B11859-2A1B-49F7-A7C7-83B72495BF31}"
7
+ EndProject
8
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ColoredConsole.Row Highlighting", "ColoredConsole\Row Highlighting\ColoredConsole.Row Highlighting.csproj", "{71F8BD46-2468-4BD6-AE5D-7C81E56CF437}"
9
+ EndProject
10
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ColoredConsole", "ColoredConsole\Simple\ColoredConsole.csproj", "{695E7395-50BD-48BE-B1E2-7A4D21AF9F3D}"
11
+ EndProject
12
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ColoredConsole.Word Highlighting", "ColoredConsole\Word Highlighting\ColoredConsole.Word Highlighting.csproj", "{72FEDAC3-072E-4966-AB1E-63E07F884321}"
13
+ EndProject
14
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Console", "Console\Simple\Console.csproj", "{53FFA3C4-C63B-465C-AB3E-E4C3B0953AB1}"
15
+ EndProject
16
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Database.MSSQL", "Database\MSSQL\Database.MSSQL.csproj", "{4399886A-6016-4290-992E-1E77A14CEE46}"
17
+ EndProject
18
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Debug", "Debug\Simple\Debug.csproj", "{D0526912-F1E9-4D30-941F-3A229DCC9309}"
19
+ EndProject
20
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Debugger", "Debugger\Simple\Debugger.csproj", "{7720B322-2AFF-45C4-AF9A-EAB12BCFAFCE}"
21
+ EndProject
22
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EventLog", "EventLog\Simple\EventLog.csproj", "{D7347273-CF36-4A75-B324-90D4644D9287}"
23
+ EndProject
24
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "File", "File\Simple\File.csproj", "{22DFBCFD-BDC3-4CD1-8DE5-E6872ACF7DB0}"
25
+ EndProject
26
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "File.Asynchronous", "File\Asynchronous\File.Asynchronous.csproj", "{D26A09EB-2F43-4566-B304-81CF8055AD6B}"
27
+ EndProject
28
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "File.Multiple2", "File\Multiple2\File.Multiple2.csproj", "{BE090500-80BA-45B8-A22F-114167DCF774}"
29
+ EndProject
30
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "File.Multiple", "File\Multiple\File.Multiple.csproj", "{45DC6DFF-4680-4739-8DD1-3EA91C1E2F19}"
31
+ EndProject
32
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Mail", "Mail\Simple\Mail.csproj", "{4132306C-EA25-4073-BFD5-BEBD9A88B600}"
33
+ EndProject
34
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Mail.Buffered", "Mail\Buffered\Mail.Buffered.csproj", "{4D14B05B-437D-4D83-A52E-526DEBF68999}"
35
+ EndProject
36
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Memory", "Memory\Simple\Memory.csproj", "{4D71290B-65DC-4442-BE06-1CEBE07A26AC}"
37
+ EndProject
38
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MessageBox", "MessageBox\Simple\MessageBox.csproj", "{26FC5FD6-F4E9-4E0F-BB0D-492AAE98D880}"
39
+ EndProject
40
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MSMQ", "MSMQ\Simple\MSMQ.csproj", "{5D70009B-698D-4A42-99F8-6C4CEE500AD8}"
41
+ EndProject
42
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MSMQ.Multiple Queues", "MSMQ\Multiple Queues\MSMQ.Multiple Queues.csproj", "{18924A56-9ACA-4835-887B-3F8956DA7391}"
43
+ EndProject
44
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Network", "Network\Simple\Network.csproj", "{1D3835B8-779E-4053-B03E-AC5292A48FF0}"
45
+ EndProject
46
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NLogViewer", "NLogViewer\Simple\NLogViewer.csproj", "{36E8A9EF-C91F-443A-9FEF-B2AB27E3628A}"
47
+ EndProject
48
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Database.Oracle.Native", "Database\Oracle.Native\Database.Oracle.Native.csproj", "{0A94DFDE-A128-4F83-B0D2-2D97B18BF7BA}"
49
+ EndProject
50
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Database.Oracle.OleDb", "Database\Oracle.OleDb\Database.Oracle.OleDb.csproj", "{74641C69-189E-4F3E-B521-32BDC1121E5F}"
51
+ EndProject
52
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MethodCall", "MethodCall\Simple\MethodCall.csproj", "{8D851E55-9D32-4C20-A9CE-C1A35175D06E}"
53
+ EndProject
54
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Null", "Null\Simple\Null.csproj", "{D32BF09E-4214-42B3-AB66-C6CAE9C3CEB1}"
55
+ EndProject
56
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OutputDebugString", "OutputDebugString\Simple\OutputDebugString.csproj", "{670A30F5-4957-4E96-9677-71A2A40975BA}"
57
+ EndProject
58
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PerfCounter", "PerfCounter\Simple\PerfCounter.csproj", "{4C16C5D0-BB26-4639-8A2A-AEFCE8D3E5D6}"
59
+ EndProject
60
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Trace", "Trace\Simple\Trace.csproj", "{DE02AB34-33D1-42CA-A3F0-68F4B1BF98B1}"
61
+ EndProject
62
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebService", "WebService\Simple\WebService.csproj", "{70F18C83-2063-4D7F-96A9-4B1DA6752C95}"
63
+ EndProject
64
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AutoFlushWrapper", "AutoFlushWrapper\Simple\AutoFlushWrapper.csproj", "{5B09A92A-9C6F-4EE2-B777-94281092DEDF}"
65
+ EndProject
66
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BufferingWrapper", "BufferingWrapper\Simple\BufferingWrapper.csproj", "{A516604C-19DE-4AED-9262-8F7271A42BFF}"
67
+ EndProject
68
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FallbackGroup", "FallbackGroup\Simple\FallbackGroup.csproj", "{08BA1481-13F1-4913-8BA6-EDE27AD01EE7}"
69
+ EndProject
70
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PostFilteringWrapper", "PostFilteringWrapper\Simple\PostFilteringWrapper.csproj", "{B259D6E2-5376-42C1-8D05-6107BA9D1B0C}"
71
+ EndProject
72
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RandomizeGroup", "RandomizeGroup\Simple\RandomizeGroup.csproj", "{DE1A0AAC-8832-429D-90D2-360C11ADA8CE}"
73
+ EndProject
74
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RepeatingWrapper", "RepeatingWrapper\Simple\RepeatingWrapper.csproj", "{F7F3F62B-96E4-4FB9-8923-FB883E87520F}"
75
+ EndProject
76
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RetryingWrapper", "RetryingWrapper\Simple\RetryingWrapper.csproj", "{B2529445-C84E-4E3F-B4D7-651E9C195D39}"
77
+ EndProject
78
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RoundRobinGroup", "RoundRobinGroup\Simple\RoundRobinGroup.csproj", "{67EE6098-74A6-456F-8D27-C0D38D0A9B22}"
79
+ EndProject
80
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SplitGroup", "SplitGroup\Simple\SplitGroup.csproj", "{6C8815D6-62F5-4DED-AE3F-0AF4D0178CDB}"
81
+ EndProject
82
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ASPNetBufferingWrapper", "ASPNetBufferingWrapper\ASPNetBufferingWrapper.csproj", "{18041F69-4814-447B-B170-984E72423D4A}"
83
+ EndProject
84
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ASPNetTraceTest", "ASPNetTrace\ASPNetTraceTest.csproj", "{C7BA2451-7027-4838-BD3B-02DC5DCD8CB5}"
85
+ EndProject
86
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FilteringWrapper", "FilteringWrapper\Simple\FilteringWrapper.csproj", "{BFEDB63A-1A05-4A51-B7C2-C59DE01BC617}"
87
+ EndProject
88
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "File.Archive1", "File\Archive1\File.Archive1.csproj", "{D8A33DCE-395C-4AD8-8FEC-74B8C8C74F53}"
89
+ EndProject
90
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "File.Archive2", "File\Archive2\File.Archive2.csproj", "{97DA6A8F-CF90-4E70-986E-E0A9D7196312}"
91
+ EndProject
92
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "File.Archive3", "File\Archive3\File.Archive3.csproj", "{400AFAB6-9354-49AB-A001-00B09235CEF1}"
93
+ EndProject
94
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "File.Archive4", "File\Archive4\File.Archive4.csproj", "{F1BC69B4-E41C-4E72-AA57-FBF73663CAEB}"
95
+ EndProject
96
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FormControl", "FormControl\FormControl.csproj", "{20449142-40C3-4B1D-8F7C-2D3ED924FDA7}"
97
+ EndProject
98
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RichTextBox", "RichTextBox\Simple\RichTextBox.csproj", "{C6308AED-8472-4CCA-B49C-4AE9EBCE9DC8}"
99
+ EndProject
100
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RichTextBox.WordColoring", "RichTextBox\WordColoring\RichTextBox.WordColoring.csproj", "{7582650C-2D27-4AB1-9E2F-A93084A2AC79}"
101
+ EndProject
102
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RichTextBox.RowColoring", "RichTextBox\RowColoring\RichTextBox.RowColoring.csproj", "{0D0CED51-E850-4107-81F8-910F234E0F81}"
103
+ EndProject
104
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "File.CSV", "File\CSV\File.CSV.csproj", "{B55FBAF5-21E0-4375-8515-0FF9622D581E}"
105
+ EndProject
106
+ Global
107
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
108
+ Debug|Any CPU = Debug|Any CPU
109
+ Release|Any CPU = Release|Any CPU
110
+ EndGlobalSection
111
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
112
+ {29B2985C-C196-453F-848E-7195AADAC21C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
113
+ {29B2985C-C196-453F-848E-7195AADAC21C}.Debug|Any CPU.Build.0 = Debug|Any CPU
114
+ {29B2985C-C196-453F-848E-7195AADAC21C}.Release|Any CPU.ActiveCfg = Release|Any CPU
115
+ {29B2985C-C196-453F-848E-7195AADAC21C}.Release|Any CPU.Build.0 = Release|Any CPU
116
+ {D7B11859-2A1B-49F7-A7C7-83B72495BF31}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
117
+ {D7B11859-2A1B-49F7-A7C7-83B72495BF31}.Debug|Any CPU.Build.0 = Debug|Any CPU
118
+ {D7B11859-2A1B-49F7-A7C7-83B72495BF31}.Release|Any CPU.ActiveCfg = Release|Any CPU
119
+ {D7B11859-2A1B-49F7-A7C7-83B72495BF31}.Release|Any CPU.Build.0 = Release|Any CPU
120
+ {71F8BD46-2468-4BD6-AE5D-7C81E56CF437}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
121
+ {71F8BD46-2468-4BD6-AE5D-7C81E56CF437}.Debug|Any CPU.Build.0 = Debug|Any CPU
122
+ {71F8BD46-2468-4BD6-AE5D-7C81E56CF437}.Release|Any CPU.ActiveCfg = Release|Any CPU
123
+ {71F8BD46-2468-4BD6-AE5D-7C81E56CF437}.Release|Any CPU.Build.0 = Release|Any CPU
124
+ {695E7395-50BD-48BE-B1E2-7A4D21AF9F3D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
125
+ {695E7395-50BD-48BE-B1E2-7A4D21AF9F3D}.Debug|Any CPU.Build.0 = Debug|Any CPU
126
+ {695E7395-50BD-48BE-B1E2-7A4D21AF9F3D}.Release|Any CPU.ActiveCfg = Release|Any CPU
127
+ {695E7395-50BD-48BE-B1E2-7A4D21AF9F3D}.Release|Any CPU.Build.0 = Release|Any CPU
128
+ {72FEDAC3-072E-4966-AB1E-63E07F884321}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
129
+ {72FEDAC3-072E-4966-AB1E-63E07F884321}.Debug|Any CPU.Build.0 = Debug|Any CPU
130
+ {72FEDAC3-072E-4966-AB1E-63E07F884321}.Release|Any CPU.ActiveCfg = Release|Any CPU
131
+ {72FEDAC3-072E-4966-AB1E-63E07F884321}.Release|Any CPU.Build.0 = Release|Any CPU
132
+ {53FFA3C4-C63B-465C-AB3E-E4C3B0953AB1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
133
+ {53FFA3C4-C63B-465C-AB3E-E4C3B0953AB1}.Debug|Any CPU.Build.0 = Debug|Any CPU
134
+ {53FFA3C4-C63B-465C-AB3E-E4C3B0953AB1}.Release|Any CPU.ActiveCfg = Release|Any CPU
135
+ {53FFA3C4-C63B-465C-AB3E-E4C3B0953AB1}.Release|Any CPU.Build.0 = Release|Any CPU
136
+ {4399886A-6016-4290-992E-1E77A14CEE46}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
137
+ {4399886A-6016-4290-992E-1E77A14CEE46}.Debug|Any CPU.Build.0 = Debug|Any CPU
138
+ {4399886A-6016-4290-992E-1E77A14CEE46}.Release|Any CPU.ActiveCfg = Release|Any CPU
139
+ {4399886A-6016-4290-992E-1E77A14CEE46}.Release|Any CPU.Build.0 = Release|Any CPU
140
+ {D0526912-F1E9-4D30-941F-3A229DCC9309}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
141
+ {D0526912-F1E9-4D30-941F-3A229DCC9309}.Debug|Any CPU.Build.0 = Debug|Any CPU
142
+ {D0526912-F1E9-4D30-941F-3A229DCC9309}.Release|Any CPU.ActiveCfg = Release|Any CPU
143
+ {D0526912-F1E9-4D30-941F-3A229DCC9309}.Release|Any CPU.Build.0 = Release|Any CPU
144
+ {7720B322-2AFF-45C4-AF9A-EAB12BCFAFCE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
145
+ {7720B322-2AFF-45C4-AF9A-EAB12BCFAFCE}.Debug|Any CPU.Build.0 = Debug|Any CPU
146
+ {7720B322-2AFF-45C4-AF9A-EAB12BCFAFCE}.Release|Any CPU.ActiveCfg = Release|Any CPU
147
+ {7720B322-2AFF-45C4-AF9A-EAB12BCFAFCE}.Release|Any CPU.Build.0 = Release|Any CPU
148
+ {D7347273-CF36-4A75-B324-90D4644D9287}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
149
+ {D7347273-CF36-4A75-B324-90D4644D9287}.Debug|Any CPU.Build.0 = Debug|Any CPU
150
+ {D7347273-CF36-4A75-B324-90D4644D9287}.Release|Any CPU.ActiveCfg = Release|Any CPU
151
+ {D7347273-CF36-4A75-B324-90D4644D9287}.Release|Any CPU.Build.0 = Release|Any CPU
152
+ {22DFBCFD-BDC3-4CD1-8DE5-E6872ACF7DB0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
153
+ {22DFBCFD-BDC3-4CD1-8DE5-E6872ACF7DB0}.Debug|Any CPU.Build.0 = Debug|Any CPU
154
+ {22DFBCFD-BDC3-4CD1-8DE5-E6872ACF7DB0}.Release|Any CPU.ActiveCfg = Release|Any CPU
155
+ {22DFBCFD-BDC3-4CD1-8DE5-E6872ACF7DB0}.Release|Any CPU.Build.0 = Release|Any CPU
156
+ {D26A09EB-2F43-4566-B304-81CF8055AD6B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
157
+ {D26A09EB-2F43-4566-B304-81CF8055AD6B}.Debug|Any CPU.Build.0 = Debug|Any CPU
158
+ {D26A09EB-2F43-4566-B304-81CF8055AD6B}.Release|Any CPU.ActiveCfg = Release|Any CPU
159
+ {D26A09EB-2F43-4566-B304-81CF8055AD6B}.Release|Any CPU.Build.0 = Release|Any CPU
160
+ {BE090500-80BA-45B8-A22F-114167DCF774}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
161
+ {BE090500-80BA-45B8-A22F-114167DCF774}.Debug|Any CPU.Build.0 = Debug|Any CPU
162
+ {BE090500-80BA-45B8-A22F-114167DCF774}.Release|Any CPU.ActiveCfg = Release|Any CPU
163
+ {BE090500-80BA-45B8-A22F-114167DCF774}.Release|Any CPU.Build.0 = Release|Any CPU
164
+ {45DC6DFF-4680-4739-8DD1-3EA91C1E2F19}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
165
+ {45DC6DFF-4680-4739-8DD1-3EA91C1E2F19}.Debug|Any CPU.Build.0 = Debug|Any CPU
166
+ {45DC6DFF-4680-4739-8DD1-3EA91C1E2F19}.Release|Any CPU.ActiveCfg = Release|Any CPU
167
+ {45DC6DFF-4680-4739-8DD1-3EA91C1E2F19}.Release|Any CPU.Build.0 = Release|Any CPU
168
+ {4132306C-EA25-4073-BFD5-BEBD9A88B600}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
169
+ {4132306C-EA25-4073-BFD5-BEBD9A88B600}.Debug|Any CPU.Build.0 = Debug|Any CPU
170
+ {4132306C-EA25-4073-BFD5-BEBD9A88B600}.Release|Any CPU.ActiveCfg = Release|Any CPU
171
+ {4132306C-EA25-4073-BFD5-BEBD9A88B600}.Release|Any CPU.Build.0 = Release|Any CPU
172
+ {4D14B05B-437D-4D83-A52E-526DEBF68999}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
173
+ {4D14B05B-437D-4D83-A52E-526DEBF68999}.Debug|Any CPU.Build.0 = Debug|Any CPU
174
+ {4D14B05B-437D-4D83-A52E-526DEBF68999}.Release|Any CPU.ActiveCfg = Release|Any CPU
175
+ {4D14B05B-437D-4D83-A52E-526DEBF68999}.Release|Any CPU.Build.0 = Release|Any CPU
176
+ {4D71290B-65DC-4442-BE06-1CEBE07A26AC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
177
+ {4D71290B-65DC-4442-BE06-1CEBE07A26AC}.Debug|Any CPU.Build.0 = Debug|Any CPU
178
+ {4D71290B-65DC-4442-BE06-1CEBE07A26AC}.Release|Any CPU.ActiveCfg = Release|Any CPU
179
+ {4D71290B-65DC-4442-BE06-1CEBE07A26AC}.Release|Any CPU.Build.0 = Release|Any CPU
180
+ {26FC5FD6-F4E9-4E0F-BB0D-492AAE98D880}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
181
+ {26FC5FD6-F4E9-4E0F-BB0D-492AAE98D880}.Debug|Any CPU.Build.0 = Debug|Any CPU
182
+ {26FC5FD6-F4E9-4E0F-BB0D-492AAE98D880}.Release|Any CPU.ActiveCfg = Release|Any CPU
183
+ {26FC5FD6-F4E9-4E0F-BB0D-492AAE98D880}.Release|Any CPU.Build.0 = Release|Any CPU
184
+ {5D70009B-698D-4A42-99F8-6C4CEE500AD8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
185
+ {5D70009B-698D-4A42-99F8-6C4CEE500AD8}.Debug|Any CPU.Build.0 = Debug|Any CPU
186
+ {5D70009B-698D-4A42-99F8-6C4CEE500AD8}.Release|Any CPU.ActiveCfg = Release|Any CPU
187
+ {5D70009B-698D-4A42-99F8-6C4CEE500AD8}.Release|Any CPU.Build.0 = Release|Any CPU
188
+ {18924A56-9ACA-4835-887B-3F8956DA7391}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
189
+ {18924A56-9ACA-4835-887B-3F8956DA7391}.Debug|Any CPU.Build.0 = Debug|Any CPU
190
+ {18924A56-9ACA-4835-887B-3F8956DA7391}.Release|Any CPU.ActiveCfg = Release|Any CPU
191
+ {18924A56-9ACA-4835-887B-3F8956DA7391}.Release|Any CPU.Build.0 = Release|Any CPU
192
+ {1D3835B8-779E-4053-B03E-AC5292A48FF0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
193
+ {1D3835B8-779E-4053-B03E-AC5292A48FF0}.Debug|Any CPU.Build.0 = Debug|Any CPU
194
+ {1D3835B8-779E-4053-B03E-AC5292A48FF0}.Release|Any CPU.ActiveCfg = Release|Any CPU
195
+ {1D3835B8-779E-4053-B03E-AC5292A48FF0}.Release|Any CPU.Build.0 = Release|Any CPU
196
+ {36E8A9EF-C91F-443A-9FEF-B2AB27E3628A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
197
+ {36E8A9EF-C91F-443A-9FEF-B2AB27E3628A}.Debug|Any CPU.Build.0 = Debug|Any CPU
198
+ {36E8A9EF-C91F-443A-9FEF-B2AB27E3628A}.Release|Any CPU.ActiveCfg = Release|Any CPU
199
+ {36E8A9EF-C91F-443A-9FEF-B2AB27E3628A}.Release|Any CPU.Build.0 = Release|Any CPU
200
+ {0A94DFDE-A128-4F83-B0D2-2D97B18BF7BA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
201
+ {0A94DFDE-A128-4F83-B0D2-2D97B18BF7BA}.Debug|Any CPU.Build.0 = Debug|Any CPU
202
+ {0A94DFDE-A128-4F83-B0D2-2D97B18BF7BA}.Release|Any CPU.ActiveCfg = Release|Any CPU
203
+ {0A94DFDE-A128-4F83-B0D2-2D97B18BF7BA}.Release|Any CPU.Build.0 = Release|Any CPU
204
+ {74641C69-189E-4F3E-B521-32BDC1121E5F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
205
+ {74641C69-189E-4F3E-B521-32BDC1121E5F}.Debug|Any CPU.Build.0 = Debug|Any CPU
206
+ {74641C69-189E-4F3E-B521-32BDC1121E5F}.Release|Any CPU.ActiveCfg = Release|Any CPU
207
+ {74641C69-189E-4F3E-B521-32BDC1121E5F}.Release|Any CPU.Build.0 = Release|Any CPU
208
+ {8D851E55-9D32-4C20-A9CE-C1A35175D06E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
209
+ {8D851E55-9D32-4C20-A9CE-C1A35175D06E}.Debug|Any CPU.Build.0 = Debug|Any CPU
210
+ {8D851E55-9D32-4C20-A9CE-C1A35175D06E}.Release|Any CPU.ActiveCfg = Release|Any CPU
211
+ {8D851E55-9D32-4C20-A9CE-C1A35175D06E}.Release|Any CPU.Build.0 = Release|Any CPU
212
+ {D32BF09E-4214-42B3-AB66-C6CAE9C3CEB1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
213
+ {D32BF09E-4214-42B3-AB66-C6CAE9C3CEB1}.Debug|Any CPU.Build.0 = Debug|Any CPU
214
+ {D32BF09E-4214-42B3-AB66-C6CAE9C3CEB1}.Release|Any CPU.ActiveCfg = Release|Any CPU
215
+ {D32BF09E-4214-42B3-AB66-C6CAE9C3CEB1}.Release|Any CPU.Build.0 = Release|Any CPU
216
+ {670A30F5-4957-4E96-9677-71A2A40975BA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
217
+ {670A30F5-4957-4E96-9677-71A2A40975BA}.Debug|Any CPU.Build.0 = Debug|Any CPU
218
+ {670A30F5-4957-4E96-9677-71A2A40975BA}.Release|Any CPU.ActiveCfg = Release|Any CPU
219
+ {670A30F5-4957-4E96-9677-71A2A40975BA}.Release|Any CPU.Build.0 = Release|Any CPU
220
+ {4C16C5D0-BB26-4639-8A2A-AEFCE8D3E5D6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
221
+ {4C16C5D0-BB26-4639-8A2A-AEFCE8D3E5D6}.Debug|Any CPU.Build.0 = Debug|Any CPU
222
+ {4C16C5D0-BB26-4639-8A2A-AEFCE8D3E5D6}.Release|Any CPU.ActiveCfg = Release|Any CPU
223
+ {4C16C5D0-BB26-4639-8A2A-AEFCE8D3E5D6}.Release|Any CPU.Build.0 = Release|Any CPU
224
+ {DE02AB34-33D1-42CA-A3F0-68F4B1BF98B1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
225
+ {DE02AB34-33D1-42CA-A3F0-68F4B1BF98B1}.Debug|Any CPU.Build.0 = Debug|Any CPU
226
+ {DE02AB34-33D1-42CA-A3F0-68F4B1BF98B1}.Release|Any CPU.ActiveCfg = Release|Any CPU
227
+ {DE02AB34-33D1-42CA-A3F0-68F4B1BF98B1}.Release|Any CPU.Build.0 = Release|Any CPU
228
+ {70F18C83-2063-4D7F-96A9-4B1DA6752C95}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
229
+ {70F18C83-2063-4D7F-96A9-4B1DA6752C95}.Debug|Any CPU.Build.0 = Debug|Any CPU
230
+ {70F18C83-2063-4D7F-96A9-4B1DA6752C95}.Release|Any CPU.ActiveCfg = Release|Any CPU
231
+ {70F18C83-2063-4D7F-96A9-4B1DA6752C95}.Release|Any CPU.Build.0 = Release|Any CPU
232
+ {5B09A92A-9C6F-4EE2-B777-94281092DEDF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
233
+ {5B09A92A-9C6F-4EE2-B777-94281092DEDF}.Debug|Any CPU.Build.0 = Debug|Any CPU
234
+ {5B09A92A-9C6F-4EE2-B777-94281092DEDF}.Release|Any CPU.ActiveCfg = Release|Any CPU
235
+ {5B09A92A-9C6F-4EE2-B777-94281092DEDF}.Release|Any CPU.Build.0 = Release|Any CPU
236
+ {A516604C-19DE-4AED-9262-8F7271A42BFF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
237
+ {A516604C-19DE-4AED-9262-8F7271A42BFF}.Debug|Any CPU.Build.0 = Debug|Any CPU
238
+ {A516604C-19DE-4AED-9262-8F7271A42BFF}.Release|Any CPU.ActiveCfg = Release|Any CPU
239
+ {A516604C-19DE-4AED-9262-8F7271A42BFF}.Release|Any CPU.Build.0 = Release|Any CPU
240
+ {08BA1481-13F1-4913-8BA6-EDE27AD01EE7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
241
+ {08BA1481-13F1-4913-8BA6-EDE27AD01EE7}.Debug|Any CPU.Build.0 = Debug|Any CPU
242
+ {08BA1481-13F1-4913-8BA6-EDE27AD01EE7}.Release|Any CPU.ActiveCfg = Release|Any CPU
243
+ {08BA1481-13F1-4913-8BA6-EDE27AD01EE7}.Release|Any CPU.Build.0 = Release|Any CPU
244
+ {B259D6E2-5376-42C1-8D05-6107BA9D1B0C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
245
+ {B259D6E2-5376-42C1-8D05-6107BA9D1B0C}.Debug|Any CPU.Build.0 = Debug|Any CPU
246
+ {B259D6E2-5376-42C1-8D05-6107BA9D1B0C}.Release|Any CPU.ActiveCfg = Release|Any CPU
247
+ {B259D6E2-5376-42C1-8D05-6107BA9D1B0C}.Release|Any CPU.Build.0 = Release|Any CPU
248
+ {DE1A0AAC-8832-429D-90D2-360C11ADA8CE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
249
+ {DE1A0AAC-8832-429D-90D2-360C11ADA8CE}.Debug|Any CPU.Build.0 = Debug|Any CPU
250
+ {DE1A0AAC-8832-429D-90D2-360C11ADA8CE}.Release|Any CPU.ActiveCfg = Release|Any CPU
251
+ {DE1A0AAC-8832-429D-90D2-360C11ADA8CE}.Release|Any CPU.Build.0 = Release|Any CPU
252
+ {F7F3F62B-96E4-4FB9-8923-FB883E87520F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
253
+ {F7F3F62B-96E4-4FB9-8923-FB883E87520F}.Debug|Any CPU.Build.0 = Debug|Any CPU
254
+ {F7F3F62B-96E4-4FB9-8923-FB883E87520F}.Release|Any CPU.ActiveCfg = Release|Any CPU
255
+ {F7F3F62B-96E4-4FB9-8923-FB883E87520F}.Release|Any CPU.Build.0 = Release|Any CPU
256
+ {B2529445-C84E-4E3F-B4D7-651E9C195D39}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
257
+ {B2529445-C84E-4E3F-B4D7-651E9C195D39}.Debug|Any CPU.Build.0 = Debug|Any CPU
258
+ {B2529445-C84E-4E3F-B4D7-651E9C195D39}.Release|Any CPU.ActiveCfg = Release|Any CPU
259
+ {B2529445-C84E-4E3F-B4D7-651E9C195D39}.Release|Any CPU.Build.0 = Release|Any CPU
260
+ {67EE6098-74A6-456F-8D27-C0D38D0A9B22}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
261
+ {67EE6098-74A6-456F-8D27-C0D38D0A9B22}.Debug|Any CPU.Build.0 = Debug|Any CPU
262
+ {67EE6098-74A6-456F-8D27-C0D38D0A9B22}.Release|Any CPU.ActiveCfg = Release|Any CPU
263
+ {67EE6098-74A6-456F-8D27-C0D38D0A9B22}.Release|Any CPU.Build.0 = Release|Any CPU
264
+ {6C8815D6-62F5-4DED-AE3F-0AF4D0178CDB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
265
+ {6C8815D6-62F5-4DED-AE3F-0AF4D0178CDB}.Debug|Any CPU.Build.0 = Debug|Any CPU
266
+ {6C8815D6-62F5-4DED-AE3F-0AF4D0178CDB}.Release|Any CPU.ActiveCfg = Release|Any CPU
267
+ {6C8815D6-62F5-4DED-AE3F-0AF4D0178CDB}.Release|Any CPU.Build.0 = Release|Any CPU
268
+ {18041F69-4814-447B-B170-984E72423D4A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
269
+ {18041F69-4814-447B-B170-984E72423D4A}.Debug|Any CPU.Build.0 = Debug|Any CPU
270
+ {18041F69-4814-447B-B170-984E72423D4A}.Release|Any CPU.ActiveCfg = Release|Any CPU
271
+ {18041F69-4814-447B-B170-984E72423D4A}.Release|Any CPU.Build.0 = Release|Any CPU
272
+ {C7BA2451-7027-4838-BD3B-02DC5DCD8CB5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
273
+ {C7BA2451-7027-4838-BD3B-02DC5DCD8CB5}.Debug|Any CPU.Build.0 = Debug|Any CPU
274
+ {C7BA2451-7027-4838-BD3B-02DC5DCD8CB5}.Release|Any CPU.ActiveCfg = Release|Any CPU
275
+ {C7BA2451-7027-4838-BD3B-02DC5DCD8CB5}.Release|Any CPU.Build.0 = Release|Any CPU
276
+ {BFEDB63A-1A05-4A51-B7C2-C59DE01BC617}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
277
+ {BFEDB63A-1A05-4A51-B7C2-C59DE01BC617}.Debug|Any CPU.Build.0 = Debug|Any CPU
278
+ {BFEDB63A-1A05-4A51-B7C2-C59DE01BC617}.Release|Any CPU.ActiveCfg = Release|Any CPU
279
+ {BFEDB63A-1A05-4A51-B7C2-C59DE01BC617}.Release|Any CPU.Build.0 = Release|Any CPU
280
+ {D8A33DCE-395C-4AD8-8FEC-74B8C8C74F53}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
281
+ {D8A33DCE-395C-4AD8-8FEC-74B8C8C74F53}.Debug|Any CPU.Build.0 = Debug|Any CPU
282
+ {D8A33DCE-395C-4AD8-8FEC-74B8C8C74F53}.Release|Any CPU.ActiveCfg = Release|Any CPU
283
+ {D8A33DCE-395C-4AD8-8FEC-74B8C8C74F53}.Release|Any CPU.Build.0 = Release|Any CPU
284
+ {97DA6A8F-CF90-4E70-986E-E0A9D7196312}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
285
+ {97DA6A8F-CF90-4E70-986E-E0A9D7196312}.Debug|Any CPU.Build.0 = Debug|Any CPU
286
+ {97DA6A8F-CF90-4E70-986E-E0A9D7196312}.Release|Any CPU.ActiveCfg = Release|Any CPU
287
+ {97DA6A8F-CF90-4E70-986E-E0A9D7196312}.Release|Any CPU.Build.0 = Release|Any CPU
288
+ {400AFAB6-9354-49AB-A001-00B09235CEF1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
289
+ {400AFAB6-9354-49AB-A001-00B09235CEF1}.Debug|Any CPU.Build.0 = Debug|Any CPU
290
+ {400AFAB6-9354-49AB-A001-00B09235CEF1}.Release|Any CPU.ActiveCfg = Release|Any CPU
291
+ {400AFAB6-9354-49AB-A001-00B09235CEF1}.Release|Any CPU.Build.0 = Release|Any CPU
292
+ {F1BC69B4-E41C-4E72-AA57-FBF73663CAEB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
293
+ {F1BC69B4-E41C-4E72-AA57-FBF73663CAEB}.Debug|Any CPU.Build.0 = Debug|Any CPU
294
+ {F1BC69B4-E41C-4E72-AA57-FBF73663CAEB}.Release|Any CPU.ActiveCfg = Release|Any CPU
295
+ {F1BC69B4-E41C-4E72-AA57-FBF73663CAEB}.Release|Any CPU.Build.0 = Release|Any CPU
296
+ {20449142-40C3-4B1D-8F7C-2D3ED924FDA7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
297
+ {20449142-40C3-4B1D-8F7C-2D3ED924FDA7}.Debug|Any CPU.Build.0 = Debug|Any CPU
298
+ {20449142-40C3-4B1D-8F7C-2D3ED924FDA7}.Release|Any CPU.ActiveCfg = Release|Any CPU
299
+ {20449142-40C3-4B1D-8F7C-2D3ED924FDA7}.Release|Any CPU.Build.0 = Release|Any CPU
300
+ {C6308AED-8472-4CCA-B49C-4AE9EBCE9DC8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
301
+ {C6308AED-8472-4CCA-B49C-4AE9EBCE9DC8}.Debug|Any CPU.Build.0 = Debug|Any CPU
302
+ {C6308AED-8472-4CCA-B49C-4AE9EBCE9DC8}.Release|Any CPU.ActiveCfg = Release|Any CPU
303
+ {C6308AED-8472-4CCA-B49C-4AE9EBCE9DC8}.Release|Any CPU.Build.0 = Release|Any CPU
304
+ {7582650C-2D27-4AB1-9E2F-A93084A2AC79}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
305
+ {7582650C-2D27-4AB1-9E2F-A93084A2AC79}.Debug|Any CPU.Build.0 = Debug|Any CPU
306
+ {7582650C-2D27-4AB1-9E2F-A93084A2AC79}.Release|Any CPU.ActiveCfg = Release|Any CPU
307
+ {7582650C-2D27-4AB1-9E2F-A93084A2AC79}.Release|Any CPU.Build.0 = Release|Any CPU
308
+ {0D0CED51-E850-4107-81F8-910F234E0F81}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
309
+ {0D0CED51-E850-4107-81F8-910F234E0F81}.Debug|Any CPU.Build.0 = Debug|Any CPU
310
+ {0D0CED51-E850-4107-81F8-910F234E0F81}.Release|Any CPU.ActiveCfg = Release|Any CPU
311
+ {0D0CED51-E850-4107-81F8-910F234E0F81}.Release|Any CPU.Build.0 = Release|Any CPU
312
+ {B55FBAF5-21E0-4375-8515-0FF9622D581E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
313
+ {B55FBAF5-21E0-4375-8515-0FF9622D581E}.Debug|Any CPU.Build.0 = Debug|Any CPU
314
+ {B55FBAF5-21E0-4375-8515-0FF9622D581E}.Release|Any CPU.ActiveCfg = Release|Any CPU
315
+ {B55FBAF5-21E0-4375-8515-0FF9622D581E}.Release|Any CPU.Build.0 = Release|Any CPU
316
+ EndGlobalSection
317
+ GlobalSection(SolutionProperties) = preSolution
318
+ HideSolutionNode = FALSE
319
+ EndGlobalSection
320
+ EndGlobal
@@ -0,0 +1,39 @@
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>{29B2985C-C196-453F-848E-7195AADAC21C}</ProjectGuid>
6
+ <OutputType>Exe</OutputType>
7
+ <NoStandardLibraries>false</NoStandardLibraries>
8
+ <AssemblyName>AsyncWrapper.Wrapping File</AssemblyName>
9
+ <RootNamespace></RootNamespace>
10
+ </PropertyGroup>
11
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
12
+ <DebugSymbols>true</DebugSymbols>
13
+ <DebugType>full</DebugType>
14
+ <Optimize>false</Optimize>
15
+ <OutputPath>.\bin\Debug\</OutputPath>
16
+ <DefineConstants>DEBUG;TRACE</DefineConstants>
17
+ </PropertyGroup>
18
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
19
+ <DebugType>pdbonly</DebugType>
20
+ <Optimize>true</Optimize>
21
+ <OutputPath>.\bin\Release\</OutputPath>
22
+ <DefineConstants>TRACE</DefineConstants>
23
+ </PropertyGroup>
24
+ <ItemGroup>
25
+ <Reference Include="NLog">
26
+ <SpecificVersion>False</SpecificVersion>
27
+ </Reference>
28
+ <Reference Include="System" />
29
+ <Reference Include="System.Data" />
30
+ <Reference Include="System.Xml" />
31
+ </ItemGroup>
32
+ <ItemGroup>
33
+ <Compile Include="Example.cs" />
34
+ </ItemGroup>
35
+ <Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" />
36
+ <ProjectExtensions>
37
+ <VisualStudio AllowExistingFolder="true" />
38
+ </ProjectExtensions>
39
+ </Project>