-
Notifications
You must be signed in to change notification settings - Fork 165
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ASP.NET Core 2.1, UseNLog on IHostBuilder, ${configsetting} uses UseNLog, Logging:NLog section #335
Conversation
snakefoot
commented
Jan 16, 2019
•
edited by 304NotModified
Loading
edited by 304NotModified
- Updated to ASP.NET Core 2.1 that has Long-Term-Support (LTS)
- ${configsetting} layout renderer now depends on UseNLog-call to provide IConfiguration using IServiceProvider
- NLogLoggerProvider options now binds to IConfiguration (Using section Logging:NLog)
- UseNLog-call now also available for IHostBuilder
1cf3843
to
7b82c4f
Compare
Codecov Report
@@ Coverage Diff @@
## master #335 +/- ##
=====================================
Coverage 63% 63%
=====================================
Files 34 34
Lines 468 468
Branches 103 103
=====================================
Hits 296 296
Misses 134 134
Partials 38 38 Continue to review full report at Codecov.
|
3a8a5f0
to
73588c5
Compare
appveyor.yml
Outdated
@@ -7,8 +7,8 @@ assembly_info: | |||
patch: true | |||
file: '**\AssemblyInfo.cs' | |||
assembly_version: '4.0.0' | |||
assembly_file_version: '4.7.1.{build}' #NLog.Web | |||
assembly_informational_version: '4.7.1' #NLog.Web | |||
assembly_file_version: '4.8.0.{build}' #NLog.Web |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
4.8 because the update of the dependency? So skip 4.7.2?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was thinking the dependency update for NLog.Web.AspNetCore was "huge" change :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should I keep NLog.Web at 4.7.1 ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reverted version change for NLog.Web
Thanks! |