views:

29

answers:

2

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.

MSBuild Command Line Reference

Curt Hagenlocher
+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