I am building an SDK dll that needs to support multiple .NET frameworks with different references.
For example, one SDK dll is for Azure Functions which is .Net 4.6.1 with Newtonsoft.Json reference 9.0.0.1 (which was hard coded into Azure Functions). The other is a .NET 4.5.1 framework with newtonsoft.json 10.0.3.
What is the best way to build 2 dll's from the same cs code files using one Visual Studio solution where frameworks and references are different?
thanks