2

When such project is exist in solution file, monodevelop writes: "The project type is not supported by MonoDevelop"

Which project types (by their guids) are not supported in which versions?

The lists of project types (which are supported by different versions of MSVS) are probably provided in MSDN (but how to find their guids?)
http://www.codeproject.com/Reference/720512/List-of-Visual-Studio-Project-Type-GUIDs

user1709408
  • 528
  • 4
  • 16

1 Answers1

1

MonoDevelop has a built-in list of all project types that are either not supported or require an optional addin.

You can find that list in the source tree in the file MonoDevelop.Core.addin.xml.

Under <Extension path = "/MonoDevelop/ProjectModel/UnknownMSBuildProjectTypes"> element you'll find the project types you're looking for. As an example:

<ProjectType guid = "{42C0BBD9-55CE-4FC1-8D90-A7348ABAFB23}" name = "Xamarin.Mac" platforms="mac" product = "Xamarin.Mac" /> 

At the time of posting you'll find the real thing here but that might change.

Per Lundberg
  • 3,837
  • 1
  • 36
  • 46
Mikayla Hutchinson
  • 16,113
  • 2
  • 44
  • 50
  • 4
    This is a borderline [link-only answer](http://meta.stackexchange.com/q/8231/213671). You should expand your answer to include as much information here, and use the link only for reference. – gunr2171 Sep 01 '15 at 16:43
  • How exactly would copy-pasting the target of the link - which can *change* - add value to this? – Mikayla Hutchinson Sep 01 '15 at 19:27
  • I can imagine my edit adds that value, no problem, my pleasure, glad I could help. – rene Sep 01 '15 at 19:47