Closed Protiguous closed 1 year ago
Naw, there is no need to stay on .NET 5. Feel free to upgrade it and submit a PR, or if that's a bit of a hassle because of changes made in your fork/branch then lemme know and I can git 'er don
Scratch that. Yeah, lets keep it. I'm making all my math/numeric libraries have the same set of target frameworks, and this set includes .NET 5.
The reason I'm making all my libraries support the same set of target frameworks is because I have a 'generic arithmetic' library that performs arithmetic on the generic type T, which my GenericPolynomial and GenericMultivaritePolynomial libraries use, and the test projects for these generic polynomial libraries take a dependency on BigDecimal, BigRational, BigComplex, and so on and its hard to test against a target framework unless all these libraries also target it, so I'm standardizing the set of target frameworks across all of them.
In regards to security, I think it is unlikely that anything we are doing is going to result in a security problem; we are not deserializing arbitrary data, we are not writing to the filesystem or making system API calls, we are not elevating privileges and we are not using pointers or unsafe code or anything like that, so I think the risk is low.
I'm now seeing this warning on compile in my experimental branch.
Microsoft's Download .NET 5.0 reads:
I don't see any problem with leaving it available, except for the possibility that a security flaw might be discovered in .NET 5. I will continue to work with .NET 5 until I hear otherwise.