-
Notifications
You must be signed in to change notification settings - Fork 198
Cross Platform Development
Anash P. Oommen edited this page Sep 6, 2018
·
2 revisions
Starting in v23.0.0 this library has support for .NET Standard 2.0. There are some current limitations when using this library on .NET Core 2.0.
Logging configuration isn't supported through App.config
or Web.config
. You can do this at runtime instead, as follows:
TraceUtilities.Configure(TraceUtilities.DETAILED_REQUEST_LOGS_SOURCE,
"C:\\Logs\\simply_detailed_logs.log", SourceLevels.All);
TraceUtilities.Configure(TraceUtilities.SUMMARY_REQUEST_LOGS_SOURCE,
"C:\\Logs\\simply_summary_logs.log", SourceLevels.All);
This library uses WCF which has limited proxy support in .NET Core 2.0. Support is planned for .NET Core 2.1.