Closed janv8000 closed 9 years ago
NLog's API changed a bit with version 2.0, eg. the LoggerReconfiguredDelegate was replaced with the built-in EventHandler.
But the nuget package declares its dependency for NLog without upper limit: <dependency id="NLog" version="1.0.0.505" />
<dependency id="NLog" version="1.0.0.505" />
Doing a Update-Package NLog will pull-down the latest version (3.x), no longer containing the LoggerReconfiguredDelegate.
Update-Package NLog
The NLog dependency should be changed as follows: <dependency id="NLog" version="(1.0.0.505,2.0]" />
<dependency id="NLog" version="(1.0.0.505,2.0]" />
Pushed new version 1.2.3
NLog's API changed a bit with version 2.0, eg. the LoggerReconfiguredDelegate was replaced with the built-in EventHandler.
But the nuget package declares its dependency for NLog without upper limit:
<dependency id="NLog" version="1.0.0.505" />
Doing a
Update-Package NLog
will pull-down the latest version (3.x), no longer containing the LoggerReconfiguredDelegate.The NLog dependency should be changed as follows:
<dependency id="NLog" version="(1.0.0.505,2.0]" />