Re: [NAnt-users] script task

2009-05-13 Thread Bob Archer
here. BOb From: Gert Driesen [mailto:gert.drie...@telenet.be] Sent: Wednesday, May 13, 2009 3:44 PM To: Bob Archer; nant-users@lists.sourceforge.net Subject: RE: [NAnt-users] script task Hi Bob, This is only done when logging from a task. You could do something

Re: [NAnt-users] script task

2009-05-13 Thread Gert Driesen
rotected override void ExecuteTask () { } } ]]> </code> Hope this helps, Gert From: Bob Archer [mailto:bob.arc...@amsi.com] Sent: woensdag 13 mei 2009 21:22 To: nant-users@lists.source

[NAnt-users] script task

2009-05-13 Thread Bob Archer
Ok, I am trying to log from code in a script task. I use code such as this: project.Log(Level.Info, "I am in the script function."); But the console log looks like this: [script] Scanning assembly "tommx7ja" for extensions. I am in the script function. What is it not formatted t

Re: [Nant-users] Script task: Project object conflicts with EnvDTE.Project class

2005-04-22 Thread Ian MacLean
Arnette, Bill wrote: Nant version: rc2 0.85.1869.0 Perhaps I am trying to do too much with Nant, but what I am trying to do is use Nant to setup a developers VC++ environment using the same paths as used for the automated build. My plan is to use the VCPlatform object in the devstudio object model

[Nant-users] Script task: Project object conflicts with EnvDTE.Project class

2005-04-22 Thread Arnette, Bill
Nant version: rc2 0.85.1869.0 Perhaps I am trying to do too much with Nant, but what I am trying to do is use Nant to setup a developers VC++ environment using the same paths as used for the automated build. My plan is to use the VCPlatform object in the devstudio object model to set the paths th

[Nant-users] script task again

2005-01-07 Thread jcardeira
Hi,   As said in the documentation, “a static entry point named ScriptMain is required if no custom functions have been defined. It must have a single Project parameter”. Which other methods are available in this Type (Project) besides the Log method? When I click the link “Project” in

[Nant-users] Script task help

2004-11-14 Thread Paul Scobell
Hi, What is wrong with the following script task. Have just started using NAnt and this is my first effort writting a script for it.