Re: [NAnt-users] Help copying a folder structure

2012-05-31 Thread Bob Archer
Sent: Wednesday, May 30, 2012 3:39 PM To: nant-users@lists.sourceforge.net Subject: Re: [NAnt-users] Help copying a folder structure This way... From: Chris Fouts [mailto:chris.fo...@caemilusa.com] Sent: Wednesday, May 30, 2012 3:13 PM To: nant-users@lists.sourceforge.net Subject: [N

Re: [NAnt-users] Help copying a folder structure

2012-05-31 Thread Chris Fouts
it be: Also, you can (should be able to) simplify your include to "**" which should match all files and folders. BOb From: Chris Fouts [mailto:chris.fo...@caemilusa.com] Sent: Wednesday, May 30, 2012 3:39 PM To: nant-users@lists.sourceforge.net Subject: Re: [NAnt-users] Help c

Re: [NAnt-users] Help copying a folder structure

2012-05-30 Thread Ryan Boggs
30, 2012 3:13 PM > To: nant-users@lists.sourceforge.net > Subject: [NAnt-users] Help copying a folder structure > > I looked at this > http://nant.sourceforge.net/nightly/latest/help/tasks/copy.html, and googled > some. > > I want to copy files from ${srcDir} to ${destDir} and pr

Re: [NAnt-users] Help copying a folder structure

2012-05-30 Thread Chris Fouts
This way... From: Chris Fouts [mailto:chris.fo...@caemilusa.com] Sent: Wednesday, May 30, 2012 3:13 PM To: nant-users@lists.sourceforge.net Subject: [NAnt-users] Help copying a folder structure I looked at this http://nant.sourceforge.net/nightly/latest/help/tasks/copy.html, and

[NAnt-users] Help copying a folder structure

2012-05-30 Thread Chris Fouts
I looked at this http://nant.sourceforge.net/nightly/latest/help/tasks/copy.html, and googled some. I want to copy files from ${srcDir} to ${destDir} and preserve the directory struncture. I tried this, but the directory structure is NOT preserved in ${destDir}. Any clues?

Re: [NAnt-users] Help with resultproperty please

2012-02-21 Thread Bob Archer
In effect you only update buildstatus if it is currently true. Once it is false it won't be updated any more. BOb From: Chris Fouts [mailto:chris.fo...@caemilusa.com] Sent: Tuesday, February 21, 2012 9:59 AM To: nant-users@lists.sourceforge.net Subject: [NAnt-users]

[NAnt-users] Help with resultproperty please

2012-02-21 Thread Chris Fouts
I'm aware of this feature However, I want to do this... That is, buildmodule needs a lot of buildmoduleN's (two in the example, but can be more). I do NOT want the build to stop if one of the buildmoduleN's fails (hence, failonerror="false") but I want module_ok to evaluate false if at

Re: [NAnt-users] Help with testing strings

2011-11-03 Thread Chris Fouts
Thanks. I tried this yesterday but put the "" and {} in the wrong place. Duh on me. From: Christopher Brandt [mailto:xtopher.bra...@gmail.com] Sent: Wednesday, November 02, 2011 5:26 PM To: Chris Fouts Cc: nant-users@lists.sourceforge.net Subject: Re: [NAnt-users] Help with testi

Re: [NAnt-users] Help with testing strings

2011-11-02 Thread Christopher Brandt
You'd use conditional property assignment. First set the default property value, then conditionally re-assign it if your condition is met. So: --- X Continuous improvement is better than delayed perfection. - Mark Twain On Wed, Nov 2, 2011 at 1:51 PM, Chris Fouts wrote: > Sorry, CCNetBuild

Re: [NAnt-users] Help with testing strings

2011-11-02 Thread Chris Fouts
Sorry, CCNetBuildCondition --- I'm using ccnet and Nant, not a unique situation. How can I test the passed-in CCNetBuildModification string in Nant so I can do the following pseudo-code If "${CCNetBuildModification} == "ForceBuild" Else

[NAnt-users] Help with testing strings

2011-11-02 Thread Chris Fouts
I'm using ccnet and Nant, not a unique situation. How can I test the passed-in CCNetBuildModification string in Nant so I can do the following pseudo-code If "${CCNetBuildModification} == "ForceBuild" Else -chris ***This e-mail message is intended only for the above named recipient

Re: [NAnt-users] Help with buildfile compiling a C#-library containing references to libraries in a sub-directory

2011-06-22 Thread Heintz, Aleksander
Thank you so much. This has been so helpful. -- /Alxandr - mobile On Jun 22, 2011 5:33 PM, "Christopher Brandt" wrote: > Hi Alxandr, > > The app.config file isn't used during compilation, only at run time. When an > executable runs it uses the details in it's app.config file to determine > where

Re: [NAnt-users] Help with buildfile compiling a C#-library containing references to libraries in a sub-directory

2011-06-22 Thread Christopher Brandt
Hi Alxandr, The app.config file isn't used during compilation, only at run time. When an executable runs it uses the details in it's app.config file to determine where to look for dependencies. So the app.config file (replace *app* with the name of the executable) must be in the same directory as

Re: [NAnt-users] Help with buildfile compiling a C#-library containing references to libraries in a sub-directory

2011-06-22 Thread Heintz, Aleksander
Thank you very much. I thought there were some option to enable this at compilation you see, but it seems I was mistaken. However, a quick question if you don't mind. The App.config file needs to be available at run-time, no? Or only at compilation-time? The question is if I need to copy it to the

Re: [NAnt-users] Help with buildfile compiling a C#-library containing references to libraries in a sub-directory

2011-06-21 Thread Dominik Guder
Hi Aleksander, this is basically off topic since Assembly resolving is generally part of .Net itself and not specific to nant. Nevertheless, you could do following: add a entry to your app.config eg. or try following in your code (untested): AppDomain.CurrentDomain.SetupInformation.PrivateBi

Re: [NAnt-users] Help with buildfile compiling a C#-library containing references to libraries in a sub-directory

2011-06-20 Thread Heintz, Aleksander
That works, but I would like to be able to maintain some hierarchy of the files. Isn't that possible? On Tue, Jun 21, 2011 at 1:28 AM, Christopher Brandt < xtopher.bra...@gmail.com> wrote: > Have you tried moving all of the dependencies (ie, Should.Fluent.dll ) > into the same directory as the ex

Re: [NAnt-users] Help with buildfile compiling a C#-library containing references to libraries in a sub-directory

2011-06-20 Thread Christopher Brandt
Have you tried moving all of the dependencies (ie, Should.Fluent.dll ) into the same directory as the executable? --- Chris. Continuous improvement is better than delayed perfection. - Mark Twain On Mon, Jun 20, 2011 at 12:13 PM, Heintz, Aleksander wrote: > I'm having trouble by trying to write

[NAnt-users] Help with buildfile compiling a C#-library containing references to libraries in a sub-directory

2011-06-20 Thread Heintz, Aleksander
I'm having trouble by trying to write a buildfile that can compile and test my application. The compilation works great, however, I get a runtime-error during the testing saying that .NET is unable to load the assembly I included. Now, my folder-structure looks something like this: /project.bu

Re: [NAnt-users] Help recursively setting readonly attribute

2011-05-05 Thread Bob Archer
Ah got it... the include patterns are a bit tricky. From: Chris Fouts [mailto:chris.fo...@caemilusa.com] Sent: Thursday, May 05, 2011 10:11 AM To: nant-users@lists.sourceforge.net Subject: Re: [NAnt-users] Help recursively setting readonly attribute I did NOT want the files to be read only

Re: [NAnt-users] Help recursively setting readonly attribute

2011-05-05 Thread Chris Fouts
ect: RE: Help recursively setting readonly attribute If you want to set the read only attribute, wouldn't you set readonly="true" ??? BOb From: Chris Fouts [mailto:chris.fo...@caemilusa.com] Sent: Wednesday, May 04, 2011 6:01 PM To: nant-users@lists.sourceforge.net Subject: [NAnt-

Re: [NAnt-users] Help recursively setting readonly attribute

2011-05-05 Thread Bob Archer
If you want to set the read only attribute, wouldn't you set readonly="true" ??? BOb From: Chris Fouts [mailto:chris.fo...@caemilusa.com] Sent: Wednesday, May 04, 2011 6:01 PM To: nant-users@lists.sourceforge.net Subject: [NAnt-users] Help recursively setting readonly attribute

Re: [NAnt-users] Help recursively setting readonly attribute

2011-05-05 Thread Chris Fouts
Human Resources Email: brian.wil...@dhr.alabama.gov From: Chris Fouts [mailto:chris.fo...@caemilusa.com] Sent: Wednesday, May 04, 2011 5:01 PM To: nant-users@lists.sourceforge.net Subject: [NAnt-users] Help recursively setting readonly attribute I thought I had this, but apparently not, since I

[NAnt-users] Help recursively setting readonly attribute

2011-05-04 Thread Chris Fouts
I thought I had this, but apparently not, since I can't overwrite files in them. I run as Administrator so I have permission to do this. I want to set the read-only attribute for all files and subdirs under the two directories

Re: [NAnt-users] Help with exception

2011-05-03 Thread Ryan Boggs
NAnt. Thanks all! > > > > -chris > > > > From: Daniel Nauck [mailto:daniel.na...@gmail.com] > Sent: Tuesday, May 03, 2011 1:33 PM > To: Chris Fouts > Cc: nant-users@lists.sourceforge.net > Subject: Re: [NAnt-users] Help with exception > > > > Try

Re: [NAnt-users] Help with exception

2011-05-03 Thread Chris Fouts
Unlocking the zip file did the trick, even unpacking it in C:\Program Files\NAnt. Thanks all! -chris From: Daniel Nauck [mailto:daniel.na...@gmail.com] Sent: Tuesday, May 03, 2011 1:33 PM To: Chris Fouts Cc: nant-users@lists.sourceforge.net Subject: Re: [NAnt-users] Help with exception Try to

Re: [NAnt-users] Help with exception

2011-05-03 Thread Daniel Nauck
Try to "unblock" that zip file after download and then unpack it, or unblock every unpacked .dll and .exe file. Daniel Am 03.05.2011 um 17:59 schrieb Chris Fouts: > I just installed NAnt on my XP-based company laptop. When I run it I get the > following. Any help? I have v0.91-alpah2 (latest

Re: [NAnt-users] Help with exception

2011-05-03 Thread Ryan Boggs
this issue these past months. It's difficult to replicate on different machines. Thanks, Ryan > > > -chris > > > > From: Ryan Boggs [mailto:rmbo...@gmail.com] > Sent: Tuesday, May 03, 2011 12:27 PM > To: Chris Fouts > Cc: nant-users@lists.sourceforge.

Re: [NAnt-users] Help with exception

2011-05-03 Thread Chris Fouts
: Tuesday, May 03, 2011 12:27 PM To: Chris Fouts Cc: nant-users@lists.sourceforge.net Subject: Re: [NAnt-users] Help with exception Known issue unfortunately. It's related to the new security model in .net 4, which I have been unable to reproduce on three different machines. This is the

Re: [NAnt-users] Help with exception

2011-05-03 Thread Ryan Boggs
ne? Where did you unzip nant to? What directory? Thanks, Ryan On May 3, 2011, at 9:03 AM, Chris Fouts wrote: > I have MS .NET framework 4.0 > > > > From: Chris Fouts [mailto:chris.fo...@caemilusa.com] > Sent: Tuesday, May 03, 2011 12:00 PM > To: nant-users@lists.sourcef

Re: [NAnt-users] Help with exception

2011-05-03 Thread Chris Fouts
I have MS .NET framework 4.0 From: Chris Fouts [mailto:chris.fo...@caemilusa.com] Sent: Tuesday, May 03, 2011 12:00 PM To: nant-users@lists.sourceforge.net Subject: [NAnt-users] Help with exception I just installed NAnt on my XP-based company laptop. When I run it I get the following. Any help

[NAnt-users] Help with exception

2011-05-03 Thread Chris Fouts
I just installed NAnt on my XP-based company laptop. When I run it I get the following. Any help? I have v0.91-alpah2 (latest from Sourceforge). Unhandled Exception: System.TypeInitializationException: The type initializer fo r 'NAnt.Console.ConsoleStub' threw an exception. ---> System.Security.S

Re: [NAnt-users] Help with

2011-04-29 Thread Pento, Michael
Hi Chris, Enclose it in " For example: I hope this answered the question. Mike From: Chris Fouts [mailto:chris.fo...@caemilusa.com] Sent: Friday, April 29, 2011 9:28 AM To: nant-users@lists.sourceforge.net Subject: [NAnt-users] Help with How can I "" as part of my in an ? For example..

Re: [NAnt-users] Help with

2011-04-29 Thread Adam Bruss
outs [mailto:chris.fo...@caemilusa.com] Sent: Friday, April 29, 2011 8:28 AM To: nant-users@lists.sourceforge.net Subject: [NAnt-users] Help with How can I "" as part of my in an ? For example..

[NAnt-users] Help with

2011-04-29 Thread Chris Fouts
How can I "" as part of my in an ? For example..

Re: [NAnt-users] help with Nunit2

2010-06-28 Thread Achar, Saritha
AM To: NAnt-users@lists.sourceforge.net Subject: [NAnt-users] help with Nunit2 Hi, I'm trying to execute tests in my assembly .dll using the task . I get the error 28-Jun-2010 10:02:17 Failure executing test(s). If you assembly is not built using NUnit version 2.2.8.0, then ensur

[NAnt-users] help with Nunit2

2010-06-28 Thread Achar, Saritha
Hi, I'm trying to execute tests in my assembly .dll using the task . I get the error 28-Jun-2010 10:02:17 Failure executing test(s). If you assembly is not built using NUnit version 2.2.8.0, then ensure you have redirected assembly bindings. Consult the documentation of the task for more

Re: [NAnt-users] Help with NAnt and NUnit 2.5.0.9122

2009-07-21 Thread Erich Eichinger
2009 10:03 AM > To: Danny Cheong > Cc: nant-users@lists.sourceforge.net > Subject: Re: [NAnt-users] Help with NAnt and NUnit 2.5.0.9122 > > Hello, > > you can try out my NUnit task, available here: [1] [2] > This one works with NUnit 2.4 and 2.5 > > The latest buil

Re: [NAnt-users] Help with NAnt and NUnit 2.5.0.9122

2009-07-21 Thread Daniel Nauck
Hello, you can try out my NUnit task, available here: [1] [2] This one works with NUnit 2.4 and 2.5 The latest build is available here: [3] Daniel [1] http://dev.nauck-it.de/utilities/wiki/NAnt [2]http://dev.nauck-it.de/utilities/browser/NauckIT.NAnt/trunk/src/Tasks/NUnitTask.cs [3] http://bui

[NAnt-users] Help with NAnt and NUnit 2.5.0.9122

2009-07-20 Thread Danny Cheong
To Whom It May Concern: I am trying to upgrade NUnit from 2.2.10. to 2.5.0.9122. When I try to execute my unit tests using Nant, I get the following error:- Invalid element . Unknown task or datatype Everything was fine with NUnit 2.2.10. I am using NAnt 0.86.2898.0 Your help

Re: [NAnt-users] Help: csc and extern alias

2008-06-18 Thread Bevan Arps
Hope this is helpful, Bevan. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Joel Sent: Thursday, 19 June 2008 10:19 a.m. To: nant-users@lists.sourceforge.net Subject: [NAnt-users] Help: csc and extern alias Folks, I am in the unenviable position of being forced to refe

[NAnt-users] Help: csc and extern alias

2008-06-18 Thread Joel
Folks, I am in the unenviable position of being forced to reference two different assemblies with the same type and namespace defined in both assemblies. Needless to say, this ambiguity is a bit perplexing for the poor C# compiler. Fortunately, MS has foreseen this problem, and has provided a work

Re: [NAnt-users] Help Needed using tag

2008-04-21 Thread Roebuck, Alex
: Re: [NAnt-users] Help Needed using tag Quoting Jacob Siegel <[EMAIL PROTECTED]>: I should add a little more information. This seems to happen for any project that is a Visual C++ project. For instance, I created an empty VC++ clr project , and got the same results just trying to

Re: [NAnt-users] Help Needed using tag

2008-04-18 Thread Jacob Siegel
Quoting Jacob Siegel <[EMAIL PROTECTED]>: I should add a little more information. This seems to happen for any project that is a Visual C++ project. For instance, I created an empty VC++ clr project , and got the same results just trying to build that by itself with the tag. Also, the sa

[NAnt-users] Help Needed using tag

2008-04-18 Thread Jacob Siegel
Hi, I just started trying to use nant, and am running into trouble using the solution tag to try and build an existing solution (which builds fine with VS 2005). Any help would be greatly appreciated. I can't figure out what the error message is trying to tell me! Thanks! -

Re: [NAnt-users] Help with property needed

2007-12-23 Thread Johannes Luber
half Of Johannes > Luber > Sent: zaterdag 22 december 2007 20:26 > Cc: nant-users@lists.sourceforge.net > Subject: Re: [NAnt-users] Help with property needed > > Gert Driesen schrieb: >> Hi Johannes, >> >> NAnt will not resolve PlatformID.Unix to its enum value.

Re: [NAnt-users] Help with property needed

2007-12-22 Thread Gert Driesen
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Johannes Luber Sent: zaterdag 22 december 2007 20:26 Cc: nant-users@lists.sourceforge.net Subject: Re: [NAnt-users] Help with property needed Gert Driesen schrieb: > Hi Johannes, > > NAnt will not resolv

Re: [NAnt-users] Help with property needed

2007-12-22 Thread Johannes Luber
Gert Driesen schrieb: > Hi Johannes, > > NAnt will not resolve PlatformID.Unix to its enum value. > > You can use this instead: > > > ${operating-system::get-platform(environment::get-operating-system())=='Unix > '} > > However, this will only work if you're running NAnt on .NET 2.

Re: [NAnt-users] Help with property needed

2007-12-22 Thread Gert Driesen
ge- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Johannes Luber Sent: zaterdag 22 december 2007 16:48 To: nant-users@lists.sourceforge.net Subject: [NAnt-users] Help with property needed Hi! I've been trying to set a property dependent on the OS nant is running on, but so far

[NAnt-users] Help with property needed

2007-12-22 Thread Johannes Luber
Hi! I've been trying to set a property dependent on the OS nant is running on, but so far I've failed. I can't get this to work: I always receive "Property evaluation failed." as error message. Can someone help me? Thanks in advance, Johannes -

Re: [NAnt-users] Help with installation

2007-11-02 Thread Harvey, Edward
> If you compile Mono from source, then you should have the > following file: > /usr/local/lib/pkgconfig/mono.pc Let's see... [eharvey]$ ls -l /usr/local/lib/pkgconfig/mono.pc -rw-r--r-- 1 root root 295 Nov 2 14:24 /usr/local/lib/pkgconfig/mono.pc Yup. > You should make sure t

Re: [NAnt-users] Help with installation

2007-11-02 Thread Gert Driesen
PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Harvey, Edward Sent: vrijdag 2 november 2007 19:51 To: nant-users@lists.sourceforge.net Subject: [NAnt-users] Help with installation Hey ya. * I'm trying to install nant 0.85 on RedHat Enterprise 4u4 x86_64. * I installed mono 1.2.5.1 from s

[NAnt-users] Help with installation

2007-11-02 Thread Harvey, Edward
Hey ya. * I'm trying to install nant 0.85 on RedHat Enterprise 4u4 x86_64. * I installed mono 1.2.5.1 from source, with defaults. ( sudo ./configure --prefix=/usr/local && sudo make && sudo make install ) * I installed pkg-config from CD rpm, pkgconfig-0.15.0-3.x86_64.rpm * When I try building na

[NAnt-users] Help me to extends MSBUILD task.

2007-08-01 Thread Yogendra Prasad
Hi friends, I found that we cant have a separate log files while building any project through "msbuild" task. It would be helpful for me if any one would suggest me a solution so that i can have a separate log file for each call to msbuild. It can be either through extending msbuild task

Re: [NAnt-users] Help required for build numbering by NAnt script.

2006-11-27 Thread Gary Feldman
Bob Archer wrote: > > Take a look at the version task and the asminfo task… with these you > should be able to accomplish this. I think both of these tasks are in > the contrib. dll. > The asminfo task is in NAnt, while version is in NAntContrib. Another option, which is the one I recommend, is

Re: [NAnt-users] Help required for build numbering by NAnt script.

2006-11-27 Thread Bob Archer
, November 24, 2006 6:46 PM To: nant-users@lists.sourceforge.net Subject: [NAnt-users] Help required for build numbering by NAnt script. Hi All, We have a version.include file which contains the following properties with their corresponding values set. ReleaseYear() ReleaseNumber(R

Re: [NAnt-users] Help required for build numbering by NAnt script.

2006-11-24 Thread Melissa Kacher
Behalf Of Bobby Michael Sent: Friday, November 24, 2006 3:46 PM To: nant-users@lists.sourceforge.net Subject: [NAnt-users] Help required for build numbering by NAnt script. Hi All, We have a version.include file which contains the following properties with their corresponding values set

[NAnt-users] Help required for build numbering by NAnt script.

2006-11-24 Thread Bobby Michael
Hi All, We have a version.include file which contains the following properties with their corresponding values set. ReleaseYear() ReleaseNumber(R) BuildNumber() This version.include file is included in the buildscript. while running the build we are overriding the BuildNumber property b

Re: [NAnt-users] Help! NANT zip task

2006-09-07 Thread Alan Guedeney
Thanks Melissa - that worked. Original Message Follows From: "Melissa Kacher" <[EMAIL PROTECTED]> To: "Alan Guedeney" <[EMAIL PROTECTED]>, Subject: RE: [NAnt-users] Help! NANT zip task Date: Thu, 7 Sep 2006 13:57:34 -0700 MIME-Version: 1.0 Receiv

Re: [NAnt-users] Help! NANT zip task

2006-09-07 Thread Melissa Kacher
D] On Behalf Of Alan Guedeney Sent: Thursday, September 07, 2006 1:22 PM To: nant-users@lists.sourceforge.net Subject: [NAnt-users] Help! NANT zip task Importance: High Having a simple problem including directories with files into a zip file using a NANT task. Can anyone direct me on how to incl

[NAnt-users] Help! NANT zip task

2006-09-07 Thread Alan Guedeney
Having a simple problem including directories with files into a zip file using a NANT task. Can anyone direct me on how to include the correponding directories instead of just flattening the structure?

[NAnt-users] [Help][.Net Solution File Compilation][Problems]

2006-07-04 Thread SanjoyGuhaRoy
  Dear All,   I request you to let me know how to solve the following problem in my automated build process using NANT.    1. I  have a few solution files. Some of them are having multiple proj file or only one proj file. To compile them I require to edit the references by droping and re-add

Re: [NAnt-users] Help Needed

2006-06-01 Thread marc
Nagesh, C.L. wrote: Hi All, Actually i am new to NANT. My issue:- My issue is that i have to deploy a webapplication in my server. I want a database to be created on the server when i deploy the application in my server through msi. Can i do the above task? i.e, can i include s

[NAnt-users] Help Needed

2006-06-01 Thread Nagesh, C.L.
Hi All,    Actually i am new to NANT. My issue:- My issue is that i have to deploy a webapplication in my server. I want a database to be created on the server when i deploy the application in my server through msi. Can i do the above task? i.e, can i include sql scripts to create data

[OT] RE: [NAnt-users] Help on Integrating Nant with Nunit

2006-03-14 Thread Bryan White
Richard said: > ... > If I were you, I would also be asking myself if I really want to work > for your company. Unit testing and continuous integration are so much a > part of best practices that any company unwilling to accept them is > (IMHO) extremely unlikely to consistently deliver a quality p

RE: [NAnt-users] Help on Integrating Nant with Nunit

2006-03-14 Thread Foster, Richard - PAL
ell for you. Regards, Richard -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bryan White Sent: Monday, March 13, 2006 18:31 To: nant-users@lists.sourceforge.net Subject: RE: [NAnt-users] Help on Integrating Nant with Nunit gary wrote: > ... > Why

RE: [NAnt-users] Help on Integrating Nant with Nunit

2006-03-13 Thread Bryan White
gary wrote: > ... > Why are you running the NUnit GUI from within NAnt? Does this even work > if you're building via a scheduled task, CruiseControl.Net, or other > batch mechanism with no display? > > For running from NAnt, I'd use the NUnit console, or better yet, the > NUnit2 task, as indicated

Re: [NAnt-users] Help on Integrating Nant with Nunit

2006-03-13 Thread Gary Feldman
nbl prasad wrote: Hi All, Have anyone integrated Nant with Nunit, if so can anyone send me an example how to integrate. Have you looked at the documentation for the NUnit2 task? See, for example, http://nant.sourceforge.net/release/latest/help/tasks/nunit2.html . Gary ---

Re: [NAnt-users] Help on Integrating Nant with Nunit

2006-03-13 Thread Gary Feldman
Bryan White wrote: ... Why are you running the NUnit GUI from within NAnt? Does this even work if you're building via a scheduled task, CruiseControl.Net, or other batch mechanism with no display? For running from NAnt, I'd use the NUnit console, or better yet, the NUni

RE: [NAnt-users] Help on Integrating Nant with Nunit

2006-03-13 Thread Bryan White
=== -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of nbl prasad Sent: Monday, 13 March 2006 23:32 To: nant-users@lists.sourceforge.net Subject: [NAnt-users] Help on Integrating Nant with Nunit Hi All

[NAnt-users] Help on Integrating Nant with Nunit

2006-03-13 Thread nbl prasad
Hi All, Have anyone integrated Nant with Nunit, if so can anyone send me an example how to integrate. Thanks and Regards Prasad __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com

[NAnt-users] HELP

2006-03-11 Thread Rajnish kumar
Hi I am trying to build an automated build with NANT, with active reports. I am getting the following error with Licence.licx, the error message I am getting is: licenses.licx(1) : error LC0003 : Unabled to resolve type 'CuteEditor.Editor, CuteEditor, Version=4.0.0.5, Culture=neutral, PublicKeyTok

RE: [Nant-users] Help with failing style task

2005-09-27 Thread Tony_Bjerstedt
@lists.sourceforge.netSubject: [Nant-users] Help with failing style task The

[Nant-users] Help with failing style task

2005-09-27 Thread Tony_Bjerstedt
Title: Help with failing style task The

RE: [Nant-users] Help with CL / LINK / RC and Versioning DLLs

2005-07-06 Thread Aaron Elder
Elder Sent: Wednesday, July 06, 2005 11:31 PM To: nant-users@lists.sourceforge.net Subject: RE: [Nant-users] Help with CL / LINK / RC and Versioning DLLs   Just including the “version.res” file inside the LINK’s file list also does not work.  I am comparing the output of NANT (using verbose

RE: [Nant-users] Help with CL / LINK / RC and Versioning DLLs

2005-07-06 Thread Aaron Elder
DLL’s Properties dialog when I compile via NANT.   Thanks again,   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Aaron Elder Sent: Wednesday, July 06, 2005 11:13 PM To: nant-users@lists.sourceforge.net Subject: [Nant-users] Help with CL / LINK / RC and Versioning DLLs

[Nant-users] Help with CL / LINK / RC and Versioning DLLs

2005-07-06 Thread Aaron Elder
This should be “simple” but it escapes me.  I have an unmanaged C++ DLL that I can build with CL and LINK no problem.  I also have a “Version.rc” file that I am able to turn into “Version.res” no problem.  Now, how do I get the DLL embed the version info correctly?  I tried the “EmbeddedRes

[Nant-users] Help needed

2005-06-14 Thread Senthil Kumar Karaiyan
Hello, I want to know how to use the SkipNamespacesWithoutsummaries properity in Nant Build Scripts. I can use this properity in GUI without problem. But using Nant build scripts, It does not generated. ~Senthil --- SF.Net email is sponso

Re: [Nant-users] [Help][Nant-Users][USE NANT To Compile VB6.0 Code]

2005-04-07 Thread Ian MacLean
sanjoy wrote: Dear All, I want to know can I use NANT to compile VB6.0 code. there is a vb6 task in NAntcontrib [1] In VB6.0 we have the problem of compiling DLLs and OCX files which very offen breaks compatibility and we have to compile 3 stages. 1.No Compatibility 2.Project Compatibity 3.Clas

Re: [Nant-users] [Help][Nant-Users][ History Of files Comitted]

2005-04-07 Thread Ian MacLean
sanjoy wrote: Dear All, I want to know the following. 1. Get a report from CVS History file for all those files updated after certain tag date for a given module. There are subdirectories under the given Module. 2. The script should ask for the tag date. 3.Generated report should contain user na

[Nant-users] [Help][Nant-Users][ History Of files Comitted]

2005-04-06 Thread sanjoy
Dear All, I want to know the following. 1. Get a report from CVS History file for all those files updated after certain tag date for a given module. There are subdirectories under the given Module. 2. The script should ask for the tag date. 3.Generated report should contain user name, file name

[Nant-users] [Help][Nant-Users][USE NANT To Compile VB6.0 Code]

2005-04-06 Thread sanjoy
Dear All, I want to know can I use NANT to compile VB6.0 code. In VB6.0 we have the problem of compiling DLLs and OCX files which very offen breaks compatibility and we have to compile 3 stages. 1.No Compatibility 2.Project Compatibity 3.Class Compatibity I request to provide me a solution to

RE: [Nant-users] Help Needed

2005-03-13 Thread rama subba rao
PROTECTED] On > Behalf Of > > rama subba rao > > Sent: vrijdag 11 maart 2005 17:54 > > To: nant-users@lists.sourceforge.net > > Subject: [Nant-users] Help Needed > > > > Hi All, > > > > I am having problems with the NAnt build for the > > so

RE: [Nant-users] Help Needed

2005-03-12 Thread Gert Driesen
aart 2005 17:54 > To: nant-users@lists.sourceforge.net > Subject: [Nant-users] Help Needed > > Hi All, > > I am having problems with the NAnt build for the > solution that has references to ActiveReports dlls.My > build script is failing and the portion

[Nant-users] Help Needed

2005-03-11 Thread rama subba rao
Hi All, I am having problems with the NAnt build for the solution that has references to ActiveReports dlls.My build script is failing and the portion of my error log file is pasted below:

RE: [Nant-users] Help with XMLPoke

2005-02-04 Thread Gert Driesen
Kevin,   Try using this :     http://www.w3.org/2001/XMLSchema-instance" />     Gert From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kevin KirkpatrickSent: donderdag 3 februari 2005 22:39To: nant-users@lists.sourceforge.netSubject: [Nant-use

[Nant-users] Help with XMLPoke

2005-02-03 Thread Kevin Kirkpatrick
uot;> …. Commands>   Result from XMLPoke Failed to select nodes with XPath _expression_ '//*[namespace::*]/@xsi:noNamespaceSchemaLocation'.     Prefix 'xsi' is not defined.   Thanks in advance.   -Original Message- Sent: Monday, January 31, 2005 7:10 PM To: na

Re: [Nant-users] Help with XMLPoke

2005-02-01 Thread Merrill Cornish
Kevin, Do you have an xmlns declaration for the xsi namespace? Merrill --- This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting Tool for open source databases. Create drag-&-drop reports. Save time by over 75%! Publish repor

[Nant-users] Help with XMLPoke

2005-01-31 Thread Kevin Kirkpatrick
I’m trying to poke this Xpath query and I’m getting an error saying: prefix ‘xsi’ not defined. Has anyone had trouble with this?   //*[namespace::*]/@xsi:noNamespaceSchemaLocation   - BUILD FAILED   D:\PolicyServices\BuildFiles\PolicyServices.build(412,4): Failed to

[Nant-users] [Help][Nant User][How To Implement FXCop][In Vb.Net Application]

2004-12-03 Thread Sanjoy
Dear All, I want to know how to emplement FXCop in VB.Net application code? Is there any other tools available in VB.Net that will help to evaluate the code followed the coding standard so that appropriate report can be obaint from NANT compilation of the code. Thanks Sanjoy ---

[Nant-users] [Help][Nant User][Create Tag/Label after VSS Checkout]

2004-11-23 Thread Sanjoy
Dear All, I want to create a Tag/Label after VSSget of source code for compilation. I want to Create Labnel for eg "Src200411221810" How to do so? vssLabel="${Release.Tag}" I tried with the above script but I dont know how to assign the value in the "Release.Tag" Please help me out. T

Re: [Nant-users] [HELP][Compilation Problem With C# Code][Using Nant][Error CS1010, CS0116]

2004-11-22 Thread Ian MacLean
Sanjoy wrote: Dear Ian Mac, Thanks for your advice. I will do it and let you know. However I want to say that my project is made up of many csproj files and many of them are library types. They contains many FrmXYZ.CS files, resource files. I want to know when I do task for the ultimate exe file

Re: [Nant-users] [HELP][Compilation Problem With C# Code][Using Nant][Error CS1010, CS0116]

2004-11-22 Thread Ian MacLean
Sanjoy wrote: Dear All, I am new to NANT. I want to know the compilation script for C#.Net code. I have following nant script code for compilation. However I get following errors on compilation. Buildfile: file:///C:/BldSolu/testbuild.build.xml Target(s) specified: build build: CmpS

[Nant-users] [HELP][Compilation Problem With C# Code][Using Nant][Error CS1010, CS0116]

2004-11-22 Thread Sanjoy
Dear All, I am new to NANT. I want to know the compilation script for C#.Net code. I have following nant script code for compilation. However I get following errors on comp

RE: [Nant-users] [Help][Nant User][Create Tag/Label after VSS Checkout][Connect VSS Server Machine using NANT script]

2004-11-18 Thread Melissa Kacher (Temporary)
rom: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Felice Vittoria Sent: Thursday, November 18, 2004 2:12 AM To: Sanjoy; [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: [Nant-users] [Help][Nant User][Create Tag/Label after VSS Checkout][Connect VSS Server Machine using NANT script] Sanjo

RE: [Nant-users] [Help][Nant User][Create Tag/Label after VSS Checkout][Connect VSS Server Machine using NANT script]

2004-11-18 Thread Felice Vittoria
er 18, 2004 12:43 AM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: [Nant-users] [Help][Nant User][Create Tag/Label after VSS Checkout][Connect VSS Server Machine using NANT script] Dear All, I have following VSSget script in my my NANT build script. https://lists.sourceforg

[Nant-users] [HELP][Nant Users][C # Code Compilation]

2004-11-18 Thread Sanjoy
Dear All, I want to know whether I have to compile my xyz.cs, ABC.cs files every time when I build my application using NANT. Using the following code Or all these are not required if I have the Solution files of the project which include all these sub projects that is re

[Nant-users] [Help][Nant User][Create Tag/Label after VSS Checkout][Connect VSS Server Machine using NANT script]

2004-11-17 Thread Sanjoy
Dear All, I have following VSSget script in my my NANT build script. 1. After geting the source code out of the VSS I want to create a label in VSS source [Like creating a tag in CVS]. So that in future reference I could use the tag /label to get that particular code on which the

RE: [Nant-users] [HELP][Nant Users][Ziping Files & Sub Folders Content ][Using NANT script]

2004-11-17 Thread Roarke Gaskill
Your include tag needs to look like this: The "**" matches on any directory. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sanjoy Sent: Wednesday, November 17, 2004 7:07 AM To: [EMAIL PROTECTED] Subject: [Nant-users] [HELP][Nant Users][Zi

RE: [Nant-users] [HELP][Nant Users][Ziping Files & Sub Folders Content ][Using NANT script]

2004-11-17 Thread Gert Driesen
Try using this : Gert > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Sanjoy > Sent: woensdag 17 november 2004 14:07 > To: [EMAIL PROTECTED] > Subject: [Nant-users] [HELP][Nant Users][

[Nant-users] [HELP][Nant Users][Ziping Files & Sub Folders Content ][Using NANT script]

2004-11-17 Thread Sanjoy
Dear All, I have following nant build script for zipping. I am not able to zip the subfolders and its content in the zip file created. It is only zipping files of base folder. Thanks Sanjoy --

  1   2   >