RE: [nant-dev] Internal error: illegal characters in exec call

2006-04-23 Thread Gert Driesen
 

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On 
 Behalf Of Trevor Misfeldt
 Sent: maandag 27 maart 2006 6:01
 To: nant-developers@lists.sourceforge.net
 Subject: [nant-dev] Internal error: illegal characters in exec call
 
 
 I got this error with this line:
 
 exec program=csc /t:library /platform:x86
 /addmodule:../Shared/NMathShared.netmodule
 /addmodule:../Kernel/NMathKernel.netmodule /out:NMathCore.dll *.cs/
 
 The execution works fine from the command-line. Should I be escaping
 characters there? 

You should use arg element to specify the commandline argument for csc:

exec program=csc
arg value=/t:library /
arg value=/platform:x86 /
...
/exec

 BTW, I'm doing this 'cause I don't see a platform option on 
 csc yet. I'm
 using a nightly build from a few days ago.

I'll add this asap.

Gert



---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
nant-developers mailing list
nant-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-developers


RE: [nant-dev] Internal error: illegal characters in exec call

2006-04-23 Thread Gert Driesen
 

 -Original Message-
 From: Gert Driesen [mailto:[EMAIL PROTECTED] 
 Sent: zondag 23 april 2006 11:14
 To: 'Trevor Misfeldt'; 'nant-developers@lists.sourceforge.net'
 Subject: RE: [nant-dev] Internal error: illegal characters in 
 exec call
 
  
 
  -Original Message-
  From: [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED] On 
  Behalf Of Trevor Misfeldt
  Sent: maandag 27 maart 2006 6:01
  To: nant-developers@lists.sourceforge.net
  Subject: [nant-dev] Internal error: illegal characters in exec call
  
  
  I got this error with this line:
  
  exec program=csc /t:library /platform:x86
  /addmodule:../Shared/NMathShared.netmodule
  /addmodule:../Kernel/NMathKernel.netmodule 
 /out:NMathCore.dll *.cs/
  
  The execution works fine from the command-line. Should I be escaping
  characters there? 
 
 You should use arg element to specify the commandline 
 argument for csc:
 
 exec program=csc
   arg value=/t:library /
   arg value=/platform:x86 /
   ...
 /exec
 
  BTW, I'm doing this 'cause I don't see a platform option on 
  csc yet. I'm
  using a nightly build from a few days ago.
 
 I'll add this asap.

I've committed the necessary changes to cvs, and I'm uploading a new nighlty
build right now.

Gert



---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
nant-developers mailing list
nant-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-developers


[nant-dev] Internal error: illegal characters in exec call

2006-04-21 Thread Trevor Misfeldt

I got this error with this line:

exec program=csc /t:library /platform:x86
/addmodule:../Shared/NMathShared.netmodule
/addmodule:../Kernel/NMathKernel.netmodule /out:NMathCore.dll *.cs/

The execution works fine from the command-line. Should I be escaping
characters there? 

BTW, I'm doing this 'cause I don't see a platform option on csc yet. I'm
using a nightly build from a few days ago.
   
INTERNAL ERROR

System.ArgumentException: Illegal characters in
path.
   at
System.Security.Permissions.FileIOPermission.HasIllegalCharacters(String[]
str)
   at
System.Security.Permissions.FileIOPermission.AddPathList(FileIOPermissionAcc
ess access, AccessControlActions control, String[] pathListOrig, Boolean
checkForDuplicates, Boolean needFullPath, Boolean copyPathLis
t)
   at
System.Security.Permissions.FileIOPermission..ctor(FileIOPermissionAccess
access, String[] pathList, Boolean checkForDuplicates, Boolean needFullPath)
   at System.IO.Path.GetFullPath(String path)
   at NAnt.Core.Project.GetFullPath(String path) in
d:\Source\nant-20060318T151816Z\src\NAnt.Core\Project.cs:line 1090
   at NAnt.Core.Tasks.ExecTask.get_ProgramFileName()
in d:\Source\nant-20060318T151816Z\src\NAnt.Core\Tasks\ExecTask.cs:line 200
   at
NAnt.Core.Tasks.ExternalProgramBase.ExecuteTask() in
d:\Source\nant-20060318T151816Z\src\NAnt.Core\Tasks\ExternalProgramBase.cs:l
ine 323
   at NAnt.Core.Tasks.ExecTask.ExecuteTask() in
d:\Source\nant-20060318T151816Z\src\NAnt.Core\Tasks\ExecTask.cs:line 298
   at NAnt.Core.Task.Execute() in
d:\Source\nant-20060318T151816Z\src\NAnt.Core\Task.cs:line 171
   at NAnt.Core.TaskContainer.ExecuteChildTasks() in
d:\Source\nant-20060318T151816Z\src\NAnt.Core\TaskContainer.cs:line 121
   at NAnt.Core.TaskContainer.ExecuteTask() in
d:\Source\nant-20060318T151816Z\src\NAnt.Core\TaskContainer.cs:line 87
   at NAnt.Core.Tasks.IfTask.ExecuteTask() in
d:\Source\nant-20060318T151816Z\src\NAnt.Core\Tasks\IfTask.cs:line 363
   at NAnt.Core.Task.Execute() in
d:\Source\nant-20060318T151816Z\src\NAnt.Core\Task.cs:line 171
   at NAnt.Core.Target.Execute() in
d:\Source\nant-20060318T151816Z\src\NAnt.Core\Target.cs:line 247
   at NAnt.Core.Project.Execute(String targetName,
Boolean forceDependencies) in
d:\Source\nant-20060318T151816Z\src\NAnt.Core\Project.cs:line 910
   at NAnt.Core.Project.Execute() in
d:\Source\nant-20060318T151816Z\src\NAnt.Core\Project.cs:line 862
   at NAnt.Core.Project.Run() in
d:\Source\nant-20060318T151816Z\src\NAnt.Core\Project.cs:line 947

Please send bug report to
[EMAIL PROTECTED]

--
Trevor Misfeldt
[EMAIL PROTECTED]
http://www.centerspace.net
 




---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
nant-developers mailing list
nant-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-developers


RE: [nant-dev] internal error when using nunit.....

2005-10-15 Thread Gert Driesen
Dean,

This issue should indeed be fixed. Can you try using a recent nightly build
(http://nant.sourceforge.net/nightly/latest) ?

Gert 

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On 
 Behalf Of Dean Hiller
 Sent: donderdag 13 oktober 2005 21:14
 To: nant-developers@lists.sourceforge.net
 Subject: [nant-dev] internal error when using nunit.
 
 Maybe this bug is already fixed.  If so, please let me know.  
 Otherwise, is there any way to work around this?
 
  
 
 I am using this version of ant
 
 NAnt 0.85 (Build 0.85.1869.0; rc2; 2/12/2005)
 
  
 
 It told me to email you this report..
 
 nunit:
 
  
 
  
 
 BUILD FAILED
 
  
 
 INTERNAL ERROR
 
  
 
 System.IO.FileNotFoundException: File or assembly name 
 nunit.core, or one of its
 
  dependencies, was not found.
 
 File name: nunit.core
 
at NAnt.NUnit2.Tasks.NUnit2Task.ExecuteTask()
 
at NAnt.Core.Task.Execute()
 
at NAnt.Core.Target.Execute()
 
at NAnt.Core.Project.Execute(String targetName, Boolean 
 forceDependencies)
 
at NAnt.Core.Project.Execute()
 
at NAnt.Core.Project.Run()
 
  
 
 === Pre-bind state information ===
 
 LOG: DisplayName = nunit.core, Version=2.2.0.0, 
 Culture=neutral, PublicKeyToken=
 
 96d09a1eb7f44a77
 
  (Fully-specified)
 
 LOG: Appbase = 
 C:\AROOT\views\workviews\hsem40\common\framework\input\tools\nant
 
 \
 
 LOG: Initial PrivatePath = NULL
 
 Calling assembly : NAnt.NUnit2Tasks, Version=0.85.1869.0, 
 Culture=neutral, Publi
 
 cKeyToken=null.
 
 ===
 
  
 
 LOG: Private path hint found in configuration file: lib.
 
 LOG: Publisher policy file is not found.
 
 LOG: Host configuration file not found.
 
 LOG: Using machine configuration file from 
 C:\WINNT\Microsoft.NET\Framework\v1.1
 
 .4322\config\machine.config.
 
 LOG: Post-policy reference: nunit.core, Version=2.2.0.0, 
 Culture=neutral, Public
 
 KeyToken=96d09a1eb7f44a77
 
 LOG: Attempting download of new URL 
 file:///C:/AROOT/views/workviews/hsem40/comm
 
 on/framework/input/tools/nant/nunit.core.DLL.
 
 LOG: Attempting download of new URL 
 file:///C:/AROOT/views/workviews/hsem40/comm
 
 on/framework/input/tools/nant/nunit.core/nunit.core.DLL.
 
 LOG: Attempting download of new URL 
 file:///C:/AROOT/views/workviews/hsem40/comm
 
 on/framework/input/tools/nant/lib/nunit.core.DLL.
 
 LOG: Attempting download of new URL 
 file:///C:/AROOT/views/workviews/hsem40/comm
 
 on/framework/input/tools/nant/lib/nunit.core/nunit.core.DLL.
 
 LOG: Attempting download of new URL 
 file:///C:/AROOT/views/workviews/hsem40/comm
 
 on/framework/input/tools/nant/nunit.core.EXE.
 
 LOG: Attempting download of new URL 
 file:///C:/AROOT/views/workviews/hsem40/comm
 
 on/framework/input/tools/nant/nunit.core/nunit.core.EXE.
 
 LOG: Attempting download of new URL 
 file:///C:/AROOT/views/workviews/hsem40/comm
 
 on/framework/input/tools/nant/lib/nunit.core.EXE.
 
 LOG: Attempting download of new URL 
 file:///C:/AROOT/views/workviews/hsem40/comm
 
 on/framework/input/tools/nant/lib/nunit.core/nunit.core.EXE.
 
  
 
  
 
 Please send bug report to [EMAIL PROTECTED]
 
  
 
 Total time: 4.4 seconds.
 
 
 
 
 The information contained in this e-mail and any attachments 
 hereto are for the exclusive use of the addressee and may 
 contain confidential, privileged and nondisclosable 
 information. If the recipient of this e-mail is not the 
 addressee, or a person responsible for delivering this e-mail 
 to the addressee, such recipient is strictly prohibited from 
 reading, printing, photocopying, distributing or otherwise 
 using this e-mail or any attachments hereto in any way. If 
 the recipient has received this e-mail in error, please send 
 return e-mail immediately notifying us of your receipt of 
 this e-mail and delete the e-mail from your inbox. Thank you. 
 



---
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
___
nant-developers mailing list
nant-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-developers


[nant-dev] internal error when using nunit.....

2005-10-13 Thread Dean Hiller







Maybe this bug is already fixed. If so, please let me know.
Otherwise, is there any way to work around this?



I am using this version of ant

NAnt 0.85 (Build 0.85.1869.0; rc2; 2/12/2005)



It told me to email you this report.

nunit:





BUILD FAILED



INTERNAL ERROR



System.IO.FileNotFoundException: File or assembly name nunit.core,
or one of its

dependencies, was not found.

File name: nunit.core

 at NAnt.NUnit2.Tasks.NUnit2Task.ExecuteTask()

 at NAnt.Core.Task.Execute()

 at NAnt.Core.Target.Execute()

 at NAnt.Core.Project.Execute(String targetName, Boolean forceDependencies)

 at NAnt.Core.Project.Execute()

 at NAnt.Core.Project.Run()



=== Pre-bind state information ===

LOG: DisplayName = nunit.core, Version=2.2.0.0,
Culture=neutral, PublicKeyToken=

96d09a1eb7f44a77

(Fully-specified)

LOG: Appbase =
C:\AROOT\views\workviews\hsem40\common\framework\input\tools\nant

\

LOG: Initial PrivatePath = NULL

Calling assembly : NAnt.NUnit2Tasks, Version=0.85.1869.0,
Culture=neutral, Publi

cKeyToken=null.

===



LOG: Private path hint found in configuration file: lib.

LOG: Publisher policy file is not found.

LOG: Host configuration file not found.

LOG: Using machine configuration file from
C:\WINNT\Microsoft.NET\Framework\v1.1

.4322\config\machine.config.

LOG: Post-policy reference: nunit.core, Version=2.2.0.0,
Culture=neutral, Public

KeyToken=96d09a1eb7f44a77

LOG: Attempting download of new URL file:///C:/AROOT/views/workviews/hsem40/comm

on/framework/input/tools/nant/nunit.core.DLL.

LOG: Attempting download of new URL
file:///C:/AROOT/views/workviews/hsem40/comm

on/framework/input/tools/nant/nunit.core/nunit.core.DLL.

LOG: Attempting download of new URL file:///C:/AROOT/views/workviews/hsem40/comm

on/framework/input/tools/nant/lib/nunit.core.DLL.

LOG: Attempting download of new URL
file:///C:/AROOT/views/workviews/hsem40/comm

on/framework/input/tools/nant/lib/nunit.core/nunit.core.DLL.

LOG: Attempting download of new URL
file:///C:/AROOT/views/workviews/hsem40/comm

on/framework/input/tools/nant/nunit.core.EXE.

LOG: Attempting download of new URL
file:///C:/AROOT/views/workviews/hsem40/comm

on/framework/input/tools/nant/nunit.core/nunit.core.EXE.

LOG: Attempting download of new URL
file:///C:/AROOT/views/workviews/hsem40/comm

on/framework/input/tools/nant/lib/nunit.core.EXE.

LOG: Attempting download of new URL
file:///C:/AROOT/views/workviews/hsem40/comm

on/framework/input/tools/nant/lib/nunit.core/nunit.core.EXE.





Please send bug report to
[EMAIL PROTECTED]



Total time: 4.4 seconds.






The information contained in this e-mail and any attachments hereto are for the exclusive use of the addressee and may contain confidential, privileged and nondisclosable information. If the recipient of this e-mail is not the addressee, or a person responsible for delivering this e-mail to the addressee, such recipient is strictly prohibited from reading, printing, photocopying, distributing or otherwise using this e-mail or any attachments hereto in any way. If the recipient has received this e-mail in error, please send return e-mail immediately notifying us of your receipt of this e-mail and delete the e-mail from your inbox. Thank you.



[nant-dev] Internal error.

2005-10-06 Thread ram kiran dhulipala

 
Hi,
When i try to build the .msi the following error occurs:


msi:


BUILD FAILED - 0 non-fatal error(s), 3 warning(s)

INTERNAL ERROR

System.InvalidCastException: Specified cast is not valid.
  at NAnt.Contrib.Tasks.Msi.MsiTask.InitializeTask(XmlNode TaskNode)
  at NAnt.Core.Task.InitializeElement(XmlNode elementNode)
  at NAnt.Core.Element.Initialize(XmlNode elementNode, PropertyDictionary prope
rties, FrameworkInfo framework)
  at NAnt.Core.Project.CreateTask(XmlNode taskNode, Target target)
  at NAnt.Core.Target.Execute()
  at NAnt.Core.Project.Execute(String targetName, Boolean forceDependencies)
  at NAnt.Core.Project.Execute()
  at NAnt.Core.Project.Run()

Please send bug report to [EMAIL PROTECTED]

Regards
Kiran





[nant-dev] INTERNAL ERROR - Please send bug report to nant-developers@lists.sourceforge.net.

2005-08-06 Thread Jhoover
Hello,
I am using the solution task and get the error shown at the end of this 
message.

My environment:
.NET Framework 1.1 (1.1.4322 SP1)
Dev Studio 2003 Version 7.1.3088
Windows XP Pro
nant-0.85-rc2 
nantcontrib-0.85-rc2

I looked at the release notes for rc3 and I didn't see this mentioned. Can 
anyone help, or is more info from me needed?

Thanks,
Jeff Hoover
MTS Systems Corp.




BUILD FAILED

INTERNAL ERROR

System.ArgumentException: Illegal characters in path.
   at System.IO.Path.Combine(String path1, String path2)
   at NAnt.VSNet.VcConfigurationBase.get_OutputPath()
   at NAnt.VSNet.ProjectBase.GetOutputPath(String configuration)
   at NAnt.VSNet.SolutionBase.GetDependenciesFromProjects(String 
buildConfig)
   at NAnt.VSNet.SolutionBase.Compile(String configuration)
   at NAnt.VSNet.Tasks.SolutionTask.ExecuteTask()
   at NAnt.Core.Task.Execute()
   at NAnt.Core.Target.Execute()
   at NAnt.Core.Project.Execute(String targetName, Boolean 
forceDependencies)
   at NAnt.Core.Project.Execute()
   at NAnt.Core.Project.Run()

Please send bug report to [EMAIL PROTECTED]




---
SF.Net email is Sponsored by the Better Software Conference  EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
nant-developers mailing list
nant-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-developers


RE: [nant-dev] INTERNAL ERROR - Please send bug report to nant-developers@lists.sourceforge.net.

2005-08-06 Thread Gert Driesen
Hi Jeff,

Can you try using a recent nightly build:

http://nant.sourceforge.net/nightly/latest

IF you still run into that issue with the nightly build, then please send me
a small repro.

Thanks !

Gert 

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On 
 Behalf Of [EMAIL PROTECTED]
 Sent: woensdag 20 juli 2005 21:22
 To: nant-developers@lists.sourceforge.net
 Subject: [nant-dev] INTERNAL ERROR - Please send bug report 
 to [EMAIL PROTECTED]
 
 Hello,
 I am using the solution task and get the error shown at the 
 end of this 
 message.
 
 My environment:
 .NET Framework 1.1 (1.1.4322 SP1)
 Dev Studio 2003 Version 7.1.3088
 Windows XP Pro
 nant-0.85-rc2 
 nantcontrib-0.85-rc2
 
 I looked at the release notes for rc3 and I didn't see this 
 mentioned. Can 
 anyone help, or is more info from me needed?
 
 Thanks,
 Jeff Hoover
 MTS Systems Corp.
 
 
 
 
 BUILD FAILED
 
 INTERNAL ERROR
 
 System.ArgumentException: Illegal characters in path.
at System.IO.Path.Combine(String path1, String path2)
at NAnt.VSNet.VcConfigurationBase.get_OutputPath()
at NAnt.VSNet.ProjectBase.GetOutputPath(String configuration)
at NAnt.VSNet.SolutionBase.GetDependenciesFromProjects(String 
 buildConfig)
at NAnt.VSNet.SolutionBase.Compile(String configuration)
at NAnt.VSNet.Tasks.SolutionTask.ExecuteTask()
at NAnt.Core.Task.Execute()
at NAnt.Core.Target.Execute()
at NAnt.Core.Project.Execute(String targetName, Boolean 
 forceDependencies)
at NAnt.Core.Project.Execute()
at NAnt.Core.Project.Run()
 
 Please send bug report to [EMAIL PROTECTED]
 
 
 
 
 ---
 SF.Net email is Sponsored by the Better Software Conference  EXPO
 September 19-22, 2005 * San Francisco, CA * Development 
 Lifecycle Practices
 Agile  Plan-Driven Development * Managing Projects  Teams * 
 Testing  QA
 Security * Process Improvement  Measurement * 
 http://www.sqe.com/bsce5sf
 ___
 nant-developers mailing list
 nant-developers@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/nant-developers
 



---
SF.Net email is Sponsored by the Better Software Conference  EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
nant-developers mailing list
nant-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-developers


RE: [nant-dev] Internal Error during build.

2005-05-06 Thread David Trumbell








I moved to the latest version (one of the
release candidates) and that fixed my problem.



Thanks,

David













From: Gert Driesen
[mailto:[EMAIL PROTECTED] 
Sent: Tuesday, May 03, 2005 2:31
PM
To: 'David
 Trumbell'; nant-developers@lists.sourceforge.net
Subject: RE: [nant-dev]
Internal Error during build.





David,



What version of NAnt are you using ?



Gert











From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of David Trumbell
Sent: dinsdag 19 april 2005 0:23
To: nant-developers@lists.sourceforge.net
Subject: [nant-dev] Internal
Error during build.

Im trying to set up NAnt but I cant build
because I keep receiving the same error message:



BUILD FAILED



INTERNAL ERROR



System.ComponentModel.Win32Exception: The system cannot find
the file specified

 at
System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo startInfo)

 at System.Diagnostics.Process.Start()

 at
System.Diagnostics.Process.Start(ProcessStartInfo startInfo)

 at NAnt.VSNet.Project.Compile(String
configuration, ArrayList alCSCArguments, String strLogFile, Boolean bVerbose,
Boolean bShowCommands)

 at NAnt.VSNet.Solution.Compile(String
configuration, ArrayList compilerArguments, String logFile, Boolean verbose,
Boolean showCommands)

 at NAnt.VSNet.Tasks.SolutionTask.ExecuteTask()

 at NAnt.Core.Task.Execute()

 at NAnt.Core.Target.Execute()

 at NAnt.Core.Project.Execute(String targetName,
Boolean forceDependencies)

 at NAnt.Core.Project.Execute()

 at NAnt.Core.Project.Run()



Please send bug report to nant-developers@lists.sourceforge.net.







Any help would be greatly appreciated.



Thanks,
David










[nant-dev] Internal Error during build.

2005-05-03 Thread David Trumbell








Im trying to set up NAnt but I cant build
because I keep receiving the same error message:



BUILD FAILED



INTERNAL ERROR



System.ComponentModel.Win32Exception: The system cannot find
the file specified

 at
System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo startInfo)

 at System.Diagnostics.Process.Start()

 at System.Diagnostics.Process.Start(ProcessStartInfo
startInfo)

 at NAnt.VSNet.Project.Compile(String configuration,
ArrayList alCSCArguments, String strLogFile, Boolean bVerbose, Boolean
bShowCommands)

 at NAnt.VSNet.Solution.Compile(String configuration,
ArrayList compilerArguments, String logFile, Boolean verbose, Boolean
showCommands)

 at NAnt.VSNet.Tasks.SolutionTask.ExecuteTask()

 at NAnt.Core.Task.Execute()

 at NAnt.Core.Target.Execute()

 at NAnt.Core.Project.Execute(String targetName, Boolean
forceDependencies)

 at NAnt.Core.Project.Execute()

 at NAnt.Core.Project.Run()



Please send bug report to nant-developers@lists.sourceforge.net.







Any help would be greatly appreciated.



Thanks,
David








RE: [nant-dev] Internal Error during build.

2005-05-03 Thread Gert Driesen



David,

What version of NAnt are you using ?

Gert

  
  
  From: 
  [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED] On Behalf Of David 
  TrumbellSent: dinsdag 19 april 2005 0:23To: 
  nant-developers@lists.sourceforge.netSubject: [nant-dev] "Internal 
  Error" during build.
  
  
  Im trying to set up NAnt but I 
  cant build because I keep receiving the same error 
  message:
  
  BUILD 
  FAILED
  
  INTERNAL 
  ERROR
  
  System.ComponentModel.Win32Exception: 
  The system cannot find the file specified
   at 
  System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo 
  startInfo)
   at 
  System.Diagnostics.Process.Start()
   at 
  System.Diagnostics.Process.Start(ProcessStartInfo 
  startInfo)
   at 
  NAnt.VSNet.Project.Compile(String configuration, ArrayList alCSCArguments, 
  String strLogFile, Boolean bVerbose, Boolean 
  bShowCommands)
   at 
  NAnt.VSNet.Solution.Compile(String configuration, ArrayList compilerArguments, 
  String logFile, Boolean verbose, Boolean 
  showCommands)
   at 
  NAnt.VSNet.Tasks.SolutionTask.ExecuteTask()
   at 
  NAnt.Core.Task.Execute()
   at 
  NAnt.Core.Target.Execute()
   at 
  NAnt.Core.Project.Execute(String targetName, Boolean 
  forceDependencies)
   at 
  NAnt.Core.Project.Execute()
   at 
  NAnt.Core.Project.Run()
  
  Please send bug report to nant-developers@lists.sourceforge.net.
  
  
  
  Any help would be greatly 
  appreciated.
  
  Thanks,David


[nant-dev] INTERNAL ERROR

2005-04-08 Thread Peter Crook



INTERNAL ERROR

System.IO.PathTooLongException: The path is too long after being 
fully qualified. Make sure path is less than 260 
characters. at System.IO.Path.nGetFullPathHelper(String 
path, Char[] invalidPathChars, Char[] whitespaceChars, Char directorySeparator, 
Char altDirectorySeparator, Char volumeSeparator, Boolean fullCheck, String 
newPath) at System.IO.Path.GetFullPathInternal(String 
path) at System.IO.Path.GetFullPath(String 
path) at 
NAnt.VSNet.Reference.ResolveFromHintPath(XmlElement referenceElement) in 
c:\dev\confirm\Confirmit.NET\tools\nant\src\NAnt.VSNet\Reference.cs:line 
567 at 
NAnt.VSNet.Reference.ResolveAssemblyReference(XmlElement referenceElement) in 
c:\dev\confirm\Confirmit.NET\tools\nant\src\NAnt.VSNet\Reference.cs:line 
504 at NAnt.VSNet.Reference..ctor(Solution solution, 
ProjectSettings ps, XmlElement elemReference, GacCache gacCache, SolutionTask 
solutionTask, DirectoryInfo outputDir) in 
c:\dev\confirm\Confirmit.NET\tools\nant\src\NAnt.VSNet\Reference.cs:line 
128 at NAnt.VSNet.Project.Load(Solution sln, String 
projectPath) in 
c:\dev\confirm\Confirmit.NET\tools\nant\src\NAnt.VSNet\Project.cs:line 
179 at NAnt.VSNet.ProjectFactory.LoadProject(Solution sln, 
SolutionTask slnTask, TempFileCollection tfc, GacCache gacCache, DirectoryInfo 
outputDir, String path) in 
c:\dev\confirm\Confirmit.NET\tools\nant\src\NAnt.VSNet\ProjectFactory.cs:line 
72 at NAnt.VSNet.Solution.LoadProjects(GacCache gacCache) 
in c:\dev\confirm\Confirmit.NET\tools\nant\src\NAnt.VSNet\Solution.cs:line 
560 at NAnt.VSNet.Solution..ctor(ArrayList projects, 
ArrayList referenceProjects, TempFileCollection tfc, SolutionTask solutionTask, 
WebMapCollection webMaps, FileSet excludesProjects, DirectoryInfo outputDir, 
GacCache gacCache) in 
c:\dev\confirm\Confirmit.NET\tools\nant\src\NAnt.VSNet\Solution.cs:line 
148 at NAnt.VSNet.Tasks.SolutionTask.ExecuteTask() in 
c:\dev\confirm\Confirmit.NET\tools\nant\src\NAnt.VSNet\Tasks\SolutionTask.cs:line 
362 at NAnt.Core.Task.Execute() in 
c:\dev\confirm\Confirmit.NET\tools\nant\src\NAnt.Core\Task.cs:line 
176 at NAnt.Core.Target.Execute() in 
c:\dev\confirm\Confirmit.NET\tools\nant\src\NAnt.Core\Target.cs:line 
249 at NAnt.Core.Project.Execute(String targetName, 
Boolean forceDependencies) in 
c:\dev\confirm\Confirmit.NET\tools\nant\src\NAnt.Core\Project.cs:line 
870 at NAnt.Core.Project.Execute() in 
c:\dev\confirm\Confirmit.NET\tools\nant\src\NAnt.Core\Project.cs:line 
827 at NAnt.Core.Project.Run() in 
c:\dev\confirm\Confirmit.NET\tools\nant\src\NAnt.Core\Project.cs:line 895

Please send bug report to nant-developers@lists.sourceforge.net.

Total time: 3.8 seconds.

D


Med vennlig 
hilsenPeter CrookSystemsDeveloper[EMAIL PROTECTED] 
Tel: +47 
21 50 25 00 Fax: +47 21 50 25 01 Dir: +47 21 50 2522 
Mob: +4793096223 
Future Information Research Management - FIRM 
Hoffsveien 48, N-0377 Oslo, Norway 

Confirmit is the world´s leading web survey and 
feedback application For more 
information, please visit our web site http://www.confirmit.com 
The information contained in this email message 
may be privileged, confidential or exempt from disclosure under applicable law. 
If you are not the intended recipient, you are hereby notified that any use, 
dissemination, distribution or copying of this transmission is strictly 
prohibited. If you have received this communication in error, or if any problems 
occur with transmission, please notify the sender immediately. 



RE: [nant-dev] INTERNAL ERROR

2005-04-08 Thread Gert Driesen



Peter,

This should be fixed in recent nightly builds (http://nant.sourceforge.net/nightly/latest).

Gert

  
  
  From: 
  [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED] On Behalf Of Peter 
  CrookSent: donderdag 7 april 2005 13:27To: 
  nant-developers@lists.sourceforge.netSubject: [nant-dev] INTERNAL 
  ERROR
  
  INTERNAL ERROR
  
  System.IO.PathTooLongException: The path is too long after being 
  fully qualified. Make sure path is less than 260 
  characters. at System.IO.Path.nGetFullPathHelper(String 
  path, Char[] invalidPathChars, Char[] whitespaceChars, Char 
  directorySeparator, Char altDirectorySeparator, Char volumeSeparator, Boolean 
  fullCheck, String newPath) at 
  System.IO.Path.GetFullPathInternal(String path) at 
  System.IO.Path.GetFullPath(String path) at 
  NAnt.VSNet.Reference.ResolveFromHintPath(XmlElement referenceElement) in 
  c:\dev\confirm\Confirmit.NET\tools\nant\src\NAnt.VSNet\Reference.cs:line 
  567 at 
  NAnt.VSNet.Reference.ResolveAssemblyReference(XmlElement referenceElement) in 
  c:\dev\confirm\Confirmit.NET\tools\nant\src\NAnt.VSNet\Reference.cs:line 
  504 at NAnt.VSNet.Reference..ctor(Solution solution, 
  ProjectSettings ps, XmlElement elemReference, GacCache gacCache, SolutionTask 
  solutionTask, DirectoryInfo outputDir) in 
  c:\dev\confirm\Confirmit.NET\tools\nant\src\NAnt.VSNet\Reference.cs:line 
  128 at NAnt.VSNet.Project.Load(Solution sln, String 
  projectPath) in 
  c:\dev\confirm\Confirmit.NET\tools\nant\src\NAnt.VSNet\Project.cs:line 
  179 at NAnt.VSNet.ProjectFactory.LoadProject(Solution 
  sln, SolutionTask slnTask, TempFileCollection tfc, GacCache gacCache, 
  DirectoryInfo outputDir, String path) in 
  c:\dev\confirm\Confirmit.NET\tools\nant\src\NAnt.VSNet\ProjectFactory.cs:line 
  72 at NAnt.VSNet.Solution.LoadProjects(GacCache 
  gacCache) in 
  c:\dev\confirm\Confirmit.NET\tools\nant\src\NAnt.VSNet\Solution.cs:line 
  560 at NAnt.VSNet.Solution..ctor(ArrayList projects, 
  ArrayList referenceProjects, TempFileCollection tfc, SolutionTask 
  solutionTask, WebMapCollection webMaps, FileSet excludesProjects, 
  DirectoryInfo outputDir, GacCache gacCache) in 
  c:\dev\confirm\Confirmit.NET\tools\nant\src\NAnt.VSNet\Solution.cs:line 
  148 at NAnt.VSNet.Tasks.SolutionTask.ExecuteTask() in 
  c:\dev\confirm\Confirmit.NET\tools\nant\src\NAnt.VSNet\Tasks\SolutionTask.cs:line 
  362 at NAnt.Core.Task.Execute() in 
  c:\dev\confirm\Confirmit.NET\tools\nant\src\NAnt.Core\Task.cs:line 
  176 at NAnt.Core.Target.Execute() in 
  c:\dev\confirm\Confirmit.NET\tools\nant\src\NAnt.Core\Target.cs:line 
  249 at NAnt.Core.Project.Execute(String targetName, 
  Boolean forceDependencies) in 
  c:\dev\confirm\Confirmit.NET\tools\nant\src\NAnt.Core\Project.cs:line 
  870 at NAnt.Core.Project.Execute() in 
  c:\dev\confirm\Confirmit.NET\tools\nant\src\NAnt.Core\Project.cs:line 
  827 at NAnt.Core.Project.Run() in 
  c:\dev\confirm\Confirmit.NET\tools\nant\src\NAnt.Core\Project.cs:line 
895
  
  Please send bug report to nant-developers@lists.sourceforge.net.
  
  Total time: 3.8 seconds.
  
  D
  
  
  Med vennlig 
  hilsenPeter CrookSystemsDeveloper[EMAIL PROTECTED] 
  Tel: 
  +47 21 50 25 00 Fax: +47 21 50 25 01 Dir: +47 21 50 
  2522 Mob: +4793096223 
  Future Information Research Management - FIRM 
  Hoffsveien 48, N-0377 Oslo, Norway 
  
  Confirmit is the world´s leading web survey 
  and feedback application For more 
  information, please visit our web site http://www.confirmit.com 
  The information contained in this email message 
  may be privileged, confidential or exempt from disclosure under applicable 
  law. If you are not the intended recipient, you are hereby notified that any 
  use, dissemination, distribution or copying of this transmission is strictly 
  prohibited. If you have received this communication in error, or if any 
  problems occur with transmission, please notify the sender immediately. 
  
  


[nant-dev] INTERNAL ERROR

2005-03-05 Thread Steve Brennan




NAnt 0.85 (Build 0.85.1869.0; rc2; 
2/12/2005)Copyright (C) 2001-2005 Gerry Shawhttp://nant.sourceforge.net

Buildfile: file:///C:/Centrics/Framework/fr.buildTarget 
framework: Microsoft .NET Framework 1.1Target(s) specified: Framework 


Framework:

[solution] Starting solution build.

BUILD FAILED

INTERNAL ERROR

System.UriFormatException: Invalid URI: The format of the URI could not be 
determined. at System.Uri.Parse() at 
System.Uri..ctor(String uriString, Boolean dontEscape) at 
System.Uri..ctor(String uriString) at 
NAnt.VSNet.ProjectFactory.GetProjectFileName(String fileName) at 
NAnt.VSNet.ProjectFactory.IsSupportedProjectType(String path) at 
NAnt.VSNet.Everett.Solution..ctor(String solutionContent, SolutionTask 
solutionTask, TempFileCollection tfc, GacCache gacCache, ReferencesResolver 
refResolver) at 
NAnt.VSNet.SolutionFactory.LoadSolution(SolutionTask solutionTask, 
TempFileCollection tfc, GacCache gacCache, ReferencesResolver 
refResolver) at 
NAnt.VSNet.Tasks.SolutionTask.ExecuteTask() at 
NAnt.Core.Task.Execute() at 
NAnt.Core.Target.Execute() at NAnt.Core.Project.Execute(String 
targetName, Boolean forceDependencies) at 
NAnt.Core.Project.Execute() at NAnt.Core.Project.Run()

Please send bug report to nant-developers@lists.sourceforge.net.

Total time: 0.3 seconds.




RE: [nant-dev] INTERNAL ERROR

2005-03-05 Thread Gert Driesen



Steve,

Can you send me a small repro for this issue (including 
VS.NET solution/project, sources and build file) ?

Thanks !

Gert

  
  
  From: 
  [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED] On Behalf Of Steve 
  BrennanSent: vrijdag 4 maart 2005 17:41To: 
  nant-developers@lists.sourceforge.netSubject: [nant-dev] INTERNAL 
  ERROR
  
  
  NAnt 0.85 (Build 0.85.1869.0; rc2; 
  2/12/2005)Copyright (C) 2001-2005 Gerry Shawhttp://nant.sourceforge.net
  
  Buildfile: file:///C:/Centrics/Framework/fr.buildTarget 
  framework: Microsoft .NET Framework 1.1Target(s) specified: Framework 
  
  
  Framework:
  
  [solution] Starting solution build.
  
  BUILD FAILED
  
  INTERNAL ERROR
  
  System.UriFormatException: Invalid URI: The format of the URI could not 
  be determined. at System.Uri.Parse() at 
  System.Uri..ctor(String uriString, Boolean dontEscape) at 
  System.Uri..ctor(String uriString) at 
  NAnt.VSNet.ProjectFactory.GetProjectFileName(String fileName) 
  at NAnt.VSNet.ProjectFactory.IsSupportedProjectType(String 
  path) at NAnt.VSNet.Everett.Solution..ctor(String 
  solutionContent, SolutionTask solutionTask, TempFileCollection tfc, GacCache 
  gacCache, ReferencesResolver refResolver) at 
  NAnt.VSNet.SolutionFactory.LoadSolution(SolutionTask solutionTask, 
  TempFileCollection tfc, GacCache gacCache, ReferencesResolver 
  refResolver) at 
  NAnt.VSNet.Tasks.SolutionTask.ExecuteTask() at 
  NAnt.Core.Task.Execute() at 
  NAnt.Core.Target.Execute() at NAnt.Core.Project.Execute(String 
  targetName, Boolean forceDependencies) at 
  NAnt.Core.Project.Execute() at NAnt.Core.Project.Run()
  
  Please send bug report to nant-developers@lists.sourceforge.net.
  
  Total time: 0.3 seconds.
  
  


[nant-dev] INTERNAL ERROR

2005-02-25 Thread Paul Henderson
Title: Message



C:\ADAREINTELLIDATAnant buildNAnt 0.84 
(Build 0.84.1455.0; net-1.0.win32; release; 26/12/2003)Copyright (C) 
2001-2003 Gerry Shawhttp://nant.sourceforge.net

Buildfile: file:///C:/ADAREINTELLIDATA/BuildAll.buildTarget(s) 
specified: build

build:

[solution] Starting solution 
build.

BUILD FAILED

INTERNAL ERROR

System.IO.PathTooLongException: The path is too 
long after being fully qualified. Make sure path is less than 260 
characters. at System.IO.Path.nGetFullPathHelper(String path, 
Char[] invalidPathChars, Char[] whitespaceChars, Char directorySeparator, 
Char altDirectorySeparator, CharvolumeSeparator, Boolean fullCheck, 
String newPath) at 
System.IO.Path.GetFullPathInternal(String path) at 
System.IO.FileInfo..ctor(String fileName) at 
NAnt.VSNet.Reference..ctor(Solution solution, ProjectSettings ps, XmlElement 
elemReference, SolutionTask solutionTask, String outputDir) at 
NAnt.VSNet.Project.Load(Solution sln, String projectPath) at 
NAnt.VSNet.ProjectFactory.LoadProject(Solution sln, SolutionTask 
slnTask,TempFileCollection tfc, String outputDir, String 
path) at NAnt.VSNet.Solution.LoadProjects() at 
NAnt.VSNet.Solution..ctor(ArrayList projects, ArrayList 
referenceProjects,TempFileCollection tfc, SolutionTask solutionTask, 
WebMapCollection webMaps, FileSet excludesProjects, String 
outputDir) at 
NAnt.VSNet.Tasks.SolutionTask.ExecuteTask() at 
NAnt.Core.Task.Execute() at 
NAnt.Core.Target.Execute() at NAnt.Core.Project.Execute(String 
targetName, Boolean forceDependencies) at 
NAnt.Core.Project.Execute() at 
NAnt.Core.Project.Run()

Please send bug report to nant-developers@lists.sourceforge.net.

Total time: 4.5 seconds.

C:\ADAREINTELLIDATA




This e-mail, and any attachment, is confidential. If you have received it in error, please delete it from your system, do not use or disclose the information in any way, and notify the sender immediately. The contents of this message may contain personal views which are not the views of Adare Intellidata Limited. Any representations or commitments expressed in this email are subject to contract and confirmation in writing.



BuildAll.build
Description: Binary data


[nant-dev] Internal Error - can you help?

2004-11-22 Thread miguelcastro

NAnt 0.84 (Build 0.84.1455.0; net-1.0.win32;
release; 12/26/2003)
Copyright (C) 2001-2003 Gerry Shaw
http://nant.sourceforge.net

Buildfile: file:///C:/Inetpub/wwwroot/CCOM_Web/SupportFiles/TestBuild.build
Target(s) specified: Build

Build:


NantTestProject:

[solution] Starting solution build.
[solution] Building Microsoft.ApplicationBlocks.ExceptionManagement.Interfaces
[debug]...
[solution] Building Microsoft.ApplicationBlocks.ExceptionManagement
[debug]...
[solution] Building GotDotNet.ApplicationBlocks.Data
[debug]...
[solution] Building Chubb.Utility
[debug]...
[solution] Building EncryptionUtility
[debug]...
[solution] Building Chubb.FinancialIT.Common
[debug]...
[solution] Building Chubb.FinancialIT.CCOM.Common
[debug]...
[solution] Building Chubb.FinancialIT.CCOM.DAL
[debug]...
[solution] Building Chubb.FinancialIT.CCOM.BLL
[debug]...
[solution] Building Chubb.FinancialIT.CCOM.WebControls
[debug]...
[solution] Building CCOM_WEB [debug]...

 
onfailure:

 
  [echo] NANT Build Failed!

 
BUILD FAILED

 
INTERNAL ERROR

 
System.Runtime.Serialization.SerializationException: The type System
.ComponentModel.LicenseException in
Assembly System, Version=1.0.5000.0, Culture
=neutral, PublicKeyToken=b77a5c561934e089
is not marked as serializable.

Server stack trace:
 at System.Runtime.Serialization.Formatters.Binary.WriteObjectInfo.InitSeriali
ze(Object obj, ISurrogateSelector surrogateSelector,
StreamingContext context, S
erObjectInfoInit serObjectInfoInit,
IFormatterConverter converter)
 at System.Runtime.Serialization.Formatters.Binary.WriteObjectInfo.Serialize(O
bject obj, ISurrogateSelector surrogateSelector,
StreamingContext context, SerOb
jectInfoInit serObjectInfoInit, IFormatterConverter
converter)
 at System.Runtime.Serialization.Formatters.Binary.ObjectWriter.Write(WriteObj
ectInfo objectInfo, NameInfo memberNameInfo,
NameInfo typeNameInfo)
 at System.Runtime.Serialization.Formatters.Binary.ObjectWriter.Serialize(Obje
ct graph, Header[] inHeaders, __BinaryWriter
serWriter, Boolean fCheck)
 at System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.Serialize(S
tream serializationStream, Object graph,
Header[] headers, Boolean fCheck)
 at System.Runtime.Remoting.Channels.CrossAppDomainSerializer.SerializeMessage
Parts(ArrayList argsToSerialize)
 at System.Runtime.Remoting.Messaging.SmuggledMethodReturnMessage..ctor(IMetho
dReturnMessage mrm)
 at System.Runtime.Remoting.Messaging.SmuggledMethodReturnMessage.SmuggleIfPos
sible(IMessage msg)
 at System.Runtime.Remoting.Channels.CrossAppDomainSink.DoDispatch(Byte[]
reqS
tmBuff, SmuggledMethodCallMessage smuggledMcm,
SmuggledMethodReturnMessage smug
gledMrm)
 at System.Runtime.Remoting.Channels.CrossAppDomainSink.DoTransitionDispatch(B
yte[] reqStmBuff, SmuggledMethodCallMessage
smuggledMcm, SmuggledMethodReturnMes
sage smuggledMrm)

Exception rethrown at [0]:
 at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage
req
Msg, IMessage retMsg)
 at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData
msgDa
ta, Int32 type)
 at NAnt.DotNet.Tasks.LicenseGatherer.CreateLicenseFile(LicenseTask
licenseTas
k, String licenseFile)
 at NAnt.DotNet.Tasks.LicenseTask.ExecuteTask()
 at NAnt.Core.Task.Execute()
 at NAnt.VSNet.Resource.CompileLicx()
 at NAnt.VSNet.Resource.Compile(ConfigurationSettings
configurationSettings, B
oolean showCommands)
 at NAnt.VSNet.Project.Compile(String
configuration, ArrayList alCSCArguments,
String strLogFile, Boolean bVerbose,
Boolean bShowCommands)
 at NAnt.VSNet.Solution.Compile(String
configuration, ArrayList compilerArgume
nts, String logFile, Boolean verbose,
Boolean showCommands)
 at NAnt.VSNet.Tasks.SolutionTask.ExecuteTask()
 at NAnt.Core.Task.Execute()
 at NAnt.Core.Target.Execute()
 at NAnt.Core.Project.Execute(String
targetName, Boolean forceDependencies)
 at NAnt.Core.Tasks.CallTask.ExecuteTask()
 at NAnt.Core.Task.Execute()
 at NAnt.Core.Target.Execute()
 at NAnt.Core.Project.Execute(String
targetName, Boolean forceDependencies)
 at NAnt.Core.Project.Execute()
 at NAnt.Core.Project.Run()

 
Please send bug report to [EMAIL PROTECTED]

 
Total time: 2.5 seconds.

Press any key to continue . . .

RE: [nant-dev] INTERNAL ERROR

2004-11-14 Thread Gert Driesen
Hi Pierre,

What version of NAnt are you using ?

Gert 

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On 
 Behalf Of Pierre-Yves Troel
 Sent: donderdag 11 november 2004 18:13
 To: [EMAIL PROTECTED]
 Subject: [nant-dev] INTERNAL ERROR
 
 Hi, here is an error I get when building my solution...
 
 BUILD FAILED
 
 INTERNAL ERROR
 
 
 System.Runtime.Serialization.SerializationException: The type 
 System.ComponentModel.LicenseException in Assembly System, 
 Version=1.0.5000.0, Culture=neutral, 
 PublicKeyToken=b77a5c561934e089 is not marked as serializable.
 
 Server stack trace:
at 
 System.Runtime.Serialization.Formatters.Binary.WriteObjectInfo
 .InitSerialize(Object obj, ISurrogateSelector 
 surrogateSelector, StreamingContext context, 
 SerObjectInfoInit serObjectInfoInit, IFormatterConverter converter)
at 
 System.Runtime.Serialization.Formatters.Binary.WriteObjectInfo
 .Serialize(Object obj, ISurrogateSelector surrogateSelector, 
 StreamingContext context, SerObjectInfoInit 
 serObjectInfoInit, IFormatterConverter converter)
at 
 System.Runtime.Serialization.Formatters.Binary.ObjectWriter.Wr
 ite(WriteObjectInfo objectInfo, NameInfo memberNameInfo, 
 NameInfo typeNameInfo)
at 
 System.Runtime.Serialization.Formatters.Binary.ObjectWriter.Se
 rialize(Object graph, Header[] inHeaders, __BinaryWriter 
 serWriter, Boolean fCheck)
at 
 System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
 .Serialize(Stream serializationStream, Object graph, Header[] 
 headers, Boolean fCheck)
at 
 System.Runtime.Remoting.Channels.CrossAppDomainSerializer.Seri
 alizeMessageParts(ArrayList argsToSerialize)
at 
 System.Runtime.Remoting.Messaging.SmuggledMethodReturnMessage.
 .ctor(IMethodReturnMessage mrm)
at 
 System.Runtime.Remoting.Messaging.SmuggledMethodReturnMessage.
 SmuggleIfPossible(IMessage msg)
at 
 System.Runtime.Remoting.Channels.CrossAppDomainSink.DoDispatch
 (Byte[] reqStmBuff, SmuggledMethodCallMessage smuggledMcm, 
 SmuggledMethodReturnMessage smuggledMrm)
at 
 System.Runtime.Remoting.Channels.CrossAppDomainSink.DoTransiti
 onDispatch(Byte[] reqStmBuff, SmuggledMethodCallMessage 
 smuggledMcm, SmuggledMethodReturnMessage smuggledMrm)
 
 Exception rethrown at [0]:
at 
 System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(
 IMessage reqMsg, IMessage retMsg)
at 
 System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(Messag
 eData msgData, Int32 type)
at 
 NAnt.DotNet.Tasks.LicenseGatherer.CreateLicenseFile(LicenseTas
 k licenseTask, String licenseFile)
at NAnt.DotNet.Tasks.LicenseTask.ExecuteTask()
at NAnt.Core.Task.Execute()
at NAnt.VSNet.Resource.CompileLicx()
at NAnt.VSNet.Resource.Compile(ConfigurationSettings 
 configurationSettings, Boolean showCommands)
at NAnt.VSNet.Project.Compile(String configuration, 
 ArrayList alCSCArguments, String strLogFile, Boolean 
 bVerbose, Boolean bShowCommands)
at NAnt.VSNet.Solution.Compile(String configuration, 
 ArrayList compilerArguments, String logFile, Boolean verbose, 
 Boolean showCommands)
at NAnt.VSNet.Tasks.SolutionTask.ExecuteTask()
at NAnt.Core.Task.Execute()
at NAnt.Core.Project.InitializeProjectDocument(XmlDocument doc)
at NAnt.Core.Project.Execute()
at NAnt.Core.Project.Run()
 
 Please send bug report to 
 [EMAIL PROTECTED]
 
 Total time: 31.2 seconds.
 
 
 
 Pierre-Yves Troël
 .NET Lead Developer
 
 Ayuda Media Management Systems
 Tel: (514) 845-0824
 417 St Pierre, Suite 800
 Montréal, QC
 H2Y 2M4
 Canada
 
 
 
 
 ---
 This SF.Net email is sponsored by: InterSystems CACHE
 FREE OODBMS DOWNLOAD - A multidimensional database that combines
 robust object and relational technologies, making it a perfect match
 for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
 ___
 nant-developers mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/nant-developers
 
 



---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers


RE: [nant-dev] INTERNAL ERROR

2004-10-24 Thread Gert Driesen
Hoi Doeke,

You should not use wildcards in the file attribute of the copy task.

If you want to use patterns, you should use a fileset. 

For example :

copy todir=${patch.archive}
fileset basedir=.
include name=*/** /
/fileset
/copy
 
Gert

PS1. I advise you to use a recent nightly build of NAnt
(http://nant.sourceforge.net/nightly/builds).

PS2. Good to learn that ATOS uses NAnt too. I work for Ardatis (in Belgium),
we have a partnership with ATOS Belgium.

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On 
 Behalf Of Doeke Zanstra
 Sent: vrijdag 22 oktober 2004 11:28
 To: [EMAIL PROTECTED]
 Subject: [nant-dev] INTERNAL ERROR
 
 I got the error specified below. I use nant 0.84 on Windows 2000
 Server with dot net 1.0 (or 1.1).
 
 Message
 -
 INTERNAL ERROR
 
 System.ArgumentException: Illegal characters in path.
at 
 System.Security.Permissions.FileIOPermission.HasIllegalCharact
 ers(String[]
 str)
at 
 System.Security.Permissions.FileIOPermission.AddPathList(FileI
 OPermissionAccess
 access, String[] pathListOrig, Boolean checkFo
 rDuplicates, Boolean needFullPath, Boolean copyPathList)
at 
 System.Security.Permissions.FileIOPermission..ctor(FileIOPermi
 ssionAccess
 access, String[] pathList, Boolean checkForDuplicate
 s, Boolean needFullPath)
at System.IO.Path.GetFullPath(String path)
at NAnt.Core.Project.GetFullPath(String path)
at NAnt.Core.Tasks.CopyTask.get_SourceFile()
at NAnt.Core.Tasks.CopyTask.InitializeTask(XmlNode taskNode)
at NAnt.Core.Task.InitializeElement(XmlNode elementNode)
at NAnt.Core.Element.Initialize(XmlNode elementNode)
at NAnt.Core.Target.Execute()
at NAnt.Core.Project.Execute(String targetName, Boolean 
 forceDependencies)
at NAnt.Core.Project.Execute()
at NAnt.Core.Project.Run()
 
 Please send bug report to [EMAIL PROTECTED]
 
 nant project file (it crasht when I added the two copy tasks
 -
 property name=patch.name   value=2004-10-19_NewPP-SAT/
 property name=patch.archive
 value=R:\Algemeen\xButler\tab\patches\1.3\2004-10-19_NewPP/
 copy file=*.* todir=${patch.archive}/
 copy file=Build\${patch.name}.exe todir=${patch.archive}\Build/
 
 
 
 listing of current directory:
 -
 22-10-2004  11:15   DIR  .
 22-10-2004  11:15   DIR  ..
 22-10-2004  11:15   10.839 2004-09-13.build
 19-10-2004  21:21   39.635 bis.js
 22-10-2004  11:16   DIR  Build
 22-10-2004  11:01  109 confMan.inc.txt
 01-09-2004  11:59   36 GO.bat
 20-10-2004  15:12  878 install.bis
 08-10-2004  10:43  355 peronal.xml
 08-10-2004  11:04   17 proces.components.txt
 14-10-2004  15:27  499 proces.expired.txt
 14-10-2004  15:35  307 proces.mod.txt
 22-10-2004  10:36  972 proces.new.txt
 08-10-2004  11:51  420 rarComments.txt
 08-10-2004  11:10   73 resource.components.txt
 08-10-2004  11:08  218 service-resource.components.txt
 08-10-2004  11:05  154 service.components.txt
 20-10-2004  15:07  120 settings.reg
 20-10-2004  18:52  288 vssver.scc
 
 listing of Build directory:
 -
 22-10-2004  11:16   DIR  .
 22-10-2004  11:16   DIR  ..
 22-10-2004  11:16   DIR  2004-10-19_NewPP-SAT
 22-10-2004  11:161.264.868 2004-10-19_NewPP-SAT.exe
 
 
 Success. Sorry I don't have more time to check this problem. We are
 releasing this weekend...
 -- 
 Doeke Zanstra
 Software Development
 
 Atos Origin TSS
 Practice Mobile
 Unit Fulfillment
 
 E [EMAIL PROTECTED]
 W http://www.xs4all.nl/~zanstra/
 T +31 (0)50-58 83073
 
 
 ---
 This SF.net email is sponsored by: IT Product Guide on 
 ITManagersJournal
 Use IT products in your business? Tell us what you think of 
 them. Give us
 Your Opinions, Get Free ThinkGeek Gift Certificates! Click to 
 find out more
 http://productguide.itmanagersjournal.com/guidepromo.tmpl
 ___
 nant-developers mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/nant-developers
 
 



---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers


RE: [nant-dev] Internal error when unloading AppDomain after running a test case that uses System.DirectoryServices

2004-10-07 Thread Mårten Gustafson
Using build 2004-09-28-0.85 seems to have solved the problem.


Thanks!



/mårten.  

 -Original Message-
 From: Gert Driesen [mailto:[EMAIL PROTECTED] 
 Sent: den 6 oktober 2004 07:54
 To: Mårten Gustafson; [EMAIL PROTECTED]
 Subject: Re: [nant-dev] Internal error when unloading 
 AppDomain after running a test case that uses System.DirectoryServices
 
 Mårten,
 
 What version of NAnt are you using ?  That issue should have 
 been fixed in more recent nightly builds.
 
 Gert
 
 - Original Message -
 From: Mårten Gustafson [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Tuesday, October 05, 2004 11:12 AM
 Subject: [nant-dev] Internal error when unloading AppDomain 
 after running a test case that uses System.DirectoryServices
 
 
 Se bottom of mail for stack trace.
 
 Seems that at least one other person has this problem - 
 http://weblogs.asp.net/mnissen/archive/2004/05/13/131061.aspx.
  My symptoms are the same, appears at random test runs, never 
 occurs if I [Ignore] the fixture that contains the 
 ActiveDirectory/System.DirectoryServices tests.
 
 I'm not on the list, so reply directly to me if you have any 
 questions.
 
 
 
 Regards,
 Mårten.
 
 
 
 INTERNAL ERROR
 
 System.CannotUnloadAppDomainException: AppDomain can not be 
 unloaded because the thread e80 can not be unwound out of it .
at System.AppDomain.Unload(AppDomain domain)
at NAnt.NUnit2.Tasks.NUnit2TestDomain.Unload() in 
 C:\Documents and Settings\drieseng\Local 
 Settings\Temp\tmp53E.tmp\s 
 rc\NAnt.NUnit\NUnit2\NUnit2TestDomain.cs:line 97
at NAnt.NUnit2.Tasks.NUnit2Task.ExecuteTask() in 
 C:\Documents and Settings\drieseng\Local 
 Settings\Temp\tmp53E.tmp\sr c\NAnt.NUnit\NUnit2\NUnit2Task.cs:line 241
at NAnt.Core.Task.Execute() in C:\Documents and 
 Settings\drieseng\Local Settings\Temp\tmp53E.tmp\src\NAnt.Core\Task.c
 s:line 177
at NAnt.Core.Target.Execute() in C:\Documents and 
 Settings\drieseng\Local Settings\Temp\tmp53E.tmp\src\NAnt.Core\Targ
 et.cs:line 249
at NAnt.Core.Project.Execute(String targetName, Boolean
 forceDependencies) in C:\Documents and Settings\drieseng\Loca 
 l Settings\Temp\tmp53E.tmp\src\NAnt.Core\Project.cs:line 876
at NAnt.Core.Project.Execute(String targetName) in 
 C:\Documents and Settings\drieseng\Local 
 Settings\Temp\tmp53E.tmp\ src\NAnt.Core\Project.cs:line 846
at NAnt.Core.Tasks.CallTask.ExecuteTask() in C:\Documents 
 and Settings\drieseng\Local Settings\Temp\tmp53E.tmp\src\NA 
 nt.Core\Tasks\CallTask.cs:line 110
at NAnt.Core.Task.Execute() in C:\Documents and 
 Settings\drieseng\Local Settings\Temp\tmp53E.tmp\src\NAnt.Core\Task.c
 s:line 177
at NAnt.Core.Target.Execute() in C:\Documents and 
 Settings\drieseng\Local Settings\Temp\tmp53E.tmp\src\NAnt.Core\Targ
 et.cs:line 249
at NAnt.Core.Project.Execute(String targetName, Boolean
 forceDependencies) in C:\Documents and Settings\drieseng\Loca 
 l Settings\Temp\tmp53E.tmp\src\NAnt.Core\Project.cs:line 876
at NAnt.Core.Project.Execute() in C:\Documents and 
 Settings\drieseng\Local Settings\Temp\tmp53E.tmp\src\NAnt.Core\Pro
 ject.cs:line 833
at NAnt.Core.Project.Run() in C:\Documents and 
 Settings\drieseng\Local Settings\Temp\tmp53E.tmp\src\NAnt.Core\Project
 .cs:line 903
 
 Please send bug report to [EMAIL PROTECTED]
 
 
 ---
 This SF.net email is sponsored by: IT Product Guide on 
 ITManagersJournal Use IT products in your business? Tell us 
 what you think of them. Give us Your Opinions, Get Free 
 ThinkGeek Gift Certificates! Click to find out more 
 http://productguide.itmanagersjournal.com/guidepromo.tmpl
 ___
 nant-developers mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/nant-developers
 
 
 
 


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers


[nant-dev] Internal error when unloading AppDomain after running a test case that uses System.DirectoryServices

2004-10-05 Thread Mårten Gustafson
Se bottom of mail for stack trace. 

Seems that at least one other person has this problem - 
http://weblogs.asp.net/mnissen/archive/2004/05/13/131061.aspx. My symptoms are the 
same, appears at random test runs, never occurs if I [Ignore] the fixture that 
contains the ActiveDirectory/System.DirectoryServices tests.

I'm not on the list, so reply directly to me if you have any questions.



Regards,
Mårten.



INTERNAL ERROR

System.CannotUnloadAppDomainException: AppDomain can not be unloaded because the 
thread e80 can not be unwound out of it
.
   at System.AppDomain.Unload(AppDomain domain)
   at NAnt.NUnit2.Tasks.NUnit2TestDomain.Unload() in C:\Documents and 
Settings\drieseng\Local Settings\Temp\tmp53E.tmp\s
rc\NAnt.NUnit\NUnit2\NUnit2TestDomain.cs:line 97
   at NAnt.NUnit2.Tasks.NUnit2Task.ExecuteTask() in C:\Documents and 
Settings\drieseng\Local Settings\Temp\tmp53E.tmp\sr
c\NAnt.NUnit\NUnit2\NUnit2Task.cs:line 241
   at NAnt.Core.Task.Execute() in C:\Documents and Settings\drieseng\Local 
Settings\Temp\tmp53E.tmp\src\NAnt.Core\Task.c
s:line 177
   at NAnt.Core.Target.Execute() in C:\Documents and Settings\drieseng\Local 
Settings\Temp\tmp53E.tmp\src\NAnt.Core\Targ
et.cs:line 249
   at NAnt.Core.Project.Execute(String targetName, Boolean forceDependencies) in 
C:\Documents and Settings\drieseng\Loca
l Settings\Temp\tmp53E.tmp\src\NAnt.Core\Project.cs:line 876
   at NAnt.Core.Project.Execute(String targetName) in C:\Documents and 
Settings\drieseng\Local Settings\Temp\tmp53E.tmp\
src\NAnt.Core\Project.cs:line 846
   at NAnt.Core.Tasks.CallTask.ExecuteTask() in C:\Documents and 
Settings\drieseng\Local Settings\Temp\tmp53E.tmp\src\NA
nt.Core\Tasks\CallTask.cs:line 110
   at NAnt.Core.Task.Execute() in C:\Documents and Settings\drieseng\Local 
Settings\Temp\tmp53E.tmp\src\NAnt.Core\Task.c
s:line 177
   at NAnt.Core.Target.Execute() in C:\Documents and Settings\drieseng\Local 
Settings\Temp\tmp53E.tmp\src\NAnt.Core\Targ
et.cs:line 249
   at NAnt.Core.Project.Execute(String targetName, Boolean forceDependencies) in 
C:\Documents and Settings\drieseng\Loca
l Settings\Temp\tmp53E.tmp\src\NAnt.Core\Project.cs:line 876
   at NAnt.Core.Project.Execute() in C:\Documents and Settings\drieseng\Local 
Settings\Temp\tmp53E.tmp\src\NAnt.Core\Pro
ject.cs:line 833
   at NAnt.Core.Project.Run() in C:\Documents and Settings\drieseng\Local 
Settings\Temp\tmp53E.tmp\src\NAnt.Core\Project
.cs:line 903

Please send bug report to [EMAIL PROTECTED]


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers


[nant-dev] Internal error with nunitreport?

2004-09-28 Thread Burton, Kevin
BUILD FAILED

I originally thought that this was due to the fact that my formatter with the 
nunit2 task was set to Plain. I changed all of my tests to an Xml formatter and 
I am still getting the following error. My task looks like:

nunitreport out=${build.dir}/results/TestSummary.html
fileset
include name=${build.dir}/results/*-results /
/fileset
/nunitreport

I looked at all of the -results and they are all XML. I am not sure what I am doing 
wrong.

Kevin

INTERNAL ERROR

System.Xml.XmlException: The data at the root level is invalid. Line 1, position 1.
   at System.Xml.XmlTextReader.ParseRoot()
   at System.Xml.XmlTextReader.Read()
   at System.Xml.XmlValidatingReader.ReadWithCollectTextToken()
   at System.Xml.XmlValidatingReader.Read()
   at System.Xml.XmlLoader.Load(XmlDocument doc, XmlReader reader, Boolean 
preserveWhitespace)
   at System.Xml.XmlDocument.Load(XmlReader reader)
   at System.Xml.XmlDocument.Load(String filename)
   at NAnt.Contrib.Tasks.NUnitReportTask.ExecuteTask() in C:\Documents and 
Settings\drieseng\Local Settings\Temp\tmp127.tmp\src\Tasks\NUnitReportTask.cs:line 125
   at NAnt.Core.Task.Execute() in C:\Documents and Settings\drieseng\Local 
Settings\Temp\tmp382.tmp\src\NAnt.Core\Task.cs:line 177
   at NAnt.Core.Target.Execute() in C:\Documents and Settings\drieseng\Local 
Settings\Temp\tmp382.tmp\src\NAnt.Core\Target.cs:line 249
   at NAnt.Core.Project.Execute(String targetName, Boolean forceDependencies) in 
C:\Documents and Settings\drieseng\Local 
Settings\Temp\tmp382.tmp\src\NAnt.Core\Project.cs:line 876
   at NAnt.Core.Project.Execute() in C:\Documents and Settings\drieseng\Local 
Settings\Temp\tmp382.tmp\src\NAnt.Core\Project.cs:line 833
   at NAnt.Core.Project.Run() in C:\Documents and Settings\drieseng\Local 
Settings\Temp\tmp382.tmp\src\NAnt.Core\Project.cs:line 902

Please send bug report to [EMAIL PROTECTED]

Total time: 1234.7 seconds.


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers


[nant-dev] INTERNAL ERROR regarding exec task

2004-08-05 Thread Go, Terry








Hi,



First of all, thanks for providing this fantastic tool for
.NET developers!



Ive got this error message when I pass the string, E:\Projects\Wsg\PrivateClient\Bernstein.com
B78.1\..\setupfiles\PCWebApp2Setup-v1.78.2.115.msi as program
attribute. (note that I put actual double quotes)







INTERNAL ERROR



System.ArgumentException: Illegal characters in path.

 at System.IO.Path.IsPathRooted(String path)

 at
NAnt.Core.Tasks.ExecTask.get_ProgramFileName()

 at NAnt.Core.Tasks.ExecTask.ExecuteTask()

 at NAnt.Core.Task.Execute()

 at NAnt.Core.Target.Execute()

 at NAnt.Core.Project.Execute(String targetName,
Boolean forceDependencies)

 at NAnt.Core.Project.Execute()

 at NAnt.Core.Project.Run()





Please send bug report to [EMAIL PROTECTED].





When I run this in the command prompt it works fine.

Could you have a look at this and fix?



Regards,



Terry



-The information contained in this transmission may contain privileged and confidential information and is intended only for the use of the person(s) named above. If you are not the intended recipient, or an employee or agent responsible for delivering this message to the intended recipient, any review, dissemination, distribution or duplication of this communication is strictly prohibited. If you are not the intended recipient, please contact the sender immediately by reply e-mail and destroy all copies of the original message. Please note that we do not accept account orders and/or instructions by e-mail, and therefore will not be responsible for carrying out such orders and/or instructions.If you, as the intended recipient of this message, the purpose of which is to inform and update our clients, prospects and consultants of developments relating to our services and products, would not like to receive further e-mail correspondence from the sender, please "reply" to the sender indicating your wishes.  In the U.S.: 1345 Avenue of the Americas, New York, NY 10105.




Re: [nant-dev] INTERNAL ERROR regarding exec task

2004-08-05 Thread Gert Driesen
Terry,

You don't need to provide actual double quotes for the program argument.
NAnt with automatically quote this for you.

Recent nightly builds (http://nant.sourceforge.net/nightly/builds) will
provide a more meaningful error message when you do specifiy quotes
yourselves.

Hope this helps,

Gert

- Original Message -
From: Go, Terry [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, August 04, 2004 10:58 PM
Subject: [nant-dev] INTERNAL ERROR regarding exec task


Hi,



First of all, thanks for providing this fantastic tool for .NET
developers!



I've got this error message when I pass the string,
E:\Projects\Wsg\PrivateClient\Bernstein.com
B78.1\..\setupfiles\PCWebApp2Setup-v1.78.2.115.msi as program
attribute. (note that I put actual double quotes)



INTERNAL ERROR



System.ArgumentException: Illegal characters in path.

   at System.IO.Path.IsPathRooted(String path)

   at NAnt.Core.Tasks.ExecTask.get_ProgramFileName()

   at NAnt.Core.Tasks.ExecTask.ExecuteTask()

   at NAnt.Core.Task.Execute()

   at NAnt.Core.Target.Execute()

   at NAnt.Core.Project.Execute(String targetName, Boolean
forceDependencies)

   at NAnt.Core.Project.Execute()

   at NAnt.Core.Project.Run()



Please send bug report to [EMAIL PROTECTED]



When I run this in the command prompt it works fine.

Could you have a look at this and fix?



Regards,



Terry


-
The information contained in this transmission may contain privileged and
confidential information and is intended only for the use of the person(s)
named above. If you are not the intended recipient, or an employee or agent
responsible for delivering this message to the intended recipient, any
review, dissemination, distribution or duplication of this communication is
strictly prohibited. If you are not the intended recipient, please contact
the sender immediately by reply e-mail and destroy all copies of the
original message. Please note that we do not accept account orders and/or
instructions by e-mail, and therefore will not be responsible for carrying
out such orders and/or instructions.
If you, as the intended recipient of this message, the purpose of which is
to inform and update our clients, prospects and consultants of developments
relating to our services and products, would not like to receive further
e-mail correspondence from the sender, please reply to the sender
indicating your wishes.  In the U.S.: 1345 Avenue of the Americas, New York,
NY 10105.




---
This SF.Net email is sponsored by OSTG. Have you noticed the changes on
Linux.com, ITManagersJournal and NewsForge in the past few weeks? Now,
one more big change to announce. We are now OSTG- Open Source Technology
Group. Come see the changes on the new OSTG site. www.ostg.com
___
nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers


RE: [nant-dev] INTERNAL ERROR regarding exec task

2004-08-05 Thread Troy Laurin





  
  
  From: 
  [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED] On Behalf Of Go, 
  TerrySent: Thursday, 5 August 2004 4:58 AM
  
  
  Hi,
  
  First of all, thanks for providing 
  this fantastic tool for .NET developers!
  
  Ive got this error message when I 
  pass the string, "E:\Projects\Wsg\PrivateClient\Bernstein.com 
  B78.1\..\setupfiles\PCWebApp2Setup-v1.78.2.115.msi" as program attribute. 
  (note that I put actual double quotes)
  
  
  INTERNAL 
  ERROR
  
  System.ArgumentException: Illegal 
  characters in path.
   at 
  System.IO.Path.IsPathRooted(String path)
   at 
  NAnt.Core.Tasks.ExecTask.get_ProgramFileName()
   at 
  NAnt.Core.Tasks.ExecTask.ExecuteTask()
   at 
  NAnt.Core.Task.Execute()
   at 
  NAnt.Core.Target.Execute()
   at 
  NAnt.Core.Project.Execute(String targetName, Boolean 
  forceDependencies)
   at 
  NAnt.Core.Project.Execute()
   at 
  NAnt.Core.Project.Run()
  
  
  Please 
  send bug report to [EMAIL PROTECTED].
  
  When I run this in the command 
  prompt it works fine.
  Could you have a look at this and 
  fix?
  
  Regards,
  
  Terry
Terry,

Quotes are not needed inany 
file attributes in NAnt. The attribute is correctly interpreted as 
referring to a single file/path, even if there are spaces in the 
path.

Does the build work correctly if 
you remove the quotes?


Also, I believe the recommended way 
of specifying the full path to the program to be executed isthrough a 
combination of program and basedir attributes:
exec 
program="PCWebApp2Setup-v1.78.2.115.msi"basedir="E:\Projects\Wsg\PrivateClient\Bernstein.com 
B78.1\..\setupfiles" /
I don't know if this contributes to 
the issue at all. If you only have the full path and program in a single 
property, you can separate them using the path::get-file-name and 
path::get-directory-name functions available in NAnt 0.85 and 
later.


Regards,

-- 
TroyDisclaimer Message:

This message contains confidential information and is intended only for the individual(s) named.  If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please immediately delete it and all copies of it from your system, destroy any hard copies of it, and notify the sender. E-mail transmission cannot be guaranteed to be secure or error-free as information could be intercepted, corrupted, lost, destroyed, arrive late or incomplete, or contain viruses. To the maximum extent permitted by law, Immersive Technologies Pty. Ltd. does not accept liability for any errors or omissions in the contents of this message which arise as a result of e-mail transmission. 


Re: [nant-dev] Internal Error

2004-07-25 Thread Gert Driesen
Erik,

We'd need a repro to find out what caused this issue, but I'd suggest trying
a recent nightly build (http://nant.sourceforge.net/nightly/builds) as lots
of issues have been fixed since the 0.84 release.

Gert

- Original Message -
From: Lindeblom, Erik [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Saturday, July 24, 2004 1:11 AM
Subject: [nant-dev] Internal Error


 Just trying out nAnt for the first time - and everything so far works
great
 except this one solution... :)

 The output of the error is in error.txt, and the solution file I
referenced
 is attached as well incase you can tell if something is hosed in the .sln
 file from looking at it.

 --
--
 ---
 State of Washington - Department of Social and Health Services
 Juvenile Rehabilitation Administration - Operations and Support Services
 Erik Lindeblom, Information Technology Application Specialist 5
 Phone: (360) 902-8357 CATSHelp: (360) 664-CATS / (360) 664-2287
 --
--
 ---

 When you can measure what you are speaking  about, and express it in
 numbers, you know something about it; but when you cannot express it in
 numbers, your knowledge is of a meager and unsatisfactory kind; it may be
 the beginning of knowledge, but you have scarcely in your thoughts
advanced
 to the state of science.
  -  Lord Kelvin (William Thomson)





---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=4721alloc_id=10040op=click
___
nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers


[nant-dev] Internal Error

2004-07-24 Thread Lindeblom, Erik



Just trying out nAnt 
for the first time - and everything so far works great except this one 
solution... :)

The output of the 
error is in error.txt, and the solution file I referenced is attached as well 
incase you can tell if something is hosed in the .sln file from looking at 
it.
--- 
State of Washington - Department of Social and Health 
Services Juvenile Rehabilitation Administration 
- Operations and Support Services Erik 
Lindeblom, Information Technology Application Specialist 
5Phone: (360) 
902-8357 CATSHelp: (360) 
664-CATS / (360) 664-2287 --- 

When you can measure what you are 
speaking about, and express it in numbers, you know something about it; but when you cannot 
express it in numbers, your knowledge is of a meager and unsatisfactory kind; it 
may be the beginning of knowledge, but you have scarcely in your thoughts advanced to 
the state of science.
- Lord Kelvin (William 
Thomson)

NAnt 0.84 (Build 0.84.1455.0; net-1.0.win32; release; 12/26/2003)
Copyright (C) 2001-2003 Gerry Shaw
http://nant.sourceforge.net

Buildfile: file:///C:/SRC/ITERATION_5/BusLogic.root/BusinessLogic/BusinessLogic.build
 [solution] Starting solution build.

BUILD FAILED

INTERNAL ERROR

System.NullReferenceException: Object reference not set to an instance of an object.
   at NAnt.VSNet.ProjectSettings..ctor(XmlElement elemRoot, XmlElement elemSettings, 
TempFileCollection tfc)
   at NAnt.VSNet.Project.Load(Solution sln, String projectPath)
   at NAnt.VSNet.ProjectFactory.LoadProject(Solution sln, SolutionTask slnTask, 
TempFileCollection tfc, String outputDir, String path)
   at NAnt.VSNet.Solution.LoadProjects()
   at NAnt.VSNet.Solution..ctor(String solutionFileName, ArrayList additionalProjects, 
ArrayList referenceProjects, TempFileCollection tfc, SolutionTask solutionTask, 
WebMapCollection webMappings, FileSet excludesProjects, String outputDir)
   at NAnt.VSNet.Tasks.SolutionTask.ExecuteTask()
   at NAnt.Core.Task.Execute()
   at NAnt.Core.Project.InitializeProjectDocument(XmlDocument doc)
   at NAnt.Core.Project.Execute()
   at NAnt.Core.Project.Run()

Please send bug report to [EMAIL PROTECTED]

Total time: 0.1 seconds.



BusinessLogic.sln
Description: Binary data


Re: [nant-dev] Internal error - bug report

2004-07-09 Thread Gert Driesen
Loads of solution task issues were fixed post 0.84, can you try using the
latest nightly build (http://nant.sourceforge.net/nightly/builds) ?

Thanks,

Gert

- Original Message -
From: Jahirul Islam [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, July 08, 2004 11:11 AM
Subject: [nant-dev] Internal error - bug report



 C:\CCNet\build\nant-0.84\bin\nant -buildfile:kmc.co.uk.build -debug go
 NAnt 0.84 (Build 0.84.1455.0; net-1.0.win32; release; 26/12/2003)
 Copyright (C) 2001-2003 Gerry Shaw
 http://nant.sourceforge.net http://nant.sourceforge.net

 Framework net-1.2 is invalid and has not been loaded : Framework directory
 C:\WI
 NNT\Microsoft.NET\Framework\v1.2.30703 does not exist.
 Framework netcf-1.0 is invalid and has not been loaded : Property
 'sdkInstallRoo
 t' has not been set.
 Framework mono-1.0 is invalid and has not been loaded : Property
 'sdkInstallRoot
 ' has not been set.
 Framework sscli-1.0 is invalid and has not been loaded : Framework
directory
 C:\
 sscli\build\v1.x86fstchk.rotor does not exist.
 Buildfile: file:///C:/CCNet/build/kmc.co.uk.build
 file:///C:/CCNet/build/kmc.co.uk.build
 Base Directory: C:\CCNet\build.
 Target(s) specified: go
 Build sequence for target `go' is compile, deploy, go
 Complete build sequence is compile, deploy, go, test

 compile:

  [solution] Starting solution build.
  [solution] Loading projects...
  [solution] Loading project 'c:\ccnet\build\kmc.co.uk\kmcweb.vbproj'.
  [solution] Project: kmcweb Relative Output Path: bin\ Output Path:
 c:\ccnet\bui
 ld\kmc.co.uk\bin\ Documentation Path:
  [solution] Project: kmcweb Relative Output Path: bin\ Output Path:
 c:\ccnet\bui
 ld\kmc.co.uk\bin\ Documentation Path:
  [solution] Cleaning up temp folder
 C:\DOCUME~1\jislam\LOCALS~1\Temp\2\vkwxe_ak.


 BUILD FAILED

 INTERNAL ERROR

 System.NullReferenceException: Object reference not set to an instance of
an
 obj
 ect.
at NAnt.VSNet.Reference..ctor(Solution solution, ProjectSettings ps,
 XmlElement elemReference, SolutionTask solutionTask, String outputDir)
at NAnt.VSNet.Project.Load(Solution sln, String projectPath)
at NAnt.VSNet.ProjectFactory.LoadProject(Solution sln, SolutionTask
 slnTask,TempFileCollection tfc, String outputDir, String path)
at NAnt.VSNet.Solution.LoadProjects()
at NAnt.VSNet.Solution..ctor(String solutionFileName, ArrayList
 additionalProjects, ArrayList referenceProjects, TempFileCollection tfc,
 SolutionTask solutionTask, WebMapCollection webMappings, FileSet
 excludesProjects, String outputDir)

at NAnt.VSNet.Tasks.SolutionTask.ExecuteTask()
at NAnt.Core.Task.Execute()
at NAnt.Core.Target.Execute()
at NAnt.Core.Project.Execute(String targetName, Boolean
 forceDependencies)
at NAnt.Core.Project.Execute()
at NAnt.Core.Project.Run()

 Please send bug report to [EMAIL PROTECTED]

 Total time: 0.3 seconds.


 C:\CCNet\build










 ---
 This SF.Net email sponsored by Black Hat Briefings  Training.
 Attend Black Hat Briefings  Training, Las Vegas July 24-29 -
 digital self defense, top technical experts, no vendor pitches,
 unmatched networking opportunities. Visit www.blackhat.com
 ___
 nant-developers mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/nant-developers




---
This SF.Net email sponsored by Black Hat Briefings  Training.
Attend Black Hat Briefings  Training, Las Vegas July 24-29 - 
digital self defense, top technical experts, no vendor pitches, 
unmatched networking opportunities. Visit www.blackhat.com
___
nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers


[nant-dev] internal error report

2004-05-17 Thread Chris Austin
Title: Message



 
processed dir: 
c:\builds\cffp.portal\debug\src\CFFP.Web.UI.Portal 
[exec] iisreset 10.44.159.185 /STOP

 
Attempting stop...

 
Internet services successfully stopped

 [delete] Deleting 2158 files and 185 
directories.

BUILD FAILED

INTERNAL ERROR

System.ArgumentException: Invalid File or Directory 
attributes value. at System.IO.File.SetAttributes(String path, 
FileAttributes fileAttributes) at 
NAnt.Core.Tasks.CopyTask.ExecuteTask() in 
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp122E.tmp\src\NAnt.Core\Tasks\CopyTask.cs:line 
314 at NAnt.Core.Task.Execute() in 
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp122E.tmp\src\NAnt.Core\Task.cs:line 
151 at NAnt.Core.Target.Execute() in 
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp122E.tmp\src\NAnt.Core\Target.cs:line 
253 at NAnt.Core.Project.Execute(String targetName, Boolean 
forceDependencies) 
inC:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp122E.tmp\src\NAnt.Core\Project.cs:line 
892 at NAnt.Core.Project.Execute() in 
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp122E.tmp\src\NAnt.Core\Project.cs:line 
849 at NAnt.Core.Project.Run() in 
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp122E.tmp\src\NAnt.Core\Project.cs:line 
917

Please send bug report to [EMAIL PROTECTED].

Total time: 355.5 seconds.

C:\builds\CFFP.Portal


[nant-dev] INTERNAL ERROR System.Net.WebException: The remote server returned an error: (404) Not Found.

2004-02-25 Thread Rob Gallo










nant /f:c:\SOLUTION\Nant.build

NAnt 0.84 (Build 0.84.1455.0; net-1.0.win32; release; 12/26/2003)

Copyright (C) 2001-2003 Gerry Shaw

http://nant.sourceforge.net



Buildfile: file:///c:/ SOLUTION/Nant.build

Target(s) specified: build



build:



 [echo] Build Release Version

[solution] Starting solution build.

[solution] Building PortalComponents [release]...

[solution] Building Portal [release]...


Read in 3 resources from 'C:\DOCUME~1\User\LOCALS~1\Temp\yrumnxju\http___localhost_Portal_

Portal.csproj\publicmedia.aspx.resx'


Writing resource file... Done.


Read in 3 resources from 'C:\DOCUME~1\User\LOCALS~1\Temp\yrumnxju\http___localhost_Portal_

Portal.csproj\PublicList.aspx.resx'


Writing resource file... Done.


Read in 3 resources from 'C:\DOCUME~1\User\LOCALS~1\Temp\yrumnxju\http___localhost_Portal_

Portal.csproj\Controls\SiteFooter.ascx.resx'


Writing
resource file... Done.


Read in 3 resources from 'C:\DOCUME~1\User\LOCALS~1\Temp\yrumnxju\http___localhost_Portal_

Portal.csproj\PublicPropertyNote.aspx.resx'


Writing resource file... Done.


Read in 3 resources from 'C:\DOCUME~1\User\LOCALS~1\Temp\yrumnxju\http___localhost_Portal_

Portal.csproj\PublicMailForm.aspx.resx'


Writing resource file... Done.


Read in 3 resources from 'C:\DOCUME~1\User\LOCALS~1\Temp\yrumnxju\http___localhost_Portal_

Portal.csproj\PublicError.aspx.resx'


Writing resource file... Done.


Read in 3 resources from 'C:\DOCUME~1\User\LOCALS~1\Temp\yrumnxju\http___localhost_Portal_

Portal.csproj\serror.aspx.resx'


Writing resource file... Done.


Read in 3 resources from 'C:\DOCUME~1\User\LOCALS~1\Temp\yrumnxju\http___localhost_Portal_

Portal.csproj\Controls\SiteHeader.ascx.resx'


Writing resource file... Done.


Read in 0 resources from 'C:\DOCUME~1\User\LOCALS~1\Temp\yrumnxju\http___localhost_Portal_

Portal.csproj\Templates\TemplateFunctions.ascx.resx'


Writing resource file... Done.


Read in 0 resources from 'C:\DOCUME~1\User\LOCALS~1\Temp\yrumnxju\http___localhost_Portal_

Portal.csproj\imageviewer.aspx.resx'


Writing resource file... Done.


Read in 3 resources from 'C:\DOCUME~1\User\LOCALS~1\Temp\yrumnxju\http___localhost_Portal_

Portal.csproj\Controls\LeftBranding.ascx.resx'


Writing resource file... Done.


Read in 0 resources from 'C:\DOCUME~1\User\LOCALS~1\Temp\yrumnxju\http___localhost_Portal_

Portal.csproj\Global.asax.resx'


Writing resource file... Done.


Read in 3 resources from 'C:\DOCUME~1\User\LOCALS~1\Temp\yrumnxju\http___localhost_Portal_

Portal.csproj\Default.aspx.resx'


Writing resource file... Done.


Read in 3 resources from 'C:\DOCUME~1\User\LOCALS~1\Temp\yrumnxju\http___localhost_Portal_

Portal.csproj\Controls\HomePage.ascx.resx'


Writing resource file... Done.


Read in 0 resources from 'C:\DOCUME~1\User\LOCALS~1\Temp\yrumnxju\http___localhost_Portal_

Portal.csproj\Controls\FormFields.ascx.resx'


Writing resource file... Done.


[compile] c:\Documents and Settings\User\Local Settings\Temp\yrumnxju\http___localhost_Portal_mp

oPortal.csproj\PublicList.aspx.cs(63,5): warning CS0168: The
variable 'searchID' is declared but never used


[compile] c:\Documents and Settings\User\Local Settings\Temp\yrumnxju\http___localhost_Portal_mp

oPortal.csproj\Controls\LeftBranding.ascx.cs(207,6): warning
CS0168: The variable 'ex' is declared but never used


[compile] c:\Documents and Settings\User\Local Settings\Temp\yrumnxju\http___localhost_Portal_mp

oPortal.csproj\Controls\SiteHeader.ascx.cs(37,5): warning
CS0168: The variable 'ex' is declared but never used


[compile] c:\Documents and Settings\User\Local Settings\Temp\yrumnxju\http___localhost_Portal_mp

oPortal.csproj\Global.asax.cs(60,6): warning CS0168: The
variable 'CookieEx' is declared but never used



BUILD FAILED



INTERNAL ERROR



System.Net.WebException: The remote server returned an
error: (404) Not Found.

 at System.Net.HttpWebRequest.CheckFinalStatus()

 at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult
asyncResult)

 at System.Net.HttpWebRequest.GetResponse()

 at NAnt.VSNet.WebDavClient.UploadFile(String localFileName,
String remoteFileName)

 at NAnt.VSNet.Project.Compile(String
configuration, ArrayList alCSCArguments, String strLogFile, Boolean bVerbose,
Bo

olean bShowCommands)

 at NAnt.VSNet.Solution.Compile(String
configuration, ArrayList compilerArguments, String logFile, Boolean verbose, Bo

olean showCommands)

 at NAnt.VSNet.Tasks.SolutionTask.ExecuteTask()

 at NAnt.Core.Task.Execute()

 at NAnt.Core.Target.Execute()

 at NAnt.Core.Project.Execute(String targetName,
Boolean forceDependencies)

 at NAnt.Core.Project.Execute()

 at NAnt.Core.Project.Run()



Please send bug report to
[EMAIL PROTECTED]



Total time: 6.2 seconds.








[nant-dev] Internal Error When Try To Create An MSI That Uses A Vdproj Fle

2004-02-25 Thread Ian Rowland
I am probably not the first person to discover this bug.

Please advise.

Regards,

Ian Rowland



NAnt 0.85 (Build 0.85.1503.0; net-1.0.win32; nightly; 12/02/2004)
Copyright (C) 2001-2004 Gerry Shaw
http://nant.sourceforge.net

Buildfile: file:///D:/i2/Development/Tools/NCover Viewer/NCoverViewer.build
Target(s) specified: Create_CLRProfiler_MSI

Create_CLRProfiler_MSI:

 [echo] Creating CLR Profiler Installer
 [solution] Starting solution build.
 [solution] Only C#, VB.NET and C++ projects are supported.  Skipping project 
'NCoverViewer\NCoverViewerSetup\NCoverViewerSetup.vdproj'.

BUILD FAILED

INTERNAL ERROR

System.NullReferenceException: Object reference not set to an instance of an object.
   at NAnt.VSNet.Reference..ctor(Solution solution, ProjectSettings ps, XmlElement 
elemReference, SolutionTask solutionTask, DirectoryInfo outputDir)
in C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp325.tmp\src\NAnt.VSNet\Reference.cs:line 154
   at NAnt.VSNet.Project.Load(Solution sln, String projectPath) in 
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp325.tmp\src\NAnt.VSNet\Project.cs:line 194
   at NAnt.VSNet.ProjectFactory.LoadProject(Solution sln, SolutionTask slnTask, 
TempFileCollection tfc, DirectoryInfo outputDir, String path) in C:\DO
CUME~1\ADMINI~1\LOCALS~1\Temp\tmp325.tmp\src\NAnt.VSNet\ProjectFactory.cs:line 70
   at NAnt.VSNet.Solution.LoadProjects() in 
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp325.tmp\src\NAnt.VSNet\Solution.cs:line 420
   at NAnt.VSNet.Solution..ctor(FileInfo solutionFile, ArrayList additionalProjects, 
ArrayList referenceProjects, TempFileCollection tfc, SolutionTask
 solutionTask, WebMapCollection webMappings, FileSet excludesProjects, DirectoryInfo 
outputDir) in C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp325.tmp\src\N
Ant.VSNet\Solution.cs:line 122
   at NAnt.VSNet.Tasks.SolutionTask.ExecuteTask() in 
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp325.tmp\src\NAnt.VSNet\Tasks\SolutionTask.cs:line
 330
   at NAnt.Core.Task.Execute() in 
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp325.tmp\src\NAnt.Core\Task.cs:line 151
   at NAnt.Core.Target.Execute() in 
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp325.tmp\src\NAnt.Core\Target.cs:line 217
   at NAnt.Core.Project.Execute(String targetName, Boolean forceDependencies) in 
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp325.tmp\src\NAnt.Core\Project.c
s:line 772
   at NAnt.Core.Project.Execute() in 
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp325.tmp\src\NAnt.Core\Project.cs:line 734
   at NAnt.Core.Project.Run() in 
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp325.tmp\src\NAnt.Core\Project.cs:line 797

Please send bug report to [EMAIL PROTECTED]

Total time: 0.2 seconds.


---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps  Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id56alloc_id438op=click
___
nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers


[nant-dev] Internal Error

2004-02-11 Thread Joe Mahlong



Hi,


Please help, I keep getting the message in the 
attached file and don't know what it means.

Please Help
Joe
__

E-mail Disclaimer and Company Information

http://www.absa.co.za/ABSA/EMail_Disclaimer




DMWEBAPP.log
Description: Binary data


[nant-dev] internal error

2004-01-25 Thread Alex Odintsov
Hi guys, 

First of all - THANK YOU for the great tool!

 

I'm using 20040118 build version (I believe it is 0.85)

 

We got tons of projects and I want to create properties with all project
names.

Unfortunately there is no list element, so I want to load projects from
xml file.

The result should look like this:

property name=project.A.file value=A/

property name=project.A.pvcs.dir value=PVCS:\archive\A

property name=project.A.type value=web /

property name=project.B.file value=B /

 

There are going to be 20 of these lines :-(

 

Anyway, I decided to learn how I can write tasks using your examples and
I came up with this code:

4TaskName(LoadProjects) _

5  Public Class LoadProjects

6  Inherits Task

7

8  Protected Overrides Sub ExecuteTask()

9For Each Item As System.Collections.DictionaryEntry In
Project.Properties

10  Log(Level.Info, LogPrefix + Item.Key.ToString + = +
Item.Value.ToString)

11Next

12  End Sub

13End Class

 

This task supposes to display all properties.

Here is the result:

 

NAnt 0.85 (Build 0.85.1447.0; net-1.0.win32; nightly; 12/18/2003)

Copyright (C) 2001-2004 Gerry Shaw

http://nant.sourceforge.net http://nant.sourceforge.net/ 

Buildfile: file:///C:/DEV03/dotNET/Build.Tools/Source/setup.xml

Target(s) specified: setup

[loadtasks] Loading tasks from assembly
'C:\DEV03\dotNET\Build.Tools\bin\CustomTasks.dll'.

 

setup:

 

  [EchoCap] OPS

[LoadProjects] nant.tasks.servicecontroller=True

[LoadProjects] nant.tasks.xmlpoke=True

[LoadProjects] nant.version=0.85.1447.0

[LoadProjects] startup.project=unknown

[LoadProjects] nant.tasks.unzip.location=c:\program
files\nant\bin\nant.ziptasks.dll

[LoadProjects] nant.tasks.al=True

[LoadProjects]
nant.project.buildfile=file:///C:/DEV03/dotNET/Build.Tools/Source/setup

---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers


Re: [nant-dev] internal error report

2004-01-25 Thread Gert Driesen
Kevin,

It would be great if you could indeed supply us with a zip file containing
the minimum set of files necessary to reproduce this issue ...

Thanks,

Gert

- Original Message - 
From: Kevin McIntire [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, January 21, 2004 7:47 PM
Subject: [nant-dev] internal error report


 I've got the following internal error when executing a
 solution task in my build file.

 It's the 12/26 build, XP pro, VisualStudio 7.1.3088,
 .NET 1.1.4322.  I'm trying to build a solution and am
 getting the null pointer exception.  I
 will be happy to provide solution or project files.  I
 browsed the stack trace, and ended up in
 VcProject.cs.Load() where I didn't see the correlation
 between the XML parsing and the project file mentioned
 in the log below.

 snip ---
 C:\dev\projects\cinea\strak\buildnant
 -D:release=1.0.0.0 -buildfile:strak.build build
 NAnt 0.84 (Build 0.84.1455.0; net-1.0.win32; release;
 12/26/2003)
 Copyright (C) 2001-2003 Gerry Shaw
 http://nant.sourceforge.net

 Buildfile:
 file:///C:/dev/projects/cinea/strak/build/strak.build
 Target(s) specified: build

 build:

  [solution] Starting solution build.
  [solution] Loading projects...
  [solution] Loading project

'C:\dev\projects\cinea\strak\solution\..\ws\dup\cinea.strak.ws.dup_classes\c
inea.strak.ws.dup_classes.csproj'.

 BUILD FAILED

 INTERNAL ERROR

 System.NullReferenceException: Object reference not
 set to an instance of an object.
at NAnt.VSNet.Reference..ctor(Solution solution,
 ProjectSettings ps,XmlElement elemReference,
 SolutionTask solutionTask, String outputDir)
at NAnt.VSNet.VcProject.Load(Solution sln, String
 projectPath)
at NAnt.VSNet.ProjectFactory.LoadProject(Solution
 sln, SolutionTask slnTask, TempFileCollection tfc,
 String outputDir, String path)
at NAnt.VSNet.Reference..ctor(Solution solution,
 ProjectSettings ps, XmlElement elemReference,
 SolutionTask solutionTask, String outputDir)
at NAnt.VSNet.Project.Load(Solution sln, String
 projectPath)
at NAnt.VSNet.ProjectFactory.LoadProject(Solution
 sln, SolutionTask slnTask, TempFileCollection tfc,
 String outputDir, String path)
at NAnt.VSNet.Solution.LoadProjects()
at NAnt.VSNet.Solution..ctor(String
 solutionFileName, ArrayList additionalProjects,
 ArrayList referenceProjects, TempFileCollection tfc,
 SolutionTask solutionTask, WebMapCollection
 webMappings, FileSet excludesProjects, String
 outputDir)

at NAnt.VSNet.Tasks.SolutionTask.ExecuteTask()
at NAnt.Core.Task.Execute()
at NAnt.Core.Target.Execute()
at NAnt.Core.Project.Execute(String targetName,
 Boolean forceDependencies)
at NAnt.Core.Project.Execute()
at NAnt.Core.Project.Run()

 Please send bug report to
 [EMAIL PROTECTED]

 Total time: 0.6 seconds.

 --- 
 /snip ---


 __
 Do you Yahoo!?
 Yahoo! Hotjobs: Enter the Signing Bonus Sweepstakes
 http://hotjobs.sweepstakes.yahoo.com/signingbonus


 ---
 The SF.Net email is sponsored by EclipseCon 2004
 Premiere Conference on Open Tools Development and Integration
 See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
 http://www.eclipsecon.org/osdn
 ___
 nant-developers mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/nant-developers





---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers


Re: [nant-dev] internal error

2004-01-25 Thread Gert Driesen
Alex,

I'm afraid I'm missing the point right here, could it be that the body of
your message is incomplete ?

Thanks,

Gert

- Original Message - 
From: Alex Odintsov [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, January 19, 2004 4:17 AM
Subject: [nant-dev] internal error


Hi guys,

First of all - THANK YOU for the great tool!



I'm using 20040118 build version (I believe it is 0.85)



We got tons of projects and I want to create properties with all project
names.

Unfortunately there is no list element, so I want to load projects from
xml file.

The result should look like this:

property name=project.A.file value=A/

property name=project.A.pvcs.dir value=PVCS:\archive\A

property name=project.A.type value=web /

property name=project.B.file value=B /



There are going to be 20 of these lines :-(



Anyway, I decided to learn how I can write tasks using your examples and
I came up with this code:

4TaskName(LoadProjects) _

5  Public Class LoadProjects

6  Inherits Task

7

8  Protected Overrides Sub ExecuteTask()

9For Each Item As System.Collections.DictionaryEntry In
Project.Properties

10  Log(Level.Info, LogPrefix + Item.Key.ToString + = +
Item.Value.ToString)

11Next

12  End Sub

13End Class



This task supposes to display all properties.

Here is the result:



NAnt 0.85 (Build 0.85.1447.0; net-1.0.win32; nightly; 12/18/2003)

Copyright (C) 2001-2004 Gerry Shaw

http://nant.sourceforge.net http://nant.sourceforge.net/

Buildfile: file:///C:/DEV03/dotNET/Build.Tools/Source/setup.xml

Target(s) specified: setup

[loadtasks] Loading tasks from assembly
'C:\DEV03\dotNET\Build.Tools\bin\CustomTasks.dll'.



setup:



  [EchoCap] OPS

[LoadProjects] nant.tasks.servicecontroller=True

[LoadProjects] nant.tasks.xmlpoke=True

[LoadProjects] nant.version=0.85.1447.0

[LoadProjects] startup.project=unknown

[LoadProjects] nant.tasks.unzip.location=c:\program
files\nant\bin\nant.ziptasks.dll

[LoadProjects] nant.tasks.al=True

[LoadProjects]
nant.project.buildfile=file:///C:/DEV03/dotNET/Build.Tools/Source/setup

---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers



---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers


[nant-dev] Internal Error while building solution

2004-01-14 Thread Victor Boctor
Hi all,

any ideas about the internal error below?

 [solution] Building EmployeeUt [release]...

BUILD FAILED

INTERNAL ERROR

System.ArgumentException: Invalid File or Directory attributes
value
.
   at System.IO.File.SetAttributes(String path, FileAttributes
fileAttributes)
   at NAnt.Core.Tasks.CopyTask.ExecuteTask()
   at NAnt.Core.Task.Execute()
   at NAnt.VSNet.Project.Compile(String configuration, ArrayList
alCSCArguments,
 String strLogFile, Boolean bVerbose, Boolean bShowCommands)
   at NAnt.VSNet.Solution.Compile(String configuration, ArrayList
compilerArgume
nts, String logFile, Boolean verbose, Boolean showCommands)
   at NAnt.VSNet.Tasks.SolutionTask.ExecuteTask()
   at NAnt.Core.Task.Execute()
   at NAnt.Core.Target.Execute()
   at NAnt.Core.Project.Execute(String targetName)
   at NAnt.Core.Tasks.CallTask.ExecuteTask()
   at NAnt.Core.Task.Execute()
   at NAnt.Core.Target.Execute()
   at NAnt.Core.Project.Execute(String targetName)
   at NAnt.Core.Tasks.CallTask.ExecuteTask()
   at NAnt.Core.Task.Execute()
   at NAnt.Core.TaskContainer.ExecuteChildTasks()
   at NAnt.Core.Tasks.LoopTask.ExecuteChildTasks()
   at NAnt.Core.Tasks.LoopTask.DoWork(String[] propVals)
   at NAnt.Core.Tasks.LoopTask.ExecuteTask()
   at NAnt.Core.Task.Execute()
   at NAnt.Core.Target.Execute()
   at NAnt.Core.Project.Execute(String targetName)
   at NAnt.Core.Project.Execute()
   at NAnt.Core.Project.Run()

Please send bug report to [EMAIL PROTECTED]


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers


[nant-dev] INTERNAL ERROR

2003-10-28 Thread Dmitriy Bezugliy



In nant.build 


record name="${root.dir}\Release.log" action="Start" autoflush="false" level="2"/
 BUILD 
FAILED 
 INTERNAL 
ERROR 
 
System.Runtime.Serialization.SerializationException: The type 
NAnt.Contrib.Util.FileLogListener in Assembly NAnt.Contrib.Tasks, 
Version=0.1.0.0, Culture=neutral, PublicKeyToken=null is not marked as 
serializable.

Server stack trace:  at 
System.Runtime.Serialization.FormatterServices.InternalGetSerializableMembers(RuntimeType 
type, Boolean excludeNonSerializable) at 
System.Runtime.Serialization.FormatterServices.GetSerializableMembers(Type type, 
StreamingContext context) at 
System.Runtime.Serialization.Formatters.Binary.WriteObjectInfo.InitMemberInfo() 
at 
System.Runtime.Serialization.Formatters.Binary.WriteObjectInfo.InitSerialize(Object 
obj, ISurrogateSelector surrogateSelector, StreamingContext context, 
SerObjectInfoInit serObjectInfoInit, IFormatterConverter 
converter) at 
System.Runtime.Serialization.Formatters.Binary.WriteObjectInfo.Serialize(Object 
obj, ISurrogateSelector surrogateSelector, StreamingContext context, 
SerObjectInfoInit serObjectInfoInit, IFormatterConverter 
converter) at 
System.Runtime.Serialization.Formatters.Binary.ObjectWriter.Write(WriteObjectInfo 
objectInfo, NameInfo memberNameInfo, NameInfo typeNameInfo) at 
System.Runtime.Serialization.Formatters.Binary.ObjectWriter.Serialize(Object 
graph, Header[] inHeaders, __BinaryWriter serWriter, Boolean 
fCheck) at 
System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.Serialize(Stream 
serializationStream, Object graph, Header[] headers, Boolean 
fCheck) at 
System.Runtime.Remoting.Channels.CrossAppDomainSerializer.SerializeMessageParts(ArrayList 
argsToSerialize) at 
System.Runtime.Remoting.Messaging.SmuggledMethodCallMessage..ctor(IMethodCallMessage 
mcm) at 
System.Runtime.Remoting.Messaging.SmuggledMethodCallMessage.SmuggleIfPossible(IMessage 
msg) at 
System.Runtime.Remoting.Channels.CrossAppDomainSink.SyncProcessMessage(IMessage 
reqMsg)

Exception rethrown at [0]:  at 
System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, 
IMessage retMsg) at 
System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData 
msgData, Int32 type) at 
NAnt.DotNet.Tasks.LicenseGatherer.CreateLicenseFile(LicenseTask licenseTask, 
String licenseFile) in 
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp8BE.tmp\src\NAnt.DotNet\Tasks\LicenseTask.cs:line 
190 at NAnt.DotNet.Tasks.LicenseTask.ExecuteTask() in 
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp8BE.tmp\src\NAnt.DotNet\Tasks\LicenseTask.cs:line 
171 at NAnt.Core.Task.Execute() in 
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp8BE.tmp\src\NAnt.Core\Task.cs:line 
151 at NAnt.VSNet.Resource.CompileLicx() in 
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp8BE.tmp\src\NAnt.VSNet\Resource.cs:line 
235 at NAnt.VSNet.Resource.Compile(ConfigurationSettings 
configurationSettings, Boolean showCommands) in 
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp8BE.tmp\src\NAnt.VSNet\Resource.cs:line 
74 at NAnt.VSNet.Project.Compile(String configuration, ArrayList 
alCSCArguments, String strLogFile, Boolean bVerbose, Boolean bShowCommands) in 
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp8BE.tmp\src\NAnt.VSNet\Project.cs:line 
311 at NAnt.VSNet.Solution.Compile(String configuration, 
ArrayList compilerArguments, String logFile, Boolean verbose, Boolean 
showCommands) in 
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp8BE.tmp\src\NAnt.VSNet\Solution.cs:line 
248 at NAnt.VSNet.Tasks.SolutionTask.ExecuteTask() in 
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp8BE.tmp\src\NAnt.VSNet\Tasks\SolutionTask.cs:line 
293 at NAnt.Core.Task.Execute() in 
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp8BE.tmp\src\NAnt.Core\Task.cs:line 
151 at NAnt.Core.Target.Execute() in 
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp8BE.tmp\src\NAnt.Core\Target.cs:line 
207 at NAnt.Core.Project.Execute(String targetName) in 
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp8BE.tmp\src\NAnt.Core\Project.cs:line 
753 at NAnt.Core.Project.Execute() in 
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp8BE.tmp\src\NAnt.Core\Project.cs:line 
729 at NAnt.Core.Project.Run() in 
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp8BE.tmp\src\NAnt.Core\Project.cs:line 
778 
 Please 
send bug report to [EMAIL PROTECTED].


[nant-dev] Internal error building

2003-10-28 Thread Nicklas Norling
Hi all.

While attempting to build a solution:

C:\Harv\Build\src\fndwin\frameworknant -k:net-1.1 -f:Framework.build
-l:log.log -debug -verbose debug

I get an internal build error:

BUILD FAILED

INTERNAL ERROR

System.NullReferenceException: Object reference not set to an instance of an
object.
   at NAnt.VSNet.ProjectFactory.LoadProject(Solution sln, SolutionTask
slnTask, TempFileCollection t
fc, String outputDir, String path) in
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp3D6.tmp\src\NAnt.VSNet\P
rojectFactory.cs:line 47


This is using build 031021, also tested a few other and got the same
result.

I'm attaching the log and solution file compressed.
More information available upon request.

/Nicklas Norling



Log.zip
Description: Binary data


[nant-dev] Internal error with nant using Visual Studio .NET 2003: Could n ot find a part of the path C:\DOCUME~1\ththomas\LOCALS~1\Temp\9rzsshgh.

2003-10-28 Thread Thomas, Tim L. (Semy)
I am attempting to use nant with Visual Studio 2003 and am having disastrous
results.
Does nant 0.8.3 work at all with Visual Studio 2003?

The error I am getting is:


==
NAnt version 0.8.3 Copyright (C) 2001-2003 Gerry Shaw
http://nant.sourceforge.net

Buildfile: file:///x:xxx.build [Need to conceal actual path name due to
current internal project status]
init-Debug:

init:

   [tstamp] Friday, October 24, 2003 5:25:34 PM.

compile:

 [solution] Starting solution build.
Total time: 0 seconds.

BUILD FAILED

INTERNAL ERROR

System.IO.DirectoryNotFoundException: Could not find a part of the path
C:\DOCU
ME~1\ththomas\LOCALS~1\Temp\9rzsshgh.
   at System.IO.__Error.WinIOError(Int32 errorCode, String str)
   at System.IO.Directory.DeleteHelper(String fullPath, String userPath,
Boolean
 recursive)
   at System.IO.Directory.Delete(String fullPath, String userPath, Boolean
recur
sive)
   at NAnt.VSNet.Tasks.SolutionTask.ExecuteTask()
   at NAnt.Core.Task.Execute()
   at NAnt.Core.Target.Execute()
   at NAnt.Core.Project.Execute(String targetName)
   at NAnt.Core.Project.Execute()
   at NAnt.Core.Project.Run()

Please send bug report to [EMAIL PROTECTED]


===

I have no idea what is going on here.  Enclosed is the build file I am
using.  It is quite simple.
This is a prototype build file that I am developing for all our
developers.  However, since I cannot
get even the simplest operations to work in nant our usage of this tool is
in severe jeopardy.
I have tried this both from a standard command prompt window and also from
the Visual Studio .NET
command prompt window.  I get the same results.

HELP!!



?xml version=1.0 encoding=utf-8?

project default=compile name=Logging
  property name=debug value=true /
  property name=project.name  value=$(nant.project.name).csproj /
  
  target name=init description=Initialize properties for the build
depends=init-Debug,init-Release
tstamp /
  /target

  target name=init-Debug if=${debug}
property name=project.config value=Debug /
  /target

  target name=init-Release unless=${debug}
property name=project.config value=Release /
  /target

  target name=compile description=Compile project depends=init
solution configuration=$(project.config)
  projects
includes name=$(project.name) /
  /projects
/solution
  /target

  target name=install description=Install targets depends=compile
  /target

  target name=clean depends=init description=Delete compiled targets
  /target

/project

=

Tim Thomas


---
This SF.net email is sponsored by: The SF.net Donation Program.
Do you like what SourceForge.net is doing for the Open
Source Community?  Make a contribution, and help us add new
features and functionality. Click here: http://sourceforge.net/donate/
___
nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers


Re: [nant-dev] Internal error with nant using Visual Studio .NET 2003: Could n ot find a part of the path C:\DOCUME~1\ththomas\LOCALS~1\Temp\9rzsshgh.

2003-10-28 Thread Gert Driesen
I'm pretty sure this issue was fixed post 0.8.3, so you might have better
luck using one of the latest nightly builds
(http://nant.sourceforge.net/nightly/builds)

Hope this helps,

Gert

- Original Message - 
From: Thomas, Tim L. (Semy) [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Cc: White, Margot [EMAIL PROTECTED]
Sent: Saturday, October 25, 2003 1:35 AM
Subject: [nant-dev] Internal error with nant using Visual Studio .NET 2003:
Could n ot find a part of the path
C:\DOCUME~1\ththomas\LOCALS~1\Temp\9rzsshgh.


 I am attempting to use nant with Visual Studio 2003 and am having
disastrous
 results.
 Does nant 0.8.3 work at all with Visual Studio 2003?

 The error I am getting is:



 ==
 NAnt version 0.8.3 Copyright (C) 2001-2003 Gerry Shaw
 http://nant.sourceforge.net

 Buildfile: file:///x:xxx.build [Need to conceal actual path name due to
 current internal project status]
 init-Debug:

 init:

[tstamp] Friday, October 24, 2003 5:25:34 PM.

 compile:

  [solution] Starting solution build.
 Total time: 0 seconds.

 BUILD FAILED

 INTERNAL ERROR

 System.IO.DirectoryNotFoundException: Could not find a part of the path
 C:\DOCU
 ME~1\ththomas\LOCALS~1\Temp\9rzsshgh.
at System.IO.__Error.WinIOError(Int32 errorCode, String str)
at System.IO.Directory.DeleteHelper(String fullPath, String userPath,
 Boolean
  recursive)
at System.IO.Directory.Delete(String fullPath, String userPath, Boolean
 recur
 sive)
at NAnt.VSNet.Tasks.SolutionTask.ExecuteTask()
at NAnt.Core.Task.Execute()
at NAnt.Core.Target.Execute()
at NAnt.Core.Project.Execute(String targetName)
at NAnt.Core.Project.Execute()
at NAnt.Core.Project.Run()

 Please send bug report to [EMAIL PROTECTED]



 ===

 I have no idea what is going on here.  Enclosed is the build file I am
 using.  It is quite simple.
 This is a prototype build file that I am developing for all our
 developers.  However, since I cannot
 get even the simplest operations to work in nant our usage of this tool is
 in severe jeopardy.
 I have tried this both from a standard command prompt window and also from
 the Visual Studio .NET
 command prompt window.  I get the same results.

 HELP!!



 
 ?xml version=1.0 encoding=utf-8?

 project default=compile name=Logging
   property name=debug value=true /
   property name=project.name  value=$(nant.project.name).csproj /

   target name=init description=Initialize properties for the build
 depends=init-Debug,init-Release
 tstamp /
   /target

   target name=init-Debug if=${debug}
 property name=project.config value=Debug /
   /target

   target name=init-Release unless=${debug}
 property name=project.config value=Release /
   /target

   target name=compile description=Compile project depends=init
 solution configuration=$(project.config)
   projects
 includes name=$(project.name) /
   /projects
 /solution
   /target

   target name=install description=Install targets depends=compile
   /target

   target name=clean depends=init description=Delete compiled
targets
   /target

 /project


 =

 Tim Thomas


 ---
 This SF.net email is sponsored by: The SF.net Donation Program.
 Do you like what SourceForge.net is doing for the Open
 Source Community?  Make a contribution, and help us add new
 features and functionality. Click here: http://sourceforge.net/donate/
 ___
 nant-developers mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/nant-developers





---
This SF.net email is sponsored by: The SF.net Donation Program.
Do you like what SourceForge.net is doing for the Open
Source Community?  Make a contribution, and help us add new
features and functionality. Click here: http://sourceforge.net/donate/
___
nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers


Re: [nant-dev] INTERNAL ERROR

2003-10-28 Thread Gert Driesen
This should have been fixed in one of the recent nightly builds of
NAntContrib

However, very recent nightly builds of NantContrib failed because of changes
to the NAnt documenter, but these should be fixed soon ...

Thanks,

Gert

- Original Message - 
From: Dmitriy Bezugliy [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, October 21, 2003 9:32 AM
Subject: [nant-dev] INTERNAL ERROR


 In nant.build
 record name=${root.dir}\Release.log action=Start autoflush=false
 level=2/

 BUILD FAILED

 INTERNAL ERROR

 System.Runtime.Serialization.SerializationException: The type
 NAnt.Contrib.Util.FileLogListener in Assembly NAnt.Contrib.Tasks,
 Version=0.1.0.0, Culture=neutral, PublicKeyToken=null is not marked as
 serializable.

 Server stack trace:
at

System.Runtime.Serialization.FormatterServices.InternalGetSerializableMember
 s(RuntimeType type, Boolean excludeNonSerializable)
at
 System.Runtime.Serialization.FormatterServices.GetSerializableMembers(Type
 type, StreamingContext context)
at

System.Runtime.Serialization.Formatters.Binary.WriteObjectInfo.InitMemberInf
 o()
at

System.Runtime.Serialization.Formatters.Binary.WriteObjectInfo.InitSerialize
 (Object obj, ISurrogateSelector surrogateSelector, StreamingContext
context,
 SerObjectInfoInit serObjectInfoInit, IFormatterConverter converter)
at

System.Runtime.Serialization.Formatters.Binary.WriteObjectInfo.Serialize(Obj
 ect obj, ISurrogateSelector surrogateSelector, StreamingContext context,
 SerObjectInfoInit serObjectInfoInit, IFormatterConverter converter)
at

System.Runtime.Serialization.Formatters.Binary.ObjectWriter.Write(WriteObjec
 tInfo objectInfo, NameInfo memberNameInfo, NameInfo typeNameInfo)
at

System.Runtime.Serialization.Formatters.Binary.ObjectWriter.Serialize(Object
 graph, Header[] inHeaders, __BinaryWriter serWriter, Boolean fCheck)
at

System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.Serialize(Str
 eam serializationStream, Object graph, Header[] headers, Boolean fCheck)
at

System.Runtime.Remoting.Channels.CrossAppDomainSerializer.SerializeMessagePa
 rts(ArrayList argsToSerialize)
at

System.Runtime.Remoting.Messaging.SmuggledMethodCallMessage..ctor(IMethodCal
 lMessage mcm)
at

System.Runtime.Remoting.Messaging.SmuggledMethodCallMessage.SmuggleIfPossibl
 e(IMessage msg)
at

System.Runtime.Remoting.Channels.CrossAppDomainSink.SyncProcessMessage(IMess
 age reqMsg)

 Exception rethrown at [0]:
at
System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage
 reqMsg, IMessage retMsg)
at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData
 msgData, Int32 type)
at NAnt.DotNet.Tasks.LicenseGatherer.CreateLicenseFile(LicenseTask
 licenseTask, String licenseFile) in

C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp8BE.tmp\src\NAnt.DotNet\Tasks\LicenseT
 ask.cs:line 190
at NAnt.DotNet.Tasks.LicenseTask.ExecuteTask() in

C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp8BE.tmp\src\NAnt.DotNet\Tasks\LicenseT
 ask.cs:line 171
at NAnt.Core.Task.Execute() in
 C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp8BE.tmp\src\NAnt.Core\Task.cs:line
151
at NAnt.VSNet.Resource.CompileLicx() in

C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp8BE.tmp\src\NAnt.VSNet\Resource.cs:lin
 e 235
at NAnt.VSNet.Resource.Compile(ConfigurationSettings
 configurationSettings, Boolean showCommands) in

C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp8BE.tmp\src\NAnt.VSNet\Resource.cs:lin
 e 74
at NAnt.VSNet.Project.Compile(String configuration, ArrayList
 alCSCArguments, String strLogFile, Boolean bVerbose, Boolean
bShowCommands)
 in

C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp8BE.tmp\src\NAnt.VSNet\Project.cs:line
 311
at NAnt.VSNet.Solution.Compile(String configuration, ArrayList
 compilerArguments, String logFile, Boolean verbose, Boolean showCommands)
in

C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp8BE.tmp\src\NAnt.VSNet\Solution.cs:lin
 e 248
at NAnt.VSNet.Tasks.SolutionTask.ExecuteTask() in

C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp8BE.tmp\src\NAnt.VSNet\Tasks\SolutionT
 ask.cs:line 293
at NAnt.Core.Task.Execute() in
 C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp8BE.tmp\src\NAnt.Core\Task.cs:line
151
at NAnt.Core.Target.Execute() in
 C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp8BE.tmp\src\NAnt.Core\Target.cs:line
 207
at NAnt.Core.Project.Execute(String targetName) in

C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp8BE.tmp\src\NAnt.Core\Project.cs:line
 753
at NAnt.Core.Project.Execute() in

C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp8BE.tmp\src\NAnt.Core\Project.cs:line
 729
at NAnt.Core.Project.Run() in

C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp8BE.tmp\src\NAnt.Core\Project.cs:line
 778

 Please send bug report to
[EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] .





---
This SF.net email is sponsored by: The SF.net Donation Program.
Do you like what SourceForge.net is doing for the Open
Source Community

[nant-dev] Internal Error.

2003-10-08 Thread HUTIN Miguel

This error arrive when I'm try to compile Solution than used C# and
J# project.

INTERNAL ERROR

System.Exception: Couldn't find referenced assembly: C:\WINNT\Microsoft
Visual J
Sharp .NET\Framework\v1.0.4205\vjslib.dll
   at NAnt.VSNet.Tasks.Reference.GetReferenceFiles(ConfigurationSettings cs)
   at NAnt.VSNet.Tasks.Project.Compile(String strConfiguration, ArrayList
alCSCA
rguments, String strLogFile, Boolean bVerbose, Boolean bShowCommands)
   at NAnt.VSNet.Tasks.Solution.Compile(String strConfiguration, ArrayList
alCSC
Arguments, String strLogFile, Boolean bVerbose, Boolean bShowCommands)
   at NAnt.VSNet.Tasks.SolutionTask.ExecuteTask()
   at NAnt.Core.Task.Execute()
   at NAnt.Core.Target.Execute()
   at NAnt.Core.Target.Execute()
   at NAnt.Core.Project.Execute(String targetName)
   at NAnt.Core.Project.Execute()
   at NAnt.Core.Project.Run()

Please send bug report to 


-- Ce message et tous les fichiers
qui y sont attachs contiennent des informations confidentielles,
exclusivement destines  la personne  laquelle elles sont adresses. Dans
lhypothse o ce message ne vous serait pas destin, nous vous remercions
de le retourner immdiatement  son metteur et de le supprimer. La
publication, la distribution, limpression ou tout autre usage non autoris
de ce message est strictement interdit. Les ides et opinions contenues dans
ce message sont celles de son auteur et ne reprsentent pas ncessairement
celles du Groupe Sage.


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


[nant-dev] Internal error on fail task

2003-08-14 Thread Horn, Julian
I got the following internal error from NAnt.  It asked
to phone home, so here's the message.
My build file was executing this task at the time:

fail message=No assemblies to NDoc if=${nothingtodoc} /

I am running NAnt-0.8.3-rc1, using the dowloaded distribution.
I am using the distribution binaries; I have not rebuilt it.
Looks to me like it can't find the fail task code.

Julian Horn

INTERNAL ERROR

System.NotSupportedException: The given path's format is not supported.
   at System.Security.Util.StringExpressionSet.CanonicalizePath(String path, Boolean 
needFullPath)
   at System.Security.Util.StringExpressionSet.AddExpressions(String[] str, Boolean 
checkForDuplicates, Boolean needFullPath)
   at System.Security.Permissions.FileIOPermission.AddPathList(FileIOPermissionAccess 
access, String[] pathListOrig, Boolean checkForDuplicates, Boolean needFullPath, 
Boolean copyPathList)
   at System.Security.Permissions.FileIOPermission..ctor(FileIOPermissionAccess 
access, String[] pathList, Boolean checkForDuplicates, Boolean needFullPath)
   at System.IO.Path.GetFullPath(String path)
   at NAnt.Core.Project.GetFullPath(String path)
   at NAnt.Core.Tasks.AvailableTask.CheckFile()
   at NAnt.Core.Tasks.AvailableTask.Evaluate()
   at NAnt.Core.Tasks.AvailableTask.ExecuteTask()
   at NAnt.Core.Task.Execute()
   at NAnt.Core.TaskContainer.ExecuteChildTasks()
   at NAnt.Core.Tasks.LoopTask.ExecuteChildTasks()
   at NAnt.Core.Tasks.LoopTask.DoWork(String[] propVals)
   at NAnt.Core.Tasks.LoopTask.ExecuteTask()
   at NAnt.Core.Task.Execute()
   at NAnt.Core.Target.Execute()
   at NAnt.Core.Target.Execute()
   at NAnt.Core.Project.Execute(String targetName)
   at NAnt.Core.Project.Execute()
   at NAnt.Core.Project.Run()

Please send bug report to .



---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers


[nant-dev] INTERNAL ERROR

2003-01-24 Thread Phil Winstanley
C:\Program Files\NAnt\binnant -buildfile: file:///C:/Program
Files/NAnt/NAnt.bu
ild
INTERNAL ERROR
System.UriFormatException: Invalid URI: The URI is empty.
   at System.Uri..ctor(String uriString, Boolean dontEscape)
   at System.Uri..ctor(String uriString)
   at SourceForge.NAnt.Project..ctor(String source)
   at SourceForge.NAnt.NAnt.Main(String[] args)

Please send bug report to [EMAIL PROTECTED]


---
This SF.NET email is sponsored by:
SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See!
http://www.vasoftware.com
___
Nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers



[nant-dev] Internal Error building NAntContrib

2002-12-11 Thread Greiner, Andrew
INTERNAL ERROR
System.MethodAccessException:
SourceForge.NAnt.TaskFactory.AddTasks(System.Reflection.Assembly)
   at NAnt.Contrib.Tasks.TaskDefTask.ExecuteTask()
   at SourceForge.NAnt.Task.Execute()
   at SourceForge.NAnt.Target.Execute()
   at SourceForge.NAnt.Target.Execute()
   at SourceForge.NAnt.Project.Execute(String targetName)
   at SourceForge.NAnt.Tasks.CallTask.ExecuteTask()
   at SourceForge.NAnt.Task.Execute()
   at SourceForge.NAnt.Target.Execute()
   at SourceForge.NAnt.Project.Execute(String targetName)
   at SourceForge.NAnt.Project.Execute()
   at SourceForge.NAnt.Project.Run()




---
This sf.net email is sponsored by:
With Great Power, Comes Great Responsibility 
Learn to use your power at OSDN's High Performance Computing Channel
http://hpc.devchannel.org/
___
Nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers



[nant-dev] Internal Error

2002-06-06 Thread Scott Densmore
Title: Message



This is my first 
shot at using Nant so be warned I could have done something really 
wrong.

I am trying to use 
the resgen task... I have attached the build file and here is the error that was 
output into the console...
I would not doubt if 
I have more errors so any help would be appreciated.

C:\RVS\Frameworknant 
-verboseBuildfile: file:///C:/RVS/Framework/Framework.buildBase 
Directory: C:\RVS\Framework

build:
INTERNAL ERRORSystem.ArgumentNullException: Value cannot be 
null.Parameter name: path2 at System.IO.Path.Combine(String 
path1, String path2) at 
SourceForge.NAnt.Tasks.ResGenTask.NeedsCompiling() at 
SourceForge.NAnt.Tasks.ResGenTask.ExecuteTask() at 
SourceForge.NAnt.Task.Execute() at 
SourceForge.NAnt.Target.Execute() at 
SourceForge.NAnt.Project.Execute(String targetName) at 
SourceForge.NAnt.Project.Execute() at 
SourceForge.NAnt.Project.Run()
Please send bug report to [EMAIL PROTECTED]Try 
'nant -help' for more information

thanks,
scott


Framework.build
Description: Binary data


RE: [nant-dev] Internal Error

2002-06-06 Thread JT Perry
Title: Message









The resgen as currently written will not
support what you are trying to do. In fact using a fileset at all has
bugs within resgen (the NeedsCompiling routine).



I have adjusted the resgen task, added a prepend
property (to prepend the full namespace declaration (RVS.Framework) in your
case), and it handles looping through multiple resources like a standard fileset.



I am currently testing it, and cleaning it
up (real hackish right now, but needed a quick  dirty for my work
project), but I will gladly email it if you would like. But even it has
its limitations. When I get time, someday ;-), there could be an argument
for a special sub class of fileset to handle resources.



Using the current resgen, if you only have
the two resources you can do the following:

resgen input=Framework.resx
output= RVS.Framework.Framework.resources/

resgen input=Framework.resx
output=RVS.Framework.Framework.en.resources/



(two separate calls to the task)



JT



-Original Message-
From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]] On Behalf Of Scott Densmore
Sent: Thursday, June 06, 2002 6:30
AM
To:
[EMAIL PROTECTED]
Subject: [nant-dev] Internal Error





This is my first shot at using Nant
so be warned I could have done something really wrong.











I am trying to use the resgen
task... I have attached the build file and here is the error that was output
into the console...





I would not doubt if I have more
errors so any help would be appreciated.











C:\RVS\Frameworknant
-verbose
Buildfile: file:///C:/RVS/Framework/Framework.build
Base Directory: C:\RVS\Framework





build:

INTERNAL ERROR
System.ArgumentNullException: Value cannot be null.
Parameter name: path2
 at System.IO.Path.Combine(String path1, String path2)
 at SourceForge.NAnt.Tasks.ResGenTask.NeedsCompiling()
 at SourceForge.NAnt.Tasks.ResGenTask.ExecuteTask()
 at SourceForge.NAnt.Task.Execute()
 at SourceForge.NAnt.Target.Execute()
 at SourceForge.NAnt.Project.Execute(String targetName)
 at SourceForge.NAnt.Project.Execute()
 at SourceForge.NAnt.Project.Run()

Please send bug report
to [EMAIL PROTECTED]
Try 'nant -help' for more information









thanks,

scott