F# project team posted snapshots of language integration into VS. I was pleased to see that they included ability to manipulate file's order in the project. So, I decided to extend F# binding for Monodevelop.
I started to look at the way to implement this feature and was surprised by Monodevelop - files in opened project are sorted by name. Thus, no visual representation of any change in file's order inside IDE. Quick solution was to add order number near file name in project pad.
"Ordering experience" is done similar to VS by adding to popup menu "Move up" and "Move down" actions.
Aye, no more project manual editing!
For F# binding (addin) for Monodevelop look project webpage.

