dazinator / DotNet.Glob

A fast globbing library for .NET / .NETStandard applications. Outperforms Regex.
MIT License
363 stars 27 forks source link

add target framework "net47" #36

Closed thomas-patzig closed 7 years ago

thomas-patzig commented 7 years ago

<TargetFrameworks>netstandard1.1;net45;net46;net47;net4</TargetFrameworks>

dazinator commented 7 years ago

I can do this, and I do have targets for net4, 45 and 46 - but to be honest, I am not sure what the benefits are. I believe net47 should be able to run assemblies compiled for net46, net45 (not sure about net4) as well as all netstandard versions upto 1.6. This means the existing compilation target frameworks should already be enough for net47 support. I'd rather look at removing any unnecessary compalition target frameworks, over adding more! If you can lend some further insight over why adding net47 is necessary, please feel free to add some comments below and I will consider further.