F#NLog配置文件

时间:2012-12-07 20:12:05

标签: f# xsd config nlog

我正在尝试在F#控制台应用程序中使用NLog,我已经设法使用App.config中的配置部分使其工作但是我无法使用独立的NLog.config文件使其工作。我的NLog.config文件位于应用程序路由中,位于App.config下,内容为:

<?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 name="stdFile" xsi:type="File" fileName="c:/temp/compliant.log"/>
        <target name="display" xsi:type="OutputDebugString"/>
    </targets>
    <rules>
        <logger name="compliant.mail.*" minlevel="Debug" writeTo="stdFile,display" />
    </rules>
</nlog>

我做错了什么?

此外,即使我已经包含xsd,intellisense也不适用于xml。 :(

1 个答案:

答案 0 :(得分:1)

在您的项目中,在NLog.config属性中,您是否将NLog.config标记为“始终复制”?