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 を含めたにもかかわらず、xml に対してインテリセンスが機能しません。:(