Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the difference between a MonoDevelop solution file and a Visual Studio Solution file?

MonoDevelop allows you to save your solution in either MonoDevelop format or Visual Studio format. What is the difference between these two formats? Are they different ways or storing the same thing? If not, what does one store that the other does not?

like image 615
Matthew Avatar asked Feb 14 '10 18:02

Matthew


2 Answers

There was a difference for the first version of MonoDevelop. They used their own *.mds file format. You can take a look for details on it in the MonoDevelop source code. But as far as i know, this file format (as well as .mdp, .mdw) is not intended to use with MonoDevelop 2+. The default solution format for the newest version of MonoDevelop is identical (as far as i know) to VisualStudio. Will appreciate if somebody will correct me if i am wrong =)

like image 94
n535 Avatar answered Oct 06 '22 01:10

n535


monodevelop can open both monodevelop and visual studio .csproj files while visual studio can't open monodevelop format. monodevelop version (2.0+) by default saves the solution file in .csproj format.

like image 41
Adeel Avatar answered Oct 06 '22 01:10

Adeel