> building nant was v. easy with rotor on OS X...
> 

And I had to change the src/NAnt.cs file:

<snip>
    using System.Text.RegularExpressions;

public struct FileVersionInfo 
{
public string FileMajorPart;
public string FileMinorPart;
public string FileBuildPart;
public FileVersionInfo(string Mj, string Mn, string
Bd)
{
FileMajorPart = "0";
FileMinorPart = "0";
FileBuildPart = "0";
}
}

public class NAnt {
</snip>

<snip>
// Get version information directly from assembly.
This takes more
// work but prevents the version numbers from getting
out of sync.
//ProcessModule module =
Process.GetCurrentProcess().MainModule;
//FileVersionInfo info =
FileVersionInfo.GetVersionInfo(module.FileName);
//string programName =
Path.GetFileNameWithoutExtension(info.FileName); // in
case the user has renamed the program

FileVersionInfo info = new FileVersionInfo("0", "0",
"0");
string programName = "NAnt";

if (showHelp) {
</snip>

> To compile I created a response file
> ls src/*.cs src/*/*.cs > response.rsp 
> and used the following command to compile:
> csc /out:NAnt.exe @response.rsp
> 
> Tom


__________________________________________________
Do You Yahoo!?
Everything you'll ever need on one web page
from News and Sport to Email and Music Charts
http://uk.my.yahoo.com


-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Nant-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-users

Reply via email to