I notice that for the .NET 6 version of the Testably.Abstractions.Testing package there's a System.Threading.Channels = 6.0.0 dependency. That it's an exact dependency rather than an at-least dependency makes it hard to consume along with packages that require a newer version of System.Threading.Channels. Would you be willing to change the dependency to System.Threading.Channels >= 6.0.0 instead?
I could force the dependency resolver to use System.Threading.Channels 8.0.0 anyway, although for all I know there's an excellent reason to require exactly 6.0.0. Regardless, though, the code standards I'm working to have NU1608 as an error, and overrides aren't granular.
I notice that for the .NET 6 version of the
Testably.Abstractions.Testingpackage there's aSystem.Threading.Channels= 6.0.0 dependency. That it's an exact dependency rather than an at-least dependency makes it hard to consume along with packages that require a newer version ofSystem.Threading.Channels. Would you be willing to change the dependency toSystem.Threading.Channels>= 6.0.0 instead?I could force the dependency resolver to use
System.Threading.Channels8.0.0 anyway, although for all I know there's an excellent reason to require exactly 6.0.0. Regardless, though, the code standards I'm working to have NU1608 as an error, and overrides aren't granular.