[NAnt-users] [FYI] sysinfo task changed

2013-03-28 Thread Dominik Guder
Hi Folks, with Win7-64bit sysinfo task got a problem with env variables named ProgramFiles(x86). This is wihtin nant an illegal variable name and thus caused sysinfo to fail. The only way was to set 'failonerror=false' for sysinfo task to get at least the other variables. After some discussion

Re: [NAnt-users] Cannot get function version::get-build to work

2012-10-18 Thread Dominik Guder
Hi, as in http://nant.sourceforge.net/release/latest/help/functions states version::get-build needs a version as parameter. Therefore you need to do a version::parse() before. In addition you need to encapsulate your version with ' to get a string. value="${version::get-build(version::parse('1.0.

Re: [NAnt-users] Nant property passed to CC.NET for pass/fail condition?

2012-03-19 Thread Dominik Guder
Hi Chris, I don't know what your "fail" target does, but what bob mentionened before was using the task: http://nant.sourceforge.net/release/latest/help/tasks/fail.html hth Dominik Am 19.03.2012 23:00, schrieb Chris Fouts: > To further explain, here’s how I call my evaluate and call

Re: [NAnt-users] task with security certificates

2012-02-02 Thread Dominik Guder
Hi, since certificates is a fileset, I think it should be something like: http://password.protected.site/index.html"; dest="secure/index.html"> hth Dominik -- The answer to the great question of life, the universe and everything is 42 (Dougl

Re: [NAnt-users] Task executing bath file not ending

2012-01-26 Thread Dominik Guder
Am 26.01.2012 20:30, schrieb Quince, Devin: > > > > > > And the batch file that is being called by chaininstalls.bat file is this > > cd c:\DLS > > java -Dfelix.config.properties=file:conf/config.properties > -Dtroppus.http.jetty.resource.base="c:/DLS" > -Dlogback.configurationFile="c:/DLS/con

Re: [NAnt-users] Windows Installer for NAnt

2011-11-11 Thread Dominik Guder
Hi Timotheus, thanks for your suggestion. IMHO there is no other installer right now. We started thinking of creating one since the download/unblock issue drove us nuts. In office we created a separate svn repository just for dev tools like nant and wix. So the users just do an update an she i

Re: [NAnt-users] Nant Exec task output to a file

2011-10-11 Thread Dominik Guder
Hi, you could also try CI-Factory-1.0.1.5.exe or any other from http://code.google.com/p/ci-factory/downloads/list hth Dominik Am 10.10.2011 23:31, schrieb ssingh46: > > Hi Dominick, > I am not able to download this EXE. Its timing put. > > > Dominik Guder wrote: >> &g

Re: [NAnt-users] Nant Exec task output to a file

2011-10-10 Thread Dominik Guder
Hi, maybe you are looking for something like this: http://jayflowers.com/WordPress/?p=132 In particular You can give it a try: Download latest ci-factory from http://ci-factory.googlecode.com/files/CI-Factory-Beta-1.1.0.47.exe - Extract it to a folder named "CI Factory" where you like - Copy

Re: [NAnt-users] rename a folder

2011-09-27 Thread Dominik Guder
Hi Bob, I woudld second Khairuddin proposal. In addition you might add attribute overwrite="true" to ensure everything will be overwritten and source can be deleted (by move). And maybe you should use to move all subdirs to. hth Dominik Am 28.09.2011 00:51, schrieb Khairuddin Abdullah: > Bo

Re: [NAnt-users] nant 0.91 alpha2 with VS 2010

2011-09-23 Thread Dominik Guder
Hi Neil, give us some other day. We are on the way doing next nant release. So far Dominik Am 23.09.2011 21:05, schrieb Liu, Neil: > Hi there, > > Is there a way to build a Visual Studio 2010 solution with > 'nant-0.91-alpha2'? I got "Solution format of file 'xxx.sln' is not > supported" error w

[NAnt-users] Default excludes for hg and git

2011-09-20 Thread Dominik Guder
Hi foks, I need your input: As you might know nant fileset has a bunch of default excludes. I want to name mainly cvs and svn administrative folders "**/CVS/**" and "**/.svn/**" as well as cvs ignore file "**/.cvsignore". I want to add some more to this list. Especially for Git and Mercurial. T

Re: [NAnt-users] UpdateAssemblyVersion Task error

2011-09-20 Thread Dominik Guder
Hi Jim: "asminfo" should be there, it is part of NAnt.DotNetTasks.dll which should be in your bin folder. Help: http://nant.sourceforge.net/release/latest/help/tasks/asminfo.html Besides this loadtasks should load also latest Nant.Contrib.Tasks.dll What errors do you get? Please try following:

Re: [NAnt-users] UpdateAssemblyVersion Task error

2011-09-20 Thread Dominik Guder
Am 20.09.2011 00:03, schrieb Macdiarmid, James D.: > Anyone ever see this error with the UpdateAssemblyVersion Task? > > Invalid element . Unknown task or datatype. > > Here is how I have it in the script. > Hi, I don't know UpdateAssemblyVersion task. The one in nant is called "asminfo" But if y

Re: [NAnt-users] nant hangs when executing devsrv.exe

2011-09-16 Thread Dominik Guder
Hi, nant's exec task waits until program terminates to check the returned exit code to fail when exit code <> 0. Please add span="true" to exec task then it will work. You can use "pidproperty" to get the process id when you want to save it for stopping the webserver at the end of your script. (I

Re: [NAnt-users] Getting errors after upgrading to NAnt .90 - Any ideas?

2011-09-16 Thread Dominik Guder
Hi James, calling "LoadTasks" is by design. For short: Nant.exe crawls all *Tasks.dll files in its folder and search for Tasks. One question: Did you unblock the downloaded zip file? From nant's issue tracker: "I had this exact same problem. It comes from the assembly not being trusted. Windows

Re: [NAnt-users] Targeting .net 2.0 x86 on x64 machine

2011-08-31 Thread Dominik Guder
and my App will run with 32bit on target machine? Maybe I'll check this first tomorrow. And going with csc/vbc task is not within our focus since this brings another layer of file management into our projects. > > -Original Message- > From: Dominik Guder [mailto:o...@guder.org

[NAnt-users] Targeting .net 2.0 x86 on x64 machine

2011-08-31 Thread Dominik Guder
Hi folks, I'm going crazy. I don't have any idea how to achieve my issue: We are moving to Win7 x64 machines. And some of our older projets must be built for .net 2.0 x86. I can't get this done neither with nant nor with msbuild itself. Is anybody out there who has managed this issue? Thanks

[NAnt-users] Repository maintenance folder deletion

2011-08-18 Thread Dominik Guder
Hi folks, last week I added microsofts nmake to cvs repository to get the compilation working on our CI server at teamcity.codebetter.com. http://teamcity.codebetter.com/project.html?projectId=project69 Since we are not sure whether this file is freely redistributable or not we decided to remov

Re: [NAnt-users] Execute a target or task from the command line

2011-08-05 Thread Dominik Guder
Hi, yes this is possible. just put the taget name(s) you want as command line parameters e.g. C:\Projects>nant clean_common_dist will only cleanup C:\Projects>nant clean_common_dist dist will do same as your "all" You might separate your tasks into several targets than you can build whatever y

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] Solution format of file is not supported.

2011-05-27 Thread Dominik Guder
Am 26.05.2011 21:19, schrieb Jed Padilla: > The solution is indeed newer, it is VS2010. I will take a look at the > link you gave below and see if that lets me do what I want. We are it the process of getting VS2010 projects working at least with Brian's proposal including dependency resolving.

Re: [NAnt-users] Are people still using NAnt

2011-03-14 Thread Dominik Guder
Am 14.03.2011 19:11, schrieb Bjerstedt, Tony [Audatex - Americas]: > I too would like to see the NAntContrib project reopened as we use > several tasks from this group. Some of our code is still VB6 and I have > been trying to move the build for this component to NAnt. I ran into a > roadblock as t

Re: [NAnt-users] Are people still using NAnt

2011-03-14 Thread Dominik Guder
Hi, we are using nant for all projects here. But the next big step we need is .Net 4.0. I'm willing to contribute here. So far Dominik Am 14.03.2011 16:54, schrieb Bob Archer: > Hi Folks... we rely heavily on NAnt for our builds. But, it seems that > development and activity here has really sl

Re: [NAnt-users] Determining whether a file is a .NET assembly or not

2010-08-31 Thread Dominik Guder
Hi, this is somewhat offtopic here on nant users list. But since I did this before I will show you a possible solution Am 30.08.2010 16:55, schrieb Pento, Michael: > > > I am trying to loop through a directory filled with about 2,000 DLL’s > and EXE’s to see which ones are .NET assemblies. >

[NAnt-users] SDK chm file in zip package

2010-08-05 Thread Dominik Guder
Hi, sorry for resending, but users didn't work I'm trying to build the nightlies on teamcity.codebetter.com The breaking point right is now the SDK CHM file. First of all I'm wondering if anybody out there is reading/needing this chm file. Could you please just drop an answer whether you need t