NLog缺少方法异常

时间:2019-04-11 02:12:54

标签: c# .net-core nlog

我将项目升级到dotnetcore 2.1。完成此操作后,当我尝试运行它时,我得到了System.MissingMethodException

详细错误为

'Method not found: 'NLog.LogFactory NLog.LogManager.LoadConfiguration(System.String)'.'

我已经尝试降级NLog,但是它不起作用,并且受到其他依赖项的影响。

这是我的web.config文件

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <system.webServer>
    <handlers>
      <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" />
    </handlers>
    <aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" forwardWindowsAuthToken="false" stdoutLogEnabled="false">
      <environmentVariables />
    </aspNetCore>
  </system.webServer>
</configuration>

这是我的NLog.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"
      autoReload="true"
      internalLogLevel="Warn"
      internalLogFile="c:\temp\internal-IEPAPI-nlog.txt">

  <extensions>
    <add assembly="NLog.Web.AspNetCore"/>
  </extensions>

  <!-- define various log targets -->
  <targets>
    <!-- write logs to file -->
    <!--target xsi:type="File" name="allfile" fileName="c:\temp\nlog-all-${shortdate}.log"
                 layout="${longdate}|${event-properties:item=EventId.Id}|${logger}|${uppercase:${level}}|${message} ${exception}" /-->


    <target xsi:type="File" name="InvoiceEngineProcessApiLogFile" fileName="D:\Logs\BillingEngine\ProcessApis\InvoiceEngine-${shortdate}.log"
             layout="${longdate}|TraceId=${aspnet-traceidentifier}|${event-properties:item=EventId.Id}|${logger}|${uppercase:${level}}|  ${message} ${exception:format = ToString,StackTrace}${newline}" />

    <target xsi:type="Null" name="blackhole" />
  </targets>

  <rules>
    <!--All logs, including from Microsoft-->
    <!--logger name="*" minlevel="Trace" writeTo="allfile" /-->

    <!--Skip Microsoft logs and so log only own logs-->
    <!--<logger name="Microsoft.*" minlevel="Trace" writeTo="InvoiceEngineProcessApiLogFile" />-->
    <logger name="*" minlevel="Trace" writeTo="InvoiceEngineProcessApiLogFile" >
      <filters>
        <when condition="(LogLevel.Debug >= level) and equals('${var:debugLoggingEnabled}', '0')" action="Ignore" />
      </filters>
    </logger>
  </rules>
</nlog>

任何帮助都会很棒。

1 个答案:

答案 0 :(得分:0)

当混合不兼容的版本时,例如在NLog中,缺少的方法异常将在NLog中引起。一个项目中有多个版本的NLog(不使用GAC时),或者是主要版本(v3和v4)混合在一起。

NLog正在使用语义版本控制(请参阅https://semver.org/),这意味着:

  • 您可以毫无问题地升级到新的次要版本(例如4.1至4.6)。
  • 您可以使用绑定到较早的次要版本的组件,并在应用程序中使用较新的次要版本。例如。该组件基于NLog 4.1构建,并且您的应用程序使用NLog 4.6
  • 不能使用比您的组件低的旧版本,例如该组件基于NLog 4.1构建,并且您的应用程序使用NLog 4.0
  • 不能在一个解决方案中不使用GAC的情况下混合使用多个版本的NLog。您的解决方案符合2个项目,其中一个正在使用NLog 4.1,另一个正在使用NLog 4.2

PS:在前两种情况下不需要<dependentAssembly>