Julian Verdurmen
Julian Verdurmen
Currently only NLog.dll Needs an update, especially after splitting in multiple packages/repos
Unused targets are still Initialized. This is waste of performance, especially the asyncwrapper (timer will be started). With the following config, all 4 targets are initialized. (`InitializeTarget`) Example: ``` xml...
To Singleton, but keep backwards compatible. Create common interface for context classes when possible. Also: - [x] add indexer syntax, NOTE not possible with static .e.g. ``` c# var context...
Allows: ``` c# MappedDiagnosticsContext.Set("Property", () => Environment.TickCount); ``` See https://github.com/NLog/NLog/pull/743 - [ ] also remove trick from wiki: (PropertyWrapper) : https://github.com/NLog/NLog/wiki/gdc-Layout-Renderer#dynamic-properties
To prevent breaking changes to API, add a check to appveyor to run bitDiffer to the NLog 4.x See https://github.com/NLog/NLog/pull/2117#issuecomment-336590413
Investigate if this is possible and how. Also mentioned here: https://github.com/NLog/NLog/issues/3377 Related: https://github.com/NLog/NLog/issues/2823
related https://github.com/NLog/NLog/issues/3472 after fix, then: works (no XSD errors): ```xml ``` works: ```xml ``` not working ```xml ``` > he element 'target' in namespace 'http://www.nlog-project.org/schemas/NLog.xsd' has invalid child element 'target'...