3

We have a .net app written to be Mono and Linux compatible - written in Visual Studio 2010. For deployment on Windows, we use a Visual Studio Deployment project to build the installer and put files in the correct places.

Is there an equivalent for Linux? Some thing that's as easy and simple for the end user to install?

Thanks

Roberto

Roberto Bonini
  • 7,164
  • 6
  • 39
  • 47

1 Answers1

4

For Ubuntu, you really want to work within the .deb/apt-based packaging framework the distro already provides (the same applies to Debian derivatives generally; other distro families have their own systems e.g RPM). See the Debian guidelines for packaging CLI based applications/binaries. It'd probably also be well worth taking a look at how existing mono-based apps are packaged (e.g MonoDevelop, F-Stop, Tomboy).

timday
  • 24,582
  • 12
  • 83
  • 135