Hi All,
I am new to the in Xamarin Forms and I do get problems when trying to create a TCP/UDPClient (server) running on my machine.
Does Xamarin Shared project supports System.Net.Sockets.dll Reference?
When I try to add the reference to the Shared Project seems I can't do this. Because shared project does not have options to add reference .
What should I do to get Sockets Library work inside a Shared Xamarin Project?
Waiting for your responses.
Thanks ,
PremNath
Shared projects work a little different than a normal project. You wouldn't add a reference to this project. Instead, you would add a reference to the Android/iOS project that is using the Shared project. In this case, you don't need to add any references. You should be able to use the supported types included in the mobile profile of the .NET framework that Android/iOS include.
Is there a specific type you are unable to use?
Answers
@PremNathRajaSekaran.1338,
Shared projects work a little different than a normal project. You wouldn't add a reference to this project. Instead, you would add a reference to the Android/iOS project that is using the Shared project. In this case, you don't need to add any references. You should be able to use the supported types included in the mobile profile of the .NET framework that Android/iOS include.
Is there a specific type you are unable to use?
@JohnMiller
Now i understand the feature of Shared Project you saved my time .
@PremNath_RajaSekaran .