I've just started looking at IronPython, and I was hoping to build EXEs using NAnt. I'm not seeing much info on this... is it possible? Or, if not, is there a good alternative?
A:
In general, all C# projects and solutions can be built from the command line with msbuild.
Curt Hagenlocher
2010-08-10 05:19:17
+1
A:
If you want to build IronPython itself, use msbuild as recommended by Curt.
If you want to build IronPython program, use IronPython\Tools\Scripts\pyc.py
, e.g.:
ipy.exe pyc.py /main:Program.py Form.py /target:winexe
Lukas Cenovsky
2010-08-10 07:15:32