Fixing: Xamarin with .Net Standard in Visual Studio 2017 v.15.3

Personal Blog: Not representative of Microsoft. By modifying the .CSProject Profile you will be able to have your .NET Standard Library work as intended with Xamarin! Error: Package Xamarin.Forms 2.3.4.267 is not compatible with netstandard1.4 (.NETStandard,Version=v1.4). Package Xamarin.Forms 2.3.4.267 supports:  Original Post: Link Came across the post after having issues with my project.json file not … [Read more…]

Mono Sockets – Connect() ‘ing Forever

In .NET 4.5 on Windows, this code will work as expected with the Connect() Function Timing out if it takes too long. However, on Mono 4.2.1 it doesn’t follow the same logic and will continue to wait for the Connect(), even if you set a Timeout. To fix this use the ASYNC BeginConnect Method, and … [Read more…]