Dear Dick,
please excuse my delayed answer. To use NLog you do not need the Prosa LogAppender. You need our appender only when using log4net and TCP.
For example, if you want to use Log4View and Nlog via TCP, you add the following to your logging application's config:
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<targets async="true">
<target name="network" xsi:type="Network" address="tcp4://localhost:9133" layout="${log4jxmlevent}" newline="True"/>
</targets>
<rules>
<logger name="*" minlevel="Debug" writeTo="network"/>
</rules>
</nlog>
And in Log4View you add a network receiver of type "TCP Server" with port 9133.
Yours sincerely
Philipp Lauchner
PROSA GmbH
Development & Support