Matthew's solution is correct, but I'd like to elaborate a bit on solution and project configurations.
Solution and project build configurations in MonoDevelop work exactly the same way as Visual Studio. A solution can target any mixture of things that its projects can target. However, each of the platforms you are targeting requires a special project type, so a single project cannot target multiple platforms. However, your solution can contain several projects that each target a different platform. It can also contain libraries that contain shared code for these projects.
Suppose you have a solution that contains four projects:
- SharedLibrary
- MonoForAndroidProject
- MonoTouchProject
- WindowsPhoneProject
Suppose that each of these has the default project configurations for these project types.
Your solution configurations, the things you see in the configuration picker in the toolbar, can be anything you want - the names have no special significance. Each of them can map to any set (or subset) of projects and project configurations.
For example, you could have a four debug configurations:
- DebugIPhone: maps to Debug|AnyCPU configuration of SharedLibrary, and Debug|iPhone configuration of MonoTouchProject
- DebugIPhoneSimulator: maps to Debug|AnyCPU configuration of SharedLibrary, and Debug|iPhoneSimulator configuration of MonoTouchProject
- DebugAndroid: maps to Debug|AnyCPU configuration of SharedLibrary, and Debug|AnyCPU configuration of MonoForAndroidProject
- DebugWinPhone: maps to Debug|AnyCPU configuration of SharedLibrary, and Debug|AnyCPU configuration of WindowsPhoneProject
Another example, you could have a Release configuration that builds all the device packages: Release|AnyCPU configuration of SharedLibrary, and Release|iPhone configuration of MonoTouchProject, Release|AnyCPU configuration of MonoForAndroidProject, Release|AnyCPU configuration of WindowsPhoneProject.
You could also add target-specific project configurations to the SharedLibrary, with symbols defined to affect #if directives in the source code, and map these from the appropriate solution configurations, though this wouldn't be compatible with having a single configuration to build for all devices.
Right now you would run into a few problems with the above solution.
Firstly, MonoDevelop cannot load and build Windows Phone projects, and Visual Studio cannot load and build MonoTouch projects. So you'd get an error when loading it into either IDE - but the other projects would still work.
Secondly, there isn't a library type that all of the project types can reference. You might be able to get away with using e.g. a MfA library project and referencing it as a dll from the other project types. Another possibility would be to have multiple library projects that include the same files - these projects could be in the same directory, and include the same files in-place, or they could be in different locations and include the files as file links. You could use the Visual Studio project linker to keep them in sync.
Some people to prefer to have multiple solution files, one for each platform. You have a lot of flexibility:
- they can include the same projects, or separate projects, or a mixture
- their projects can include (or link) the same files, or different files, or a mixture
- they can be in the same directories, or have separate directories, or a a mixture