Re: [Nant-users] i got an error:fatal error CS2008: No inputs specified

2004-06-11 Thread Sascha Andres
Hi, * Ding, Patty Q. wrote on 11.06.2004 (15:15): > [csc] Compiling 0 files to D:\Projects\nantbuild\MimeoAnalyzer.dll. How does your build file look like? This error seems as no input files has been specified in the sources. It should look like this: In n

[Nant-users] Re: [nant-dev] ftp task

2004-06-04 Thread Sascha Andres
Hi, * Sascha Andres wrote on 03.06.2004 (19:24): > I splitted the ftp into ftpdown and ftpup, that made the > start easier. And IMHO two tasks are easier than one task > with a switch. Now I make a proposal to enhance the tasks and to make them one. My proposal would be to use two file

[Nant-users] ftp task

2004-06-03 Thread Sascha Andres
Hi, I've done a small start for the ftp task. Well, it's a small start. Basicly I'm capable of downloading / uploading one file at a time. I used code from http://sourceforge.net/projects/dotnetftpclient/ to get this tasks running. My tests run smoothly, but there are some features that are miss

[Nant-users] Bitmap resource

2004-06-02 Thread Sascha Andres
Hi, maybe I'm stuck in the wrong way, but how do I include a bitmap as a resource? -sa -- sa at programmers-world dot com http://www.livingit.de Internet sites: http://www.not2long.net - Make long links short Boomarks online: http://www.mobile-bookmarks.info --

[Nant-users] nant task problem

2004-05-23 Thread Sascha Andres
Hi, I got a small problem with the nant task. I have those calls: My init looks like this: Straightforward. But ne

Re: [Nant-users] NAnt 0.84 Release Candidate 2 available

2003-12-22 Thread Sascha Andres
Hi, * Marco Canini wrote on 22.12.2003 (03:35): > Why don't you call pkg-config for detecting mono presence? > "pkg-config --modversion mono" gives you mono version > "pkg-config --variable=prefix mono" gives you mono base dir, than you > add /bin and /lib pkg-config is not available on SuSE and

Re: [Nant-users] Using the License tag

2003-12-03 Thread Sascha Andres
Hi, * Block, Jeffrey A. (Jeff) wrote on 03.12.2003 (14:10): > process! Before the csc tag, as an argument to the csc tag...??? Any help in Before the csc task. It generates a license file which then must be included as a resource in the csc task. -sa -- sa at programmers-world dot com http://

[Nant-users] Conditional define

2003-11-21 Thread Sascha Andres
Hi, I wanted to add a conditional define. That means if variable xyz is set, add a define="XYZ" to the csc task. As fas as I've seen, Imust put 2 csc task calls with if and unless. Is there a more elegant version of doing this? -sa -- sa at programmers-world dot com http://www.livingit.de Book

Re: [Nant-users] asminfo und ComVisible Attribut

2003-11-15 Thread Sascha Andres
Hallo Gert, * Am 14.11.2003 (19:35) schriebst Du: > Are you sure about this, seems very unlikely ? Here at home your example functions as supposed. I have overseen following part of the docs: "For example, if you want to initialize System.ObsoleteAttribute, you only need to reference it as Obsolet

Re: [Nant-users] asminfo und ComVisible Attribut

2003-11-14 Thread Sascha Andres
Hallo Gert, * Am 14.11.2003 (17:41) schriebst Du: > I think I'm missing the problem here : why is '[assembly: > ComVisibleAttribute(false)]' wrong ? The compiler doesn't reject ComVisibleAttribute set to false, but when looking at the compiled result, ComVisible is set to true (default), hence the

[Nant-users] asminfo und ComVisible Attribut

2003-11-14 Thread Sascha Andres
Hi, I want to set the ComVisible attribute to false. It is defined in System.Runtime.InteropServices. So I added an import tag for that assembly to asminfo's imports. I also added '' to the attributes node. The task now genereates '[assembly: ComVisibleAttribute(false)]' which should be '[assembly

Re: [Nant-users] Exec --> parameters

2003-09-17 Thread Sascha Andres
Hi, * Dejan KADUNC wrote on 17.09.2003 (08:00): > Is it possible to pass multiple parameters in "exec" command from nant? Use multiple childelements. -sa -- sa at programmers-world dot com http://www.livingit.de Bookmarks online: http://www.mobile-bookmarks.info Soon availabl

Re: [Nant-users] NAnt 0.8.3 final: External Program failed

2003-09-15 Thread Sascha Andres
Hi, * Sascha Andres wrote on 15.09.2003 (14:42): > I get also problems whith this tests. The did not stoped > nant from working correctly here. After you typed nant, > change build\nant-0.8.x-debug\NAnt.exe.config default to > net1-1. After that run nant test. That makes the test >

Re: [Nant-users] NAnt 0.8.3 final: External Program failed

2003-09-15 Thread Sascha Andres
Hallo Javed, * Am 15.09.2003 (12:33) schriebst Du: > yes i have installed only .netframework 1.1 but i have edited this file already > setting defaultframework to .net1.1. I get also problems whith this tests. The did not stoped nant from working correctly here. After you typed nant, change build\

Re: [Nant-users] csc Task: How to use resources

2003-09-15 Thread Sascha Andres
Hi, * Ian MacLean wrote on 14.09.2003 (21:37): > What you're seeing is a recently introduced bug in compilerbase.cs. I've > committed a fix that should appear in the next nightly build. I can confirm that the resources are running now again. After I got the license task running, I'm comfortable w

Re: [Nant-users] 0.8.3 final

2003-09-14 Thread Sascha Andres
Hi, * Gert Driesen wrote on 07.09.2003 (22:46): > It still needs lots of work, certainly the docs that are not automatically > generated. > > We appreciate all the help we get. The csc task needs an example covering more of the features (I would submit one, as soon as I get the resources running)

Re: [Nant-users] 0.8.3 final

2003-09-14 Thread Sascha Andres
Hi, * Ian MacLean wrote on 08.09.2003 (10:24): > NAntContrib binaries ship with the 0.83 release. Unless you have to be > using the latest cvs version of NAnt they should work fine. I downloaded the 0.8.3 release zip - no asminfo task. Downloading the latest nightly build brings the asminfo task.

[Nant-users] csc Task: How to use resources

2003-09-14 Thread Sascha Andres
Hi, after upgrading to the latest nightly build, I have great problems regarding the csc task. It seems the resources are now no fileset anymore (the help states array), How to embed resources now? I tried multiple times, but this helps not. isn't appropriate I think. May I suggest a more comp

[Nant-users] ArgumentException bei license task

2003-09-13 Thread Sascha Andres
Hi, I have a problem with the license task. I get an System.ArgumentException with message 'Der Pfad hat ein ungülktiges Format." (Something like "The path has an invalid format.") I copied the path from explorer. This occurs since I updated to the latest daily build (because I want to take a clo

Re: [Nant-users] NAnt 0.8.3 final: External Program failed

2003-09-13 Thread Sascha Andres
Hi, * Javed Iqbal wrote on 12.09.2003 (16:33): > i typed bin\nant in command prompt and after a number of BUILD SUCCEEDED, the > process ends with BUILD FAILED. The error message is, > > E:\nant\NAnt.build(120,10): > External Program Failed: E:\nant/build/nant-0.8.3.50105-debug/bin/NAnt.exe > (re

Re: [nant-dev] Re: [Nant-users] 0.8.3 final

2003-09-07 Thread Sascha Andres
Hi, * Ian MacLean wrote on 08.09.2003 (01:09): in response to myself. > both of these tasks exist right now. Sourcesafe tasks are in > NAntcontrib. And I've started on perforce tasks. Yes I've overseen them. Sourcesafe is in NAntcontrib - which failed to build when I tried last time, so I never

Re: [Nant-users] 0.8.3 final

2003-09-07 Thread Sascha Andres
Hi, * Ian MacLean wrote on 07.09.2003 (16:04): > Jaroslaw Kowalski wrote: > >Maybe it's time to have version 1.0 released ? I believe NAnt is stable > >enough now to handle even large projects like mono both on windows and > >linux and having "production" version 1.0 would only make more people > >

[Nant-users] Building with latest daily (26.08.) fails

2003-08-26 Thread Sascha Andres
Hi, I get errors compiling the 08/26 version of the daily builds. See http://www.livingit.de/output.txt for log. This is thought as an information only. It seems something with the CVS goes wrong. -sa -- sa at programmers-world dot com http://www.livingit.de Bookmarks online: http://www.mobil

[Nant-users] nantcontrib - Build failed

2003-06-22 Thread Sascha Andres
Hi, I downloaded the latest nightly build from nantcontrib. I soon have seen that there ist no build, but you must build it on your own. The buildfile for nant is definitly broken it seems like not everything what's needed is put in the zip file. The VS.NET project file has broken references and

Re: [Nant-users] if and comparison

2003-06-22 Thread Sascha Andres
Hi, * Anthony LoveFrancisco wrote on 21.06.2003 (12:29): > You can do this using the

[Nant-users] if and comparison

2003-06-21 Thread Sascha Andres
Hi, I do have a porperty called begin. For example it's set to 2003. And I have a tstamp using properties date as default and year as . If = begin I want to set property copy to 2003. If begin is 2002 indeed, I want copy to be 2002-2003. I did not found a possibility to do this. Any hint

Re: [Nant-users] A new NAnt scripting tool - NAntpad

2003-06-06 Thread Sascha Andres
Hi, I just looked at your program. I realized one thine thing: It seems the options for the tasks are hard coded. This is, options for unknoen tasks will not be shown. Do you have any plans on changing this to be expandable in the tasks you support without recompiling? For example set the nant pat

Re: [Nant-users] Licensing issue

2003-05-29 Thread Sascha Andres
Hi, Sascha Andres wrote on 29.05.2003 (13:15): > This turns out fully functional, but if I try to use this > tip when building to another directory then the > sourcedirectory, it blows up... I had a typo. I created a Sample.exe.linceses file which cannot function as a license. After c

Re: [Nant-users] Licensing issue

2003-05-29 Thread Sascha Andres
Hi, in a sample I got from devcomponents.com they put all the code and a compile bat in one dir. The license.licx file looks like this: DevComponents.DotNetBar.DotNetBarManager, DevComponents.DotNetBar The lc call in the compile.bat they provided looks like this: \lc.exe /target:WindowsApplic

Re: [Nant-users] Licensing issue

2003-05-29 Thread Sascha Andres
Hi, Am 28.05.2003 (15:17) schrieb Swann, Eric: > I'm also struggling with this same issue. If anybody figures out how to > make this work, please let us know. > [...] I got the answer from devcomponents.com to copy the dll in the same directory as lc.exe. Well, it did not help me (when compiling

Re: [Nant-users] Licensing issue

2003-05-29 Thread Sascha Andres
Hi, Am 28.05.2003 (13:42) schrieb James Texter: > Here is my license task(watch for word wrap). One thing to note is that > I get no errors, it just doesn't seem to get embedded into the EXE. > I've tried adding in SampleApp.exe.licenses as a source, a reference, a > resource, and a module. Each

Re: [Nant-users] Licensing issue

2003-05-29 Thread Sascha Andres
Hello, James Texter schrieb am 28.05.2003 (11:16): >have gotten stuck with it. I have the task creating a >.license file, but what do I do with it after that? Is anyone else >using this particular 3^rd party component? If so, how did you get >around this? Any help is greatly ap