I want to make a call to Thread.Sleep in my Portable Class Library project. This method is implemented in the Mono libraries of my iOS and Android projects, so in theory, I should just choose a compatible PCL profile. However, this is proving to be more difficult than it should be.
How do I determine which PCL profiles contain the library implementations that I need, and how do I tell Visual Studio to reference that specific profile?
I haven't been able to find any documentation on MSDN which even acknowledges that PCL profile numbers exist let alone how to choose a particular one. The only option I have at the moment is to manually reference the System.dll in the profile folder, but this feels like walking into a mine field. Any help is appreciated.