<?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">
<extensions>
<add assembly="HeyCoder.NLog.Extensions" />
</extensions>
<targets>
<target name="email"
type="Email"
appname="测试程序"
host="smtp.163.com"
port="25"
displayname="测试告警"
username="test@163.com"
password="password"
from="test@163.com"
to="to@163.com"
maxerrorcount="10"
senderrorcount="1"
expiredtime="100000"
layout="${shortdate} ${time} | ${message}"
/>
</targets>
<rules>
<logger name="*" minLevel="Error" appendTo="email"/>
</rules>
</nlog>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="NLog" publicKeyToken="5120e14c03d0593c" />
<bindingRedirect oldVersion="1.0.0.0-4.0.0.0" newVersion="4.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>