Packing ironpython app into .exe and Installer
I'm not using sharpdevelop or visual studio for ironpython app development. I have my reasons for not using them for app development. What are my console based options for compiling ironpython .exe file and packaging it manually ?
开发者_开发问答Is it possible to create executable app with ironpython and pack it using installer ?
I use IronPython\Tools\Scripts\pyc.py
to create .exe and then xcopy deployment instead of installer.
I've used pyc and InnoSetup to create my installers. You can also download and run WIX from the command line without using #Develop or Visual Studio. The key is make sure you include all of the DLL's you need and to NGEN them on install for shorter start times and better performance.
精彩评论