atlascode / Kestrel.Transport.Streams

Stream based transport for use with Kestrel Http Server
MIT License
8 stars 3 forks source link

Target .NetStandard 2.0 #1

Open smudge202 opened 6 years ago

smudge202 commented 6 years ago

The nuget package currently targets netcoreapp2.0 but at a glance, is there any reason this can't be netstandard2.0?

Am using this for a similar purpose to the one you blogged about (i.e. e-mail). Due to other dependencies the service I'm running will have to target net471 instead of core, so having my dependencies be netstandard is a big win for me.

Also, from what I've seen so far, nice work on this.

danielcirket commented 6 years ago

Netstandard 2.0 won't be an issue, this was done as an experiment / proof of concept so targeting netcoreapp was probably just the default from creating the project at the time.

smudge202 commented 6 years ago

Yeh, I made this change without an issue so I'll PR it back up