I am currently developing a Xamarin Forms Mobile App in Visual Studio 2017 15.7.3, and it needs to handle .json serialization and deserialization. My team has successfully completed a library which handles both of these functionalities, and they used .NET framework 4.6. I want to invoke this library from my Application, but in order to do that, I must change my project's .NET Framework to 4.6, same one the serializer is using. However, Xamarin does not let me move it any further than 2.0. I have been trying to fix this issue but have had no success. Is there any way to enable .NET 4.6 for Xamarin, or some hacky way to work around the problem?
↧