.NET Core equivalent of CallContext.LogicalGet/SetData
Had this problem when we switched a library from .Net Framework to .Net Standard and had to replace System.Runtime.Remoting.Messaging CallContext.LogicalGetData and CallContext.LogicalSetData. I followed this guide to replace the methods: http://www.cazzulino.com/callcontext-netstandard-netcore.html /// <summary> /// Provides a way to set contextual data that flows with the call and /// async context of a test or invocation. … Read more