baisc
<?xml version="1.0" encoding="utf-8"?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
throwExceptions="true">
<targets>
<target xsi:type="File" name="log" fileName="${basedir}\logs\log.txt" />
</targets>
<rules>
<logger name="*" minlevel="Info" writeTo="log" />
</rules>
</nlog>