Yes. You absolutely can.
Further I think it's excellent good practice for shared code where every single file is shared between the two project files - it's what I do in cases like:
https://github.com/slodge/MvvmCross/tree/master/Sample%20-%20CirriousConference/Cirrious.Conference.Core
For cases where the project contents are subtly different - e.g. where one project contains some android specific files, then I prefer the approach of using separate folders and linking the files across. This is an approach I've seen used in lots of Windows projects - e.g. see the source tree of mvvmlight - where GalaSoft.MvvmLight (NET35) is the main folder and the other folders all link to its contents plus add their own specific files.

In the next few weeks, there's also hopefully some portable library support coming for shared code in monodevelop.
When that hits, I'm intending to shift to using portable libraries for Touch and Droid - at which point I won't need shared project files at all.