RE: AW: [Nant-users] Solution Task and Strong Names

2004-03-30 Thread Noel Gifford
Taken from: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnbda/html/ tdlg_ch5.asp Don't Alter the Build Output Path You might be tempted to alter the output paths of your projects in order to build to a single folder and then establish file references to that folder. Do not do t

[Nant-users] CVS Nant with CVS Mono (Part 2)

2004-03-30 Thread Raúl Romero
Now I use 'export MONO_NO_UNLOAD=1', and I recompiled mono with ICU suport (as explain me Gert Driesen in his email. The email is attached). Now, Nant compile right, but every time that I execute Nant.exe, It works fine, but at the end it crash with a Segmentation fault. Look this output when I

Re: [Nant-users] Sending the log

2004-03-30 Thread Gert Driesen
This information is available in the mailing list archives, but I'll try to write a FAQ (http://nant.sourceforge.net/faq.html) about this some time this week. Gert - Original Message - From: "Peter Jones" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, March 30, 2004 11:39 PM

[Nant-users] Sending the log

2004-03-30 Thread Peter Jones
I would like to send the output log of nant via an email.  Can I do this in a single build file or do I need to have  and tasks in a wrapper build file?   ---Peter G JonesUniversity of Canterbury, NZ--- Senior Analyst/ProgrammerMicroso

Re: [Nant-users] Exclude Resources with CSC tag inquiry concering resx files

2004-03-30 Thread Michael Dang
Geesshh.. Looking at too much code again. Thanks Gert. You pointed me to the problem. I should have known not to do that. --- Gert Driesen <[EMAIL PROTECTED]> wrote: > Michael, > > Try removing ${source.dir.unarchive}\ from the name attribute of > the > excludes elements : > > prefix="${m

Re: [Nant-users] CVS NANT with CVS Mono Framework

2004-03-30 Thread Gert Driesen
You might be able to resolve (well its a workaround/hack) this using http://nant.sourceforge.net/faq.html#building-mono-1. Let me know if this works. Gert - Original Message - From: "Raúl Romero" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 31, 2004 3:41 AM Subject:

Re: [Nant-users] Exclude Resources with CSC tag inquiry concering resx files

2004-03-30 Thread Gert Driesen
Michael, Try removing ${source.dir.unarchive}\ from the name attribute of the excludes elements : Let me know if it works. If not, please submit a bug report and attach a repro to it. Gert - Original Message - From: "Michael Dang" <[EMAIL PROTECTED]> To: <[EM

Re: [Nant-users] CVS NANT with CVS Mono Framework

2004-03-30 Thread Jaroslaw Kowalski
Try this: export MONO_NO_UNLOAD=1 before running nant. Make sure you're running from mono/cvs as this "feature" was introduced recently and is not present in 0.31. Jarek - Original Message - From: "Raúl Romero" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 31, 2004

[Nant-users] CVS NANT with CVS Mono Framework

2004-03-30 Thread Raúl Romero
Hi people, I have one question. I was compiling NANT on GNU/Linux with Mono 0.31 (CVS Release), and it compiled fine but when it try to use nant.exe with mono to use nant.build, it return to me this message: --- Entering directory `/usr/src/mono-dev/nant' mono bin/NAnt.exe -bui

[Nant-users] Exclude Resources with CSC tag inquiry concering resx files

2004-03-30 Thread Michael Dang
Hello, I noticed that in my builds with the CSC tag that specific excluded .resx files that are declare seem to get compiled. I determined this by viewing my output of the task. Here is my task.

[Nant-users] style task question

2004-03-30 Thread Michael Rudge
I am trying to use the style task and vsconvert.xsl to create a build from a csproj file, but I get this error: "There is invalid data at the root level. Line 21, position 4." That is the end of this section in the csproj file: Is this due to no StartupObject? I am new xml/xslt so any help is gre

[Nant-users] Is Debug Attribute Only True/False?

2004-03-30 Thread Brian Beaudet
In the following line: is the debug attribute only true or false? What if I have defined a new configuration called UnitTest (for instance)? How can I compile a configuration that is neither debug or release? Brian --- This SF.Net email i

RE: [Nant-users] Nant & Unit Tests From Conditional Compilation

2004-03-30 Thread Brian Beaudet
Gary, I appreciate your input and I'm trying to digest it now. How do you reference the private methods you will be testing if they are in a separate class (or project)? Secondly, is this separate unit testing class in the same solution? Or another solution altogether. Lastly, I've only see

Re: [Nant-users] Nant & Unit Tests From Conditional Compilation

2004-03-30 Thread Gary Feldman
- Original Message - From: "Brian Beaudet" <[EMAIL PROTECTED]> > What I'd like to do is make a build and run the unit tests (as a build > verification test). Now, should I only build the UnitTest configuration > I've defined and is that a valid approach? Or should I run the UnitTest > c

RE: [Nant-users] Problem with vssget

2004-03-30 Thread Bill.Martin
DOH! Thanks Florian, you're right. I've been spending too long writing Ant scripts for java and keep forgetting to turn my slashes the other way round in NAnt etc. Cheers, Bill -Original Message- From: Florian Benischke [mailto:[EMAIL PROTECTED] Sent: 30 March 2004 12:45 To:

RE: AW: [Nant-users] Solution Task and Strong Names

2004-03-30 Thread Bill.Martin
Yup, you're right. I've just tries it in C# and it's a no go. VB seems to cope OK with referencing the .snk from the source directory. Interestingly, if you create a blank project in both languages, the C# one has helpful tips in the AssemblyInfo.cs file on how to create and reference a keyfile

AW: [Nant-users] Problem with vssget

2004-03-30 Thread Florian Benischke
Hi Bill, this message is shown when Visual Source Safe can't find the sourcesafe.ini file. Best you check the path statement. Are the slashes right? I would expect to find backslashes when you're working with Windows. You also have to check if the user who is executing the nant build has enough r

Re: AW: [Nant-users] Solution Task and Strong Names

2004-03-30 Thread gert . driesen
>-Original Message- >From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] >Sent: Tuesday, March 30, 2004 07:19 AM >To: [EMAIL PROTECTED] >Cc: [EMAIL PROTECTED] >Subject: RE: AW: [Nant-users] Solution Task and Strong Names > >"... Are you sure this works from Visual Studio ? From what I've re

RE: [Nant-users] Problem with vssget

2004-03-30 Thread Peter McEvoy
As far as I know, you need to point at the ini file, not just the ini directory... > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] > Sent: 30 March 2004 09:46 > To: [EMAIL PROTECTED] > Subject: [Nant-users] Problem with vssget > > > Another mail! > > I have

[Nant-users] Problem with vssget

2004-03-30 Thread Bill.Martin
Another mail! I have a wee problem with the task in NAnt-contrib. This is what my target definition looks like: However when I execute it I get the following error: Failed to open database The SourceSafe database path guest does not ex