I've configured a file target for NLog as follows:
<targets>
<target name="asyncFile" xsi:type="AsyncWrapper">
<target xsi:type="File" name="logfile" fileName="${basedir}/Logs/${shortdate}.log"
layout="${longdate} ${uppercase:${level}} ${message}" />
</target>
</targets>
How can I query the actual filesystem path (fileName) of this File target via NLog's API?

${basedir}evaluates to. – aknuds1 Sep 7 '11 at 11:59