Conversation
|
How can react in OC while it not supports .NET 7.0 yet?!! |
2 similar comments
This comment was marked as duplicate.
This comment was marked as duplicate.
This comment was marked as duplicate.
This comment was marked as duplicate.
|
??? |
|
Sorry, for duplicate replies, I just hide them. It happen when you write a comment from a bad internet connection ;) What I mean is can we upgrade the package in OC while OC still not upgraded to .NET 7.0 yet? |
|
Fluid targets all dotnet core versions, not just net7.0 |
While netstandard can be confusing, the basic idea is that if there's a relase against netstandard2.0/2.1 it will run on .NET 16 (yes, 16, like years from now). New targets open up APIs but the old target will work just fine as it's an API contract. |
|
I believe the confusion here is that some projects now target net7.0 only, but these are sample projects. The main library targets netstandard (so will always work for everything) but also has specific targets for net7.0 (and older) such that it can exclude some dependencies that are in net7.0 but not in netstandard. OC uses net6.0, so it will pick the net6.0 TFM of this library, even if we "add" a net7.0 one. |
No description provided.