aspnet / Logging

[Archived] Common logging abstractions and a few implementations. Project moved to https://github.com/aspnet/Extensions
Apache License 2.0
506 stars 247 forks source link

Please consider adding a full-fx build #683

Closed 0x53A closed 7 years ago

0x53A commented 7 years ago

I added Akka.Remote to my net461 project.

Now my packages.config looks like this:

packages.config ``` ```

from my understanding, this is because Logging only includes a netstandard version: image

Logging itself get's included via

-> Akka.Remote
  -> DotNetty.Common
    -> Microsoft.Extensions.Logging
      -> NETStandard.Library (>= 1.6.1)

Do you think it would be possible to include a native full framework build, which does not pull in NETStandard.Library?

davidfowl commented 7 years ago

Do you think it would be possible to include a native full framework build, which does not pull in NETStandard.Library?

Anything is possible but this is unlikely. These dependency issues get better with netstandard2.0 and thats why we're moving in that direction.

muratg commented 7 years ago

Closing this one as we don't plan doing this.