I am maintaining a portable class library that target major .NET and Mono platforms. The core PCL uses profile 147 (.NET 4.03 + Windows Store + Silverlight 5 + Windows Phone 8), however due to some technical reasons the NuGet package consists of three versions: core PCL (profile 147), .NET 4 and Silverlight 5. Practically I could change the profile of the core PCL and replace .NET 4.03 with .NET 4.5 and drop Silverlight 5. I don't do this in case my lib will be consumed from other PCL - for this reason I would like to use the widest PCL.
So my first question is whether this assumption is correct. E.g. even though I have separate SL5 implementation, choosing a PCL profile with SL5 support makes it more PCL-friendly, e.g. another PCL targeting SL5 would be able to reference my lib.
If this assumption is correct, my next question is whether this is worth it. Now that there are popular PCL profile choices for Xamarin development, none of them targets .NET 4. And the one that is recommended is profile 78 that doesn't target Silverlight. I haven't found a detailed description of consequences of not choosing these profiles, so I can't figure out what I am losing by staying with profile 147. If there are known problems and not supported functionality, I will of course swicth to a more modern profile, but as I wrote earlier I'd like to target wider platform set if possible.