[nant-dev] al task on Linux

2004-04-24 Thread Giuseppe Greco
Hi all,

I'm trying to create a satellite assembly with a task
like this:

  al
target=lib
output=${build.dir}/${culture}/${assembly}.resources.dll
culture=${culture}
sources basedir=${build.dir}/${culture}
  includes name=*.resources /
/sources
  /al

... but I always get the following error message:

  ALINK: error A1017: No target filename was specified.

Note that I'm able to create satellite assemblies manually:

  al /t:lib /embed:myApp.en-US.resources /c:en-US
/out:myApp.resources.dll

I've also tried to check out the latest version from CVS to
see whether or not it works, but I'm not able to build it:

  src/NAnt.DotNet/Tasks/NDocTask.cs(201) error CS0117:
`NDoc.Core.Project' does not contain a definition for
  `AppendProbePath'

Any idea?
j3d.
 
-- 

Giuseppe Greco

::agamura::

phone:  +41 91 604 67 65
mobile: +41 76 390 60 32
email:  [EMAIL PROTECTED]
web:www.agamura.com




---
This SF.net email is sponsored by: The Robotic Monkeys at ThinkGeek
For a limited time only, get FREE Ground shipping on all orders of $35
or more. Hurry up and shop folks, this offer expires April 30th!
http://www.thinkgeek.com/freeshipping/?cpg=12297
___
nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers


Re: [nant-dev] al task on Linux

2004-04-24 Thread Gert Driesen

- Original Message - 
From: Giuseppe Greco [EMAIL PROTECTED]
To: NAnt Developers [EMAIL PROTECTED]
Sent: Saturday, April 24, 2004 8:25 PM
Subject: [nant-dev] al task on Linux


 Hi all,
 
 I'm trying to create a satellite assembly with a task
 like this:
 
   al
 target=lib
 output=${build.dir}/${culture}/${assembly}.resources.dll
 culture=${culture}
 sources basedir=${build.dir}/${culture}
   includes name=*.resources /
 /sources
   /al
 
 ... but I always get the following error message:
 
   ALINK: error A1017: No target filename was specified.
 
 Note that I'm able to create satellite assemblies manually:
 
   al /t:lib /embed:myApp.en-US.resources /c:en-US
 /out:myApp.resources.dll
 

I'll look into this tomorrow


 I've also tried to check out the latest version from CVS to
 see whether or not it works, but I'm not able to build it:
 
   src/NAnt.DotNet/Tasks/NDocTask.cs(201) error CS0117:
 `NDoc.Core.Project' does not contain a definition for
   `AppendProbePath'

I did restructure the binaries in cvs, did you do a clean checkout ?

I'll look into this soon anyway ...

Gert


---
This SF.net email is sponsored by: The Robotic Monkeys at ThinkGeek
For a limited time only, get FREE Ground shipping on all orders of $35
or more. Hurry up and shop folks, this offer expires April 30th!
http://www.thinkgeek.com/freeshipping/?cpg=12297
___
nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers


Re: [nant-dev] al task on Linux

2004-04-24 Thread Giuseppe Greco
On Sat, 2004-04-24 at 20:33, Gert Driesen wrote:
 - Original Message - 
 From: Giuseppe Greco [EMAIL PROTECTED]
 To: NAnt Developers [EMAIL PROTECTED]
 Sent: Saturday, April 24, 2004 8:25 PM
 Subject: [nant-dev] al task on Linux
 
 
  Hi all,
  
  I'm trying to create a satellite assembly with a task
  like this:
  
al
  target=lib
  output=${build.dir}/${culture}/${assembly}.resources.dll
  culture=${culture}
  sources basedir=${build.dir}/${culture}
includes name=*.resources /
  /sources
/al
  
  ... but I always get the following error message:
  
ALINK: error A1017: No target filename was specified.
  
  Note that I'm able to create satellite assemblies manually:
  
al /t:lib /embed:myApp.en-US.resources /c:en-US
  /out:myApp.resources.dll
  
 
 I'll look into this tomorrow

Thanks.

 
 
  I've also tried to check out the latest version from CVS to
  see whether or not it works, but I'm not able to build it:
  
src/NAnt.DotNet/Tasks/NDocTask.cs(201) error CS0117:
  `NDoc.Core.Project' does not contain a definition for
`AppendProbePath'
 
 I did restructure the binaries in cvs, did you do a clean checkout ?

Yes, I did.

 
 I'll look into this soon anyway ...
 
 Gert
-- 

Giuseppe Greco

::agamura::

phone:  +41 91 604 67 65
mobile: +41 76 390 60 32
email:  [EMAIL PROTECTED]
web:www.agamura.com




---
This SF.net email is sponsored by: The Robotic Monkeys at ThinkGeek
For a limited time only, get FREE Ground shipping on all orders of $35
or more. Hurry up and shop folks, this offer expires April 30th!
http://www.thinkgeek.com/freeshipping/?cpg=12297
___
nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers


Re: [nant-dev] al task on Linux

2004-04-24 Thread Gert Driesen
On Sat, 2004-04-24 at 20:39, Giuseppe Greco wrote:
 On Sat, 2004-04-24 at 20:33, Gert Driesen wrote:
  - Original Message - 
  From: Giuseppe Greco [EMAIL PROTECTED]
  To: NAnt Developers [EMAIL PROTECTED]
  Sent: Saturday, April 24, 2004 8:25 PM
  Subject: [nant-dev] al task on Linux
  
   
 ALINK: error A1017: No target filename was specified.
   
   Note that I'm able to create satellite assemblies manually:
   
 al /t:lib /embed:myApp.en-US.resources /c:en-US
   /out:myApp.resources.dll
   
  
  I'll look into this tomorrow
 

I haven't had time yet, but can you try running NAnt in verbose mode to
see whether the commandline we generate is ok ?

 
  
  
   I've also tried to check out the latest version from CVS to
   see whether or not it works, but I'm not able to build it:
   
 src/NAnt.DotNet/Tasks/NDocTask.cs(201) error CS0117:
   `NDoc.Core.Project' does not contain a definition for
 `AppendProbePath'
  
  I did restructure the binaries in cvs, did you do a clean checkout ?
 

try a new checkout, but make sure you've cleaned the nant root/bin
directory first.

However, I just noticed that some changes I recently made cause big
problems on Mono (because the Mono assembly loading differs from that of
MS, and perhaps there's also an issue with the privatebinpath) :(

I asked some mono developers to have a look at this issue, I hope it
will be fixed soon ...sorry about this ...

Gert




---
This SF.net email is sponsored by: The Robotic Monkeys at ThinkGeek
For a limited time only, get FREE Ground shipping on all orders of $35
or more. Hurry up and shop folks, this offer expires April 30th!
http://www.thinkgeek.com/freeshipping/?cpg=12297
___
nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers