Re: [NAnt-users] using CSC for both 3.5 and 4.0 within the same build process

2012-01-23 Thread Bob Archer
dd in all the projects with the correct dependency. It should be pretty easy. This: To this: BOb From: Scott Pennington [mailto:spenning...@prosper.com] Sent: Monday, January 23, 2012 1:11 PM To: Bob Archer; nant-users@lists.sourceforge.net Subject: RE: [NAnt-users] using CSC for both 3.5 an

Re: [NAnt-users] using CSC for both 3.5 and 4.0 within the same build process

2012-01-23 Thread Scott Pennington
:53 AM To: Scott Pennington; nant-users@lists.sourceforge.net Subject: RE: [NAnt-users] using CSC for both 3.5 and 4.0 within the same build process I have found the best solution was to use msbuild to actually do the compile called from the exec task. BOb From: Scott Pennington

Re: [NAnt-users] using CSC for both 3.5 and 4.0 within the same build process

2012-01-23 Thread Bob Archer
I have found the best solution was to use msbuild to actually do the compile called from the exec task. BOb From: Scott Pennington [mailto:spenning...@prosper.com] Sent: Monday, January 23, 2012 11:23 AM To: nant-users@lists.sourceforge.net Subject: [NAnt-users] using CSC for both 3.5 and 4.0

[NAnt-users] using CSC for both 3.5 and 4.0 within the same build process

2012-01-23 Thread Scott Pennington
We are starting to have .NET 4.0 Framework Projects that will need to be built. We currently build by using the CSC tag and not using the project files. So I will need to be able to build csc with either 4.0 or 3.5 depending on the dll. we are using NAnt version 0.91 Thanks for any help

Re: [NAnt-users] Using the Fail Task Conditionally

2011-07-13 Thread Adam Bruss
ttp://www.awrcorp.com/> From: Macdiarmid, James D. [mailto:james.d.macdiar...@saic.com] Sent: Wednesday, July 13, 2011 12:07 PM To: nant-users@lists.sourceforge.net Subject: [NAnt-users] Using the Fail Task Conditionally I'm using the "if" task in my build script to test a conditio

[NAnt-users] Using the Fail Task Conditionally

2011-07-13 Thread Macdiarmid, James D.
I'm using the "if" task in my build script to test a condition. If the condition is true, I want to send an email out then fail the build. Does it matter where I put the "fail" task? For example, should I put my "Mail" task first, then the "fail" task, or fail first then put the "Mail" task?

Re: [NAnt-users] Using NAnt to build Windows Application

2011-01-14 Thread Bob Archer
/www.awrcorp.com > > > -Original Message- > From: Wilson, Brian [mailto:brian.wil...@dhr.alabama.gov] > Sent: Friday, January 14, 2011 12:22 PM > To: 'nant-users@lists.sourceforge.net' > Subject: Re: [NAnt-users] Using NAnt to build Windows Application > &

Re: [NAnt-users] Using NAnt to build Windows Application

2011-01-14 Thread Bob Archer
I think you already got the answer use MSBuild. > -Original Message- > From: Wilson, Brian [mailto:brian.wil...@dhr.alabama.gov] > Sent: Friday, January 14, 2011 1:22 PM > To: 'nant-users@lists.sourceforge.net' > Subject: Re: [NAnt-users] Using NAnt to build W

Re: [NAnt-users] Using NAnt to build Windows Application

2011-01-14 Thread Wilson, Brian
...@dhr.alabama.gov -Original Message- From: Matt Robbins [mailto:matt.robb...@channeladvisor.com] Sent: Friday, January 14, 2011 12:34 PM To: Wilson, Brian Subject: RE: [NAnt-users] Using NAnt to build Windows Application Have Nant call msbuild. You get all the benefits of vs2008 building your

Re: [NAnt-users] Using NAnt to build Windows Application

2011-01-14 Thread Bob Archer
> Good Morning, > > Has anyone ever used NAnt to build a windows application? If so, > is there any special steps to do? How do you handle the automatic > inclusion of a library you developed? What do you mean by "windows application"? That's all I've ever used nant for. Or do you mean "window

Re: [NAnt-users] Using NAnt to build Windows Application

2011-01-14 Thread Adam Bruss
USA P: 1.262.240.0291 x104 F: 1.262.240.0294 E: abr...@awrcorp.com W: http://www.awrcorp.com -Original Message- From: Wilson, Brian [mailto:brian.wil...@dhr.alabama.gov] Sent: Friday, January 14, 2011 12:22 PM To: 'nant-users@lists.sourceforge.net' Subject: Re: [NAnt-users]

Re: [NAnt-users] Using NAnt to build Windows Application

2011-01-14 Thread Macdiarmid, James D.
: Friday, January 14, 2011 1:22 PM To: 'nant-users@lists.sourceforge.net' Subject: Re: [NAnt-users] Using NAnt to build Windows Application I have a .Net application that is a Windows application (.exe) that I need to automate the build. I want to use NAnt, but I have only ever used i

Re: [NAnt-users] Using NAnt to build Windows Application

2011-01-14 Thread Wilson, Brian
I have a .Net application that is a Windows application (.exe) that I need to automate the build. I want to use NAnt, but I have only ever used it to build ASP.Net applications. I have not started building the script yet, as I am not sure what needs to be done. I was wondering if there is som

[NAnt-users] Using NAnt to build Windows Application

2011-01-14 Thread Wilson, Brian
Good Morning, Has anyone ever used NAnt to build a windows application? If so, is there any special steps to do? How do you handle the automatic inclusion of a library you developed?   Thank you,   Brian Wilson Department of Human Resources - Administrative Services Email: brian.wil...@dhr.a

[NAnt-users] Using asminfo to include webresources

2010-09-27 Thread Sean Wilkening
I currently have a project that we change the version of the dll and other attributes using the task each build. Now we are using WebResources and would like to add those attributes to the same task, but are having errors when executing the task now. Are WebResources supported in the task or

Re: [NAnt-users] Using "if" to test for existence of properties

2010-04-13 Thread Bob Archer
: NAnt Users Cc: Durand Van Arnem; Bob Archer Subject: Re: [NAnt-users] Using "if" to test for existence of properties Same strategy here; ensure the property exists and then use the if attribute to test its value. One place where you can use the if / unless attributes to test existence is

Re: [NAnt-users] Using "if" to test for existence of properties

2010-04-13 Thread Christopher Brandt
. Then you can check to see if it is not > empty. > > > > BOb > > > > > > *From:* Durand Van Arnem [mailto:duran...@hotmail.com] > *Sent:* Tuesday, April 13, 2010 10:33 AM > *To:* NAnt Users > *Subject:* [NAnt-users] Using "if" to test for existenc

Re: [NAnt-users] Using "if" to test for existence of properties

2010-04-13 Thread Pento, Michael
et me know if I have misunderstood your issue. Thanks, Mike From: Durand Van Arnem [mailto:duran...@hotmail.com] Sent: Tuesday, April 13, 2010 10:33 AM To: NAnt Users Subject: [NAnt-users] Using "if" to test for existence of properties Hello, I could use some advice about how to handle this

Re: [NAnt-users] Using "if" to test for existence of properties

2010-04-13 Thread Bob Archer
I think I have run into this before. I think the easiest fix is to make sure the property always exists. Then you can check to see if it is not empty. BOb From: Durand Van Arnem [mailto:duran...@hotmail.com] Sent: Tuesday, April 13, 2010 10:33 AM To: NAnt Users Subject: [NAnt-users] Using &qu

[NAnt-users] Using "if" to test for existence of properties

2010-04-13 Thread Durand Van Arnem
Hello, I could use some advice about how to handle this situation: I have a property, MyProperty, that may or may not be set. I want a task to execute if the property is set, e.g. If MyProperty is not set, this task fails because NAnt appears to evaluate the message portion regard

Re: [NAnt-users] using foreach to loop through strings

2009-10-20 Thread Bill Martin
. will write a pipe delimited list of the files to the log/console HTH, Bill _ From: Beth Hechanova [mailto:bhechan...@imsco-us.com] Sent: 20 October 2009 19:32 To: nant-users@lists.sourceforge.net Subject: [NAnt-users] using foreach to loop through strings Hi, I'm trying to

Re: [NAnt-users] using foreach to loop through strings

2009-10-20 Thread Bob Archer
Your fileset it probably empty. You don't specify a basedir. Is AjaxControlToolkit literally the name of a file? BOb From: Beth Hechanova [mailto:bhechan...@imsco-us.com] Sent: Tuesday, October 20, 2009 2:32 PM To: nant-users@lists.sourceforge.net Subject: [NAnt-users] using foreach to

[NAnt-users] using foreach to loop through strings

2009-10-20 Thread Beth Hechanova
Hi, I'm trying to make my build scripts a bit more maintainable. Part of the build script's job is to tag code into svn and export code from svn. We have a directory in svn called 'thirdParty' to hold our thirdParty libs.The thirdParty directory holds thirdParty libs for many different app

Re: [NAnt-users] Using JScript.NET to implement a function

2009-08-28 Thread Bob Archer
> > Hmm... I use C#. How complex if the function you want to write? Is > there a reason you can use C#? > > > > BOb > > > OK, I was hoping to use a language that I already know. And > JScript.NET > is supposed to be supported, right? I guess so. But since I have never used it I can't help you. P

Re: [NAnt-users] Using JScript.NET to implement a function

2009-08-28 Thread Mike Frederick
Bob Archer wrote: >> Bob Archer wrote: >> I am very familiar with JScript, but not with JScript.NET or C#. I want to write a function in JScript.NET that I can use in my NAnt script. I currently have: ${script::testfunc()}

Re: [NAnt-users] Using JScript.NET to implement a function

2009-08-27 Thread Bob Archer
> Bob Archer wrote: > >> I am very familiar with JScript, but not with JScript.NET or C#. I > >> want > >> to write a function in JScript.NET that I can use in my NAnt script. > >> > >> I currently have: > >> > >> > >> > >> ${script::testfunc()} > >> > >> > >> > >>

Re: [NAnt-users] Using JScript.NET to implement a function

Bob Archer wrote: >> I am very familiar with JScript, but not with JScript.NET or C#. I >> want >> to write a function in JScript.NET that I can use in my NAnt script. >> >> I currently have: >> >> >> >> ${script::testfunc()} >> >> >> >> > public

Re: [NAnt-users] Using JScript.NET to implement a function

> I am very familiar with JScript, but not with JScript.NET or C#. I > want > to write a function in JScript.NET that I can use in my NAnt script. > > I currently have: > > > > ${script::testfunc()} > > > > public function testfunc():String

[NAnt-users] Using JScript.NET to implement a function

Hello, I am very familiar with JScript, but not with JScript.NET or C#. I want to write a function in JScript.NET that I can use in my NAnt script. I currently have: ${script::testfunc()}

Re: [NAnt-users] using properties in an included build file with a custom function

Never mind - I found my problem. I had also just included the xmlns schema attribute in my build file, however I did not included it in the included build file. Once I added it there, the properties all worked. This had nothing to do with my custom function at all. Beth

[NAnt-users] using properties in an included build file with a custom function

Hi, I have a build file that looks like: My included build file defines a property called partNumberRoot. My build script correctly found this property until I included it as a parameter to a custom function that I wrote. If I tr

Re: [NAnt-users] Using NAnt to invoke Visual Studio devenv - minimum fileset required?

> > > > BOb > > > > > > -Original Message- > > From: Artie Leech [mailto:[EMAIL PROTECTED] > > Sent: Thursday, October 02, 2008 10:53 AM > > To: nant-users@lists.sourceforge.net > > Subject: [NAnt-users] Using NAnt to invoke Visual Stu

Re: [NAnt-users] Using NAnt to invoke Visual Studio devenv - minimum fileset required?

; From: Artie Leech [mailto:[EMAIL PROTECTED] > Sent: Thursday, October 02, 2008 10:53 AM > To: nant-users@lists.sourceforge.net > Subject: [NAnt-users] Using NAnt to invoke Visual Studio devenv - > minimum fileset required? > > > Hi, > > I'm using NAnt as part of m

Re: [NAnt-users] Using NAnt to invoke Visual Studio devenv - minimum fileset required?

I think that's the only option yes. Can you not use MSBuild? BOb -Original Message- From: Artie Leech [mailto:[EMAIL PROTECTED] Sent: Thursday, October 02, 2008 10:53 AM To: nant-users@lists.sourceforge.net Subject: [NAnt-users] Using NAnt to invoke Visual Studio devenv - mi

[NAnt-users] Using NAnt to invoke Visual Studio devenv - minimum fileset required?

Hi, I'm using NAnt as part of my build process, and on my development machine I invoke devenv (part of Visual Studio) to perform a command line build. I also intend to use this on our Cruise Control Server. My question is, do I need to install a full version of Visual Studio 2005 just to get

[NAnt-users] Using the task

All, I am trying to utilize the task. I have placed the files LaunchCCNetBuild.dll and NAnt.LaunchCCNetBuild.dll into my NAnt bin folder; however, when I try to run a NAnt project containing this task I get the error message that the task is not defined. I am attempting to run the NAnt proje

Re: [NAnt-users] Using NAnt 0.86 beta1 on 64-bit Windows

12:14 PM To: [EMAIL PROTECTED]; nant-users@lists.sourceforge.net Subject: Re: [NAnt-users] Using NAnt 0.86 beta1 on 64-bit Windows Sorry, you will need the x64 version. http://www.microsoft.com/downloads/details.aspx?familyid=1AEF6FCE-6E06-4 B66-AFE4-9AAD3C835D3D&displaylang=en BOb -Orig

Re: [NAnt-users] Using NAnt 0.86 beta1 on 64-bit Windows

3 PM To: nant-users@lists.sourceforge.net Subject: [NAnt-users] Using NAnt 0.86 beta1 on 64-bit Windows All, I have been using NAnt for quite some time, but this one has me stumped...Some help if you don't mind. Have installed NAnt 0.86 beta1 on a 64-bit machine and Windows 2003 Serve

Re: [NAnt-users] Using NAnt 0.86 beta1 on 64-bit Windows

Behalf Of Mike Frederick Sent: Tuesday, April 29, 2008 3:03 PM To: nant-users@lists.sourceforge.net Subject: [NAnt-users] Using NAnt 0.86 beta1 on 64-bit Windows All, I have been using NAnt for quite some time, but this one has me stumped...Some help if you don't mind. Have installed NAnt 0.8

[NAnt-users] Using NAnt 0.86 beta1 on 64-bit Windows

All, I have been using NAnt for quite some time, but this one has me stumped...Some help if you don't mind. Have installed NAnt 0.86 beta1 on a 64-bit machine and Windows 2003 Server, 64-bit Edition. Did what I usually do, which is copy the files into a directory, modify the system PATH to in

Re: [NAnt-users] Using Integer variables in a loop

Okay thanks Bob, I'll look into this and see what I can come up with. Tim. From: Bob Archer [mailto:[EMAIL PROTECTED] Sent: Friday, April 18, 2008 8:45 AM To: Tim Mayert; nant-users@lists.sourceforge.net Subject: RE: [NAnt-users] Using Integer vari

Re: [NAnt-users] Using Integer variables in a loop

: [NAnt-users] Using Integer variables in a loop This may be a dumb question, but how do I use Integer variables in NAnt? I have a need to keep track of how many occurrences a specific sub-string appears in each line my output log file. I have a nested build that will build a few projects one

[NAnt-users] Using Integer variables in a loop

This may be a dumb question, but how do I use Integer variables in NAnt? I have a need to keep track of how many occurrences a specific sub-string appears in each line my output log file. I have a nested build that will build a few projects one after another. At the end of each project build I

Re: [NAnt-users] Using 0.86 beta 1 for .NET 3.5

you. > > Gert > > - Original Message - From: "Mike Frederick" > <[EMAIL PROTECTED]> > To: "nant" > Sent: Monday, March 10, 2008 8:51 PM > Subject: [NAnt-users] Using 0.86 beta 1 for .NET 3.5 > > >> I got NAnt 0.86 beta

Re: [NAnt-users] Using 0.86 beta 1 for .NET 3.5

t; <[EMAIL PROTECTED]> To: "nant" Sent: Monday, March 10, 2008 8:51 PM Subject: [NAnt-users] Using 0.86 beta 1 for .NET 3.5 >I got NAnt 0.86 beta1 and was trying to build some new code. The > following is an excerpt from the NAnt.exe.config file: >

Re: [NAnt-users] Using 0.86 beta 1 for .NET 3.5

age- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Mike > Frederick > Sent: Monday, March 10, 2008 3:52 PM > To: nant > Subject: [NAnt-users] Using 0.86 beta 1 for .NET 3.5 > > I got NAnt 0.86 beta1 and was trying to build some new

Re: [NAnt-users] Using 0.86 beta 1 for .NET 3.5

Frederick Sent: Monday, March 10, 2008 3:52 PM To: nant Subject: [NAnt-users] Using 0.86 beta 1 for .NET 3.5 I got NAnt 0.86 beta1 and was trying to build some new code. The following is an excerpt from the NAnt.exe.config file: and NAnt complains that .NET 3.5 is not instlled--even though

[NAnt-users] Using 0.86 beta 1 for .NET 3.5

I got NAnt 0.86 beta1 and was trying to build some new code. The following is an excerpt from the NAnt.exe.config file: and NAnt complains that .NET 3.5 is not instlled--even though it is. Some of the values above strike me as odd... 1) version="2.0" ... In the case of all the other .NET v

Re: [NAnt-users] Using nant with .resx files without resgen

Awesome, thanks Gert! -Original Message- From: Gert Driesen [mailto:[EMAIL PROTECTED] Sent: Tuesday, 12 February 2008 8:09 PM To: Andrew Armstrong; nant-users@lists.sourceforge.net Subject: Re: [NAnt-users] Using nant with .resx files without resgen Andrew, You do not need Visual

Re: [NAnt-users] Using nant with .resx files without resgen

uesday, February 12, 2008 9:54 AM Subject: [NAnt-users] Using nant with .resx files without resgen > Hi all, > > > > I have been trying to get nant to compile an application and have needed to > some .resx files as some winforms make use of an external icon. > > &

[NAnt-users] Using nant with .resx files without resgen

Hi all, I have been trying to get nant to compile an application and have needed to some .resx files as some winforms make use of an external icon. I now cannot compile using nant on a machine without Visual Studio (resgen.exe) being installed. Is there some way to let nant simply use

Re: [NAnt-users] Using a Fileset with cvs-checkout

___ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Roebuck, Alex Sent: Thursday, December 13, 2007 4:00 PM To: nant-users@lists.sourceforge.net Subject: SPAM WARNING!: [NAnt-users] Using a Fileset with cvs-checkout How does a files

[NAnt-users] Using a Fileset with cvs-checkout

How does a fileset work with cvs-checkout? I'd like to use one to restrict which folders/modules are checked out. For example: I've tried all sorts of syntax and combinations, and the cvs-checkout task appears

Re: [NAnt-users] Using a property as a counter

It happens. BTDT! BOb From: Ken Rogoway [mailto:[EMAIL PROTECTED] Sent: Tue 12/11/2007 6:11 PM To: Bob Archer; nant-users@lists.sourceforge.net Subject: RE: [NAnt-users] Using a property as a counter I am an idiot. Please accept my humble apology. I was

Re: [NAnt-users] Using a property as a counter

: [NAnt-users] Using a property as a counter Parameters overwrite by default. Here is a quick build file I tested this with. Perhaps your if test isn't working. Throw an echo in it and see if it displays as many times as you are expecting. -Ori

Re: [NAnt-users] Using a property as a counter

The isn't really required... unless you have an fileset. BOb -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Guy Metz Sent: Tuesday, December 11, 2007 5:14 PM To: 'Ken Rogoway'; nant-users@lists.sourceforge.net Subject: Re: [NAnt

Re: [NAnt-users] Using a property as a counter

bject: [NAnt-users] Using a property as a counter I want to count the number of times a particular test is true. I have the following Nant script snippet: There were ${WarningCounter} warnings. I always get 1 for the warning counter, ev

Re: [NAnt-users] Using a property as a counter

, 2007 3:59 PM To: Ken Rogoway; nant-users@lists.sourceforge.net Subject: RE: [NAnt-users] Using a property as a counter There were ${WarningCounter} warnings. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On

[NAnt-users] Using a property as a counter

I want to count the number of times a particular test is true. I have the following Nant script snippet: There were ${WarningCounter} warnings. I always get 1 for the warning counter, even if there is more than one line in the file with

[NAnt-users] Using the task

Does anyone use the NAnt task? I need to use it and I keep getting errors. If I setup my NAnt project like: http://localhost:21234/CruiseManager.rem"/> I get: * [launchccnetbu

Re: [NAnt-users] Using NAnt with Visual C++ 6.0

To: NAnt Users List (nant-users@lists.sourceforge.net) Subject: [NAnt-users] Using NAnt with Visual C++ 6.0 Hello, I have been using NAnt for the past couple of years, but only on Visual Studio 2005 projects. I have now been tasked to setup

[NAnt-users] Using NAnt with Visual C++ 6.0

Hello, I have been using NAnt for the past couple of years, but only on Visual Studio 2005 projects. I have now been tasked to setup NAnt builds for a large number of Visual C++ 6.0 projects. Does anyone have any links to any knowledge out on the internet that will help me in this quest? Anoth

[NAnt-users] Using vbc to compile a WinForms Project

Guys, 1. I've tried all sorts of thing to compile a windows forms app using vbc task(It compiles fine with Visual Studio). My VS2005 WinForms project uses 'Enable application framework' property (Project->Properties->Application). This results in having a Application.MyApp & Application.Designer.

Re: [NAnt-users] Using ftp from nant on windows

Bonio Lopez wrote: > Hi, > > I think it would make more sense to just create a template configuration in a file, and then use a NAnt copy with a filterchain to create the actual script file. I'd also encourage using sftp or some other mechanism that obviates the need to have the passw

[NAnt-users] Using ftp from nant on windows

Hi, Following shows how to use ftp on windows machines from nant.(May be somebody could need that. )

[NAnt-users] using does not have an effect

Hi, I am trying to compile a project which references other dll's. one of the dll is a COM and i have registered it to the GAC and then registered to the registry using regasm as below before compiling the below project dotnet_servicemgr. 1. gacutil -i abc.dll 2. regasm abc.dll /tlb:abc.tlb Bel

Re: [NAnt-users] using asminfo

Gert Driesen schrieb: >> -Original Message- >> From: [EMAIL PROTECTED] >> [mailto:[EMAIL PROTECTED] On Behalf Of >> Henning Eiben >> Sent: woensdag 19 april 2006 7:38 >> To: nant-users@lists.sourceforge.net >> Subject: [NAnt-users] using asminf

RE: [NAnt-users] using asminfo

> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Henning Eiben > Sent: woensdag 19 april 2006 7:38 > To: nant-users@lists.sourceforge.net > Subject: [NAnt-users] using asminfo > > Hi, > > I'm using the

[NAnt-users] using asminfo

Hi, I'm using the asminfo to generate an AssemblyInfo.cs for my project, if it doesn't already exists. But how do I get the file added to my project using NAnt? I thought of using the xmlpoke task to add an entry to the csproj file, but xmlpoke can only replace entries not add an entry (at least

Re: [NAnt-users] Using Include

Rod Ayers wrote: Hi, all I'm trying to get a clear understanding of the impact of using . 1. The contents of the included file makes the included code act as if it was all part of one build file. 2. Tasks in the included file would be invoked with , rather than as with "separate"

[NAnt-users] Using Include

Title: Using Include Hi, all I'm trying to get a clear understanding of the impact of using . 1.  The contents of the included file makes the included code act as if it was all part of one build file.  2.  Tasks in the included file would be invoked with , rather than as with "sep

RE: [NAnt-users] using vb for script task

> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Felice Vittoria > Sent: woensdag 15 maart 2006 18:04 > To: Nant-Users (E-mail) > Subject: [NAnt-users] using vb for script task > > Hello all, > > I want to use

[NAnt-users] using vb for script task

Hello all, I want to use vb for the script task. Is that vb.net or vbscript? Thanks, Felice --- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends applications into web and mobile media. Attend the liv

Re: [NAnt-users] using custom function from one script task in another one

> how can custom functions from one script task be > used by custom functions from another script task? Have a look in NAnt/examples/UserTask. I use something similar and it works well, the only difference to the example is I don't compile every time, rather only if the DLL is missing. peace si

[NAnt-users] using custom function from one script task in another one

Hello, how can custom functions from one script task be used by custom functions from another script task? Best regards Helmut Dipper -- Helmut Dipper | AED-SICAD Aktiengesellschaft phone: +49 89 45026 320 | Postfach 830754 fax: +49 89 45026 316 | D-817

[NAnt-users] Using NANT to build ASP.NET Web Site and Web Service projects

Hi there   I am trying to use NANT to check out a solution out of VSSd in order to perform clean builds on a remote build server. I have created a top level directory for my solution and placed included sub projects (business layer and UnitTests) in sub directories below this directory. I

Re: [Nant-users] using Mono as default framework

Hi Nabeel, By default SharpDevelop uses NAnt 0.84 which ships with SharpDevelop itself. NAnt 0.84 does not support Mono, but NAnt 0.85 does. Install NAnt 0.85 RC 3 and then configure SharpDevelop to use this new version via Tools->Options->Tools->NAnt. If you have any other SharpDevelop problem

[Nant-users] using Mono as default framework

Hi all, I was just trying out SharpDevelop and Mono on the windows platform. It appears to be a fantastic tool so far, but I can't figure out how to specify Mono as the default framework for NANT. I tried specifying "-defaultframework:mono-1.0" in the external tools option in SharpDevelop, but try

RE: [Nant-users] using the < operator causes an error.

I believe that because the NAnt config file is XML, you need to escape the XML character '<', so: -Original Message- From: Stephen Ho [mailto:[EMAIL PROTECTED] Sent: Thursday, August 04, 2005 10:50 AM To: nant-users@lists.sourceforge.net Subject: [Nant-users] using t

[Nant-users] using the < operator causes an error.

Hi, I am new to Nant. When I try to use the < operator to compare 2 strings or numbers, it gives me an error. The > operator works fine. I am using RC3 on winXP. Example: Error Message: Error loading buildfile. '<', hexadecimal value 0x3c, is an invalid attribute character. It runs

RE: [Nant-users] using foreach with a fileset

] On Behalf Of Stephen Lewis > Sent: Thursday, July 14, 2005 9:26 AM > To: nant-users@lists.sourceforge.net > Subject: [Nant-users] using foreach with a fileset > > I'd like to be able to generate a list of files in the form of a file > set, and then perform several sets of opera

[Nant-users] using foreach with a fileset

I'd like to be able to generate a list of files in the form of a file set, and then perform several sets of operations on the file set. I thought I'd start with something simple to verify the files in the file set, like iterate through the list and print the name of each file. According to the he

RE: [Nant-users] using nant with different versions of Visual Studio

y 05, 2005 10:22 AM To: nant-users@lists.sourceforge.net Subject: [Nant-users] using nant with different versions of Visual Studio   Hi,   I have a product that has different components that are built with different versions of Visual Studio products – i.e. VC++ 6.0, Visual Studio .NET 2002,

[Nant-users] using nant with different versions of Visual Studio

Hi,   I have a product that has different components that are built with different versions of Visual Studio products – i.e. VC++ 6.0, Visual Studio .NET 2002, and Visual Studio .NET 2003.  I would like to create one NAnt script that will build all the various components.   I’ve been us

[Nant-users] Using the updated Vault block

First off, kudos to the ccnet team for improving the Vault support. I am a *lot* happier with the user filters, get source and labeling support for Vault now. Nant did an okay job, but as far as notification went, it was just a hair "too late." Anyway, I am trying to update to the latest version

Re: [Nant-users] Using libraries in the GAC to compile

On 6/24/05, Julien Sobrier <[EMAIL PROTECTED]> wrote: > Is it possible to use the GAC to reference libraries needed to compile > my files? I went through the NAnt documentation, I couldn't figure out > to make a reference to a library in the GAC. Can you do it with C# compiler from the command lin

[Nant-users] Using libraries in the GAC to compile

Hello, Is it possible to use the GAC to reference libraries needed to compile my files? I went through the NAnt documentation, I couldn't figure out to make a reference to a library in the GAC. Thank you Julien --- SF.Net email is sponsored

RE: [Nant-users] Using (formerly "Porting VBScript into C# Script Task")

Here are four examples from the task that modifies our Code Smith configuration file before executing the code generation task. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Chris Hansen Sent: Tuesday, June 21, 2005 11:04 PM To: Jeremy P. Ow

RE: [Nant-users] Using Nant Functions

Balaji, You need NAnt 0.85 for expression/function support. Gert > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Meruva, Balaji > Sent: vrijdag 10 juni 2005 18:10 > To: 'nant-users@lists.sourceforge.net' > S

[Nant-users] Using Nant Functions

Hi, I am trying to Use NANT Functions. Mainly i want to get the current date so that i can dynamically create logfiles with using date timestamp do I need to configure nant or Environment variables to use NANT functions Here is my Nant.build file http://nant.sf.net/schemas/nant-0.84.win32.ne

Re: [Nant-users] Using XML as property values

Eric Williams wrote: I am trying to use some xml with the markup values of the xml'ish characters and NAnt it messing with them. When setting the following property Returns: [echo] 0>hello0 I want: [echo] 0hello

[Nant-users] Using XML as property values

I am trying to use some xml with the markup values of the xml'ish characters and NAnt it messing with them. When setting the following property Returns: [echo] 0>hello0 I want: [echo] 0hello0

Re: [Nant-users] Using fileset refids under a master directory

Once a fileset has been created, I don't think there's any way to change the contents, as far as I know. With this in mind, you should be able to do something like what you're after by creating the fileset as late as possible: -- Troy

Re: [Nant-users] Using fileset refids under a master directory

Hmm... my sample has a bug... yeah that's it sorry, hehe. Just a quick question... what i originally intended was this: Well i know it's not like that (the refid would fail). Maybe a basedir property for the fileset? Is that possible? -- Ing. Leonardo Quijano Vincenz

Re: [Nant-users] Using fileset refids under a master directory

Leonardo Quijano Vincenzi wrote: Is there any way to "reuse" a fileset under different directories in tasks? Something like this: This doesn't seem to work like that. That should work ok. What errors oru

[Nant-users] Using fileset refids under a master directory

Is there any way to "reuse" a fileset under different directories in tasks? Something like this: This doesn't seem to work like that. Thanks! -- Ing. Leonardo Quijano Vincenzi

RE: [Nant-users] Using Mono C# as opposed to CSC

Of > Michael Flippin > Sent: donderdag 10 maart 2005 22:15 > To: nant-users@lists.sourceforge.net > Subject: [Nant-users] Using Mono C# as opposed to CSC > > I haven't found any documentation on how to switch the compiler from > csc to mcs. Also, how do I specify

[Nant-users] Using Mono C# as opposed to CSC

I haven't found any documentation on how to switch the compiler from csc to mcs. Also, how do I specify packages with nant like you can with mcs where you do -pkg:gecko-sharp? --- SF email is sponsored by - The IT Product Guide Read honest & can

[Nant-users] using nant to compile com interops

ying to ues Nant to build a project which is reliant on a number of COM objects. I am using the solution task and it works fine except for when the dll minor version is greater than 9, for example i am using the MAPI dll, which is version 1.21 I looked into the code that parses that part of the p

Re: [Nant-users] Using RefId with

rgets like that available on the wiki or even as part of the std NAnt package. Ian -Original Message- *From:* Gert Driesen [mailto:[EMAIL PROTECTED] *Sent:* Tuesday, January 04, 2005 3:40 PM *To:* Hart, Leo; nant-users@lists.sourceforge.net *Subject:* RE: [Nant-users]

  1   2   3   >