RE: [Nant-users] File sizes

2005-05-03 Thread Aaron Elder
From what I can tell, no.  It really is very strange… it only seems to happen for VERY small projects.  My other 4 projects that are over 80k are all fine.  It is just the projects (I converted another one now as well) that are really small… 1k AssemblyInfo, 2k Class file that have this pro

RE: [Nant-users] File sizes

2005-05-03 Thread Gert Driesen
Aaron,   Can you send me a small repro of this issue ?   Thanks !   Gert From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Aaron ElderSent: dinsdag 3 mei 2005 9:25To: Headlam, Norman; nant-users@lists.sourceforge.netSubject: RE: [Nant-users] File sizes

Re: [Nant-users] NunitReport or NUnit2Report task with Nant 0.85RC3?

2005-05-03 Thread Dang, Michael (GO+ IT - Houston)
Title: Re: [Nant-users] NunitReport or NUnit2Report task with Nant 0.85RC3? Hmmm... Good point. I modified the stylesheets in NUnit2Report and used the style task.  Works like a charm. This approach is better than relying on the NUnit2Report or Nunitreport tasks that have an increased chanc

RE: [Nant-users] File sizes

2005-05-03 Thread Castro, Edwin Gabriel (Firing Systems Engr.)
Hi Aaron,   Out of curiosity, are both versions functional? I assume they are. Have you tried to using ildasm (and similar tools) to inspect both assemblies?   -- Edwin From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Aaron ElderSent: Monday, May 02, 2005 4:07 PMT

RE: [Nant-users] File sizes

2005-05-03 Thread Foster, Richard - PAL
Aaron,   One other thought. Do you have a specific application icon? If not, perhaps Visual Studio is adding in the default application icon resource, but NAnt isn't? I wouldn't expect that to be 13K worth, but it could be a contributing factor.   Regards, Richard From: [EMAIL PROTECTED] [

[Nant-users] NAnt equivalent to Ant's

2005-05-03 Thread Brian Cantoni
I've been using NAnt for a few weeks and have migrated our Win32 app build to it. I'm looking for a way to load a set of properties from an external file, similar to Ant's method. NAnt's does not allow files as a source, so I'm curious what others have done for this type of solution? Ant se

Re: [Nant-users] NAnt equivalent to Ant's

2005-05-03 Thread Merrill Cornish
Brian, You can create a NAnt script that contains only statements rather than targets. Then you can use an task in another NAnt script to call the properties-only script. All of the properties in the properties-only script will then be defined in the calling script. The effect is about the

RE: [Nant-users] Solution task throws exception on tlbimp word.olb

2005-05-03 Thread Gert Driesen
Hi Jeremy,   Can you send me a small repro for this issue ?   Thanks !   Gert From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jeremy P. Owens-BoggsSent: donderdag 28 april 2005 16:38To: nant-users@lists.sourceforge.netSubject: [Nant-users] Solution task throw

RE: [Nant-users] File sizes

2005-05-03 Thread Aaron Elder
Well this is just crazy. I have use ILDASM to compare the IL of all the code and it is identical! I also compared the manifests, it turns out the manifest of the smaller DLL is actually BIGGER that manifest of the larger DLL (it had a text change in the Assembly Info). I am going to re-create

[Nant-users] Build Failed white trying to reference external dlls

2005-05-03 Thread Madhavi Atmakur
Hi,   I am referencing 2 .net dlls in my project. Dlls are stored in a Dlls folder under the wwwroot\Project folder   Getting following error while trying to run the build from nant   Couldn't find referenced assembly 'C:\DOCUME~1\MADHAV~1\LOCALS~1\Temp\1\lebazmpt \http___management.

RE: [Nant-users] File sizes

2005-05-03 Thread Ray Johnson
This may be due to code optimization settings. We have seen this as well where the "default" optimizations (and thus some of the compiler flags) are different between Nant and different versions of VS.Net. We worked around this my explicitly setting the use of certain flags in VS.Net. We did th

RE: [Nant-users] File sizes

2005-05-03 Thread Castro, Edwin Gabriel (Firing Systems Engr.)
Wow!! If that really is the cause then I'm amazed! Whatever Nant uses as default optimizations result in a 65% reduction in size! Well, at least in this case... > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Ray Johnson > Sent: Tuesday, May 0

[Nant-users] RE: NAnt equivalent to Ant's

2005-05-03 Thread McKenna, Simon (RGH)
Hi Brian, Firstly, thank you for you posting in plain text! (I get this list in digest form and most people seem ignorant of how much HTML crud they send) -> NAnt's does not allow files as a source, so I'm -> curious what others have done for this type of solution? I had the same issue and end

RE: [Nant-users] File sizes

2005-05-03 Thread Gert Driesen
Aaron, Is this indeed a C++ project ? Gert > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Castro, Edwin Gabriel (Firing Systems Engr.) > Sent: woensdag 4 mei 2005 1:22 > To: [EMAIL PROTECTED]; Aaron Elder; Thibaut Barrère; Foster, > Richard -

RE: [Nant-users] File sizes

2005-05-03 Thread Aaron Elder
Nope... its C#. BTW - Both code bases (small and large) function normally. Aaron -Original Message- From: Gert Driesen [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 03, 2005 7:54 PM To: Aaron Elder Cc: nant-users@lists.sourceforge.net Subject: RE: [Nant-users] File sizes Aaron, Is thi

RE: [Nant-users] File sizes

2005-05-03 Thread Gert Driesen
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Aaron Elder > Sent: woensdag 4 mei 2005 5:27 > To: Gert Driesen > Cc: nant-users@lists.sourceforge.net > Subject: RE: [Nant-users] File sizes > > Nope... its C#. > > BTW - Both code bases (small

RE: [Nant-users] NAnt equivalent to Ant's

2005-05-03 Thread Bill.Martin
Hi Brian, You need to use the task. Your properties file must contain a definition e.g. and save as properties.build. Then in another file build file you can use: Cheers, Bill -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf