2
votes

I have developed an application with mono and I would like to know what are the minimum libraries that need to be available in a windows machine, in order to run this app.

I've heard .net will suffice, no need to install the mono package for windows. Is this true? which .net version do I have to install?

BTW, my application uses GTK# as well.

Thanks in advance.

2

2 Answers

0
votes

MonoDevelop is built on GTK#, its minimal requirements on Windows are,

  • .NET Framework 4
  • GTK# runtime

as stated in http://monodevelop.com/Download

Therefore, your application should require the same.

0
votes

You need the installer present in the mono project download pages for Gtk#. Take a look at this question.

Technically, you would need also mono, but since this is for Windows, it will include the .NET installed. Unless it is a really old version of Windows.

Hope this helps.