[Nant-users] Nant script failed 'cause a weired temp folder like temp139BA.tmp can't be deleted

2005-03-08 Thread peters
Hi All, I ran into this failure a few times when Nant was trying to compile a web project. After removing this temp folder manually, re-ran the Nant, everything was okay. This empty temp folder was under my documents and settings\[current user]\local settings\temp. I guess it was created by Nant

[Nant-users] config file missing

2005-01-10 Thread peters
Hi There, My .net project has an app.comfig, the myApp.config is created under release via VS compilation. But the NAnt build doesn't create this config file. why? my script:                                 Thx

[Nant-users] strong name a web project

2005-01-06 Thread peters
Hi there, I have a strong-named web project. according to MS doc, the snk file must be placed in %%HOMEDRIVE%%HOMEPATH% if using relative path like [assembly: AssemblyKeyFile (@"..\..\..\..\..\my.snk")]. it works in VS. but when using Nant,                                                      

[Nant-users] how to use "if" ?

2004-09-29 Thread peters
Hi there, I am wondering how to implement "if" in Nant like         1. if myproperty=="myvalue"         2. if="${myproperty=="myvalue" }"   thx        

[Nant-users] can't overwrite property

2004-09-23 Thread peters
Hi there, why can't properties be overwritten? my code: or run:  nant -D:path=c:\temp Nant says: readonly property path can't be overwritten. is it a bug in 0.85.1724 (09-20 build)? thx

[Nant-users] anyone knows "updateversion.exe"?

2004-09-21 Thread peters
Hi there, I tried updateversion -p 2.0.0.0 -i assemblyinfo.cs -o version.cs But in output version, it looks like [assembly: AssemblyVersion("1.0.0.4660")] (in assemblyinfo.cs,[assembly: AssemblyVersion("1.0.0.0")]) Why? And it seems that if assemblyinfo.cs has [assembly: AssemblyVersion("1.0.

[Nant-users] warning handling

2004-09-21 Thread peters
Hi there, is it possible to catch warnings in Nant? like nant.onsuccess/failure.  I noticed there is a feature for .net2. how about 1.1? thx

[Nant-users] containing " in value

2004-09-19 Thread peters
Hi there, How can I include " in a value? ex: mkdir "c:\temp\test 1" how to make up the commandline? Thx