views:

58

answers:

1

I've just started using ccnet and it appears to be double building the nant file: The build log shows the build output twice:

Buildfile: file:///D:/ccnet/path/go.build Target framework: Microsoft .NET Framework 2.0 Target(s) specified: test

.. etc..

Buildfile: file:///D:/ccnet/path/go.build Target framework: Microsoft .NET Framework 2.0 Target(s) specified: test

But I only have one nant task in my ccnet.config. What might be wrong?

Thanks

JK

+2  A: 

If nant is putting output to the standard out it is getting wrapped upinto the build log automatically, then if you have Nant create an results file and you merge that in, you will get double results. I have seen it happen so this may be your issue. If it is, the best way to fix it is to get rid of the merge step and just let CC.NET consume the stdOut

Alex