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
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
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
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 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
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
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.