Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

different between MRE and MDK installer

Tags:

macos

mono

Regarding Mono Mac installer, there are MRE installer and MDK installer, http://www.go-mono.com/mono-downloads/download.html

I am wondering what is difference between thees two installer?

like image 313
user454083 Avatar asked Jul 21 '14 14:07

user454083


1 Answers

MRE = Mono Runtime Environment

MDK = Mono Development Kit.

MDK = MRE + Extra tools, libraries, .NET PCL (Portable Class Library) profiles, etc.

If you have an application that you want to run that needs Mono you can install just the MRE.

If you are doing development, writing C# applications, whilst you can sometimes get away with just having the MRE installed, you may hit some missing features such as not having the .NET PCL profiles. So I would install the MDK if you are doing development.

like image 160
Matt Ward Avatar answered Nov 15 '22 22:11

Matt Ward