Currently, this library is only built for netstandard1.0. Whilst that provides wide compatibility with net45 and up, plus all versions of netstandard and netcoreapp, it also requires the download of a very large stack of dependencies.
In the most common deployment scenarios, these dependencies are already a part of the framework.
I'd like to multi-target as follows:
netstandard1.0so that I do not remove any compatibility
net45for any .NET Framework consumers
netandard2.0for any other consumers which have capabilities
This will mean that very few consumers will use the netstandard1.0 version, because they will take one of the other two.
Currently, this library is only built for
netstandard1.0
. Whilst that provides wide compatibility withnet45
and up, plus all versions ofnetstandard
andnetcoreapp
, it also requires the download of a very large stack of dependencies.In the most common deployment scenarios, these dependencies are already a part of the framework.
I'd like to multi-target as follows:
netstandard1.0
so that I do not remove any compatibilitynet45
for any .NET Framework consumersnetandard2.0
for any other consumers which have capabilitiesThis will mean that very few consumers will use the
netstandard1.0
version, because they will take one of the other two.