I'm doing a Network library (https://github.com/Eastrall/Ether.Network) for now targeting the .NET Core framework, but I want support both .NET Core and .NET Framework (4.*)
I heard about adding some lines on the project.json
is this a good solution?
Can someone help me with this? Thanks
Yes, modifying
project.json
is what you need. It should look like:Here is a scheme of mapping the .NET Platform Standard to platforms of interest from the official documentation:
A few quick notes:
For further details it is recommended to check out the official documentation.