Related to issue #104. Trying to align target frameworks closer to how core Serilog library works. Here is what I think should be done. Let me know your thoughts.
Removing targetframework for netstandard1.3 because it's just a superset of netstandard1.1
Removing the need to target the full NETStandard.Library when targeting netstandard1.1 (NETStandard.Library ends up a dependency in the nupkg when targeting pre-netstandard2.0)
Adding targetframework for net45 to use framework assembly for System.Net.Http when targeting full .NET Framework
Adding targetframework for netstandard2.0 to remove need to reference System.Net.Http package
Related to issue #104. Trying to align target frameworks closer to how core Serilog library works. Here is what I think should be done. Let me know your thoughts.