Mono install on windows, mac?

核能气质少年 提交于 2019-12-13 18:18:07

问题


Is it possible to install Mono and Gtk on a Windows computer, copy that to a local folder, and run from that? Can I do the same on Mac?

I'm trying to create an all-in-one folder with everything included so that users can run without needing anything that is not in the folder. mkbundle did not work, and I'd rather have a complete Mono so I can dynamically load additional Mono libraries at runtime.

Are there any 64-bit vs 32-bit issues?

Can I avoid the GAC by using MONO_PATH?

Do either the Mac Mono or Windows Mono require that any files be in a global place? Any hardcoded paths?

I want my distributed program to be as easy to use as possible for new users (eg, no additional installs).


回答1:


You may want to check Banshee's source code to find out how it's done there.

  • For Mac, bockbuild is used so all libraries are bundled in the package.
  • For Windows, a WiX installer is used. It doesn't bundle Mono because with .NET it's enough. Not sure if this bundles the rest though (gtk#), you should double check.


来源:https://stackoverflow.com/questions/12145204/mono-install-on-windows-mac

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!