Re: [nant-dev] How to perform Incremental builds

2009-09-14 Thread Lokhande, Manjusha
Thanks Rasmus! I will try this. Regards, Manjusha From: Rasmus Jelsgaard [mailto:ras...@jelsgaard.com] Sent: Monday, September 14, 2009 7:20 PM To: Lokhande, Manjusha (ARCHITECTURE&FRAMEWORK) Cc: nant-developers@lists.sourceforge.net Subject: Re: [nant-dev]

[nant-dev] How to perform Incremental builds

2009-09-14 Thread Lokhande, Manjusha
Hi, Is there any way to perform Incremental builds? i.e. compile only those files which are modified since last build and produce the product (exe or dll). Can I achieve this with NAnt? Thanks, Manjusha -- NOTICE: If receiv

[nant-dev] How to use remote files in NUnit

2009-03-16 Thread Lokhande, Manjusha
Hi, I am using NUnit for running test cases. It runs fine with the local dlls. But if I select a dll from a network drive, it throws anthis exception: System.Security.SecurityException: Request for the permission of type 'System.Web.AspNetHostingPermission, System, Version=2.0.0.0, Culture=Neu

Re: [nant-dev] PostBuildEvent

2009-01-22 Thread Lokhande, Manjusha
From: scound...@gmail.com [mailto:scound...@gmail.com] On Behalf Of Kevin Miller Sent: Wednesday, January 21, 2009 6:50 PM To: Lokhande, Manjusha Cc: nant-developers@lists.sourceforge.net Subject: Re: [nant-dev] PostBuildEvent Manjusha, I would recommend if possible that you replace the

Re: [nant-dev] PostBuildEvent

2009-01-22 Thread Lokhande, Manjusha
Thanks Kevin! I will try this out. Regards, Manjusha Lokhande From: scound...@gmail.com [mailto:scound...@gmail.com] On Behalf Of Kevin Miller Sent: Wednesday, January 21, 2009 6:50 PM To: Lokhande, Manjusha Cc: nant-developers@lists.sourceforge.net

Re: [nant-dev] PostBuildEvent

2009-01-20 Thread Lokhande, Manjusha
se MSBuild because the project is in .NET framework 1.0. Can you help me more on this? Regards, Manjusha Lokhande From: scound...@gmail.com [mailto:scound...@gmail.com] On Behalf Of Kevin Miller Sent: Tuesday, January 20, 2009 7:04 PM To: Lokhande, Manjush

Re: [nant-dev] PostBuildEvent

2009-01-20 Thread Lokhande, Manjusha
Thanks for the response Gert! Can you or anybody give me some idea how I can achieve this? Regards, Manjusha Lokhande From: Gert Driesen [mailto:gert.drie...@telenet.be] Sent: Tuesday, January 20, 2009 3:05 AM To: Lokhande, Manjusha; nant-developers

[nant-dev] PostBuildEvent

2009-01-19 Thread Lokhande, Manjusha
Hi, I have a PostBuildEvent defined in my .csproj file. But I do not wish to run this event after completing the build through NAnt. How could I achieve this with NAnt? Is there any way to bypass PostBuildEvent using NAnt build script? In case of MSBuild, a PostBuildEvent can be bypassed sim

[nant-dev] PostBuildEvent

2009-01-16 Thread Lokhande, Manjusha
Hi, I have a PostBuildEvent defined in my .csproj file. But I do not wish to run this event after completing the build through NAnt. How could I achieve this with NAnt? Is there any way to bypass PostBuildEvent using NAnt build script? In case of MSBuild, a PostBuildEvent can be bypassed sim

Re: [nant-dev] Want to delete intermediate files n folders (obj)

2008-12-23 Thread Lokhande, Manjusha
Thanks for the solution Brass! But the issue here is if I have created a folder named "obj" (different from the intermediate "obj" folder) which contains some files that I use in the project, then this "clean" target will also delete my "obj" folder which I do not want to happen. Could you guide in

[nant-dev] Want to delete intermediate files n folders (obj)

2008-12-23 Thread Lokhande, Manjusha
Hi, I want to delete the intermediate files and folders that are generated while building the .NET projects (folder "obj" and its contents). There are many projects in a build file that are to be built and each project's "obj" folder needs to be deleted. Writing a target "Clean" and deleting al