[Nant-users] projects and debugging
When developing a project with nant (a C# project, in this case). What do people do for solution and project files so that you can run with the debugger and use the IDE. I can setup a button to run Nant just fine, but that still doesn't give me a context for debugging. When I used makefiles, there was a makefile project that worked, I'm looking for something equivalent for a Nant build project. -- Marion Nalepa -- "There are 10 different kinds of people in this world -- those who understand binary and those who don't." --- This SF.net email is sponsored by OSDN developer relations Here's your chance to show off your extensive product knowledge We want to know what you know. Tell us and you have a chance to win $100 http://www.zoomerang.com/survey.zgi?HRPT1X3RYQNC5V4MLNSV3E54 ___ Nant-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/nant-users
[Nant-users] MSITask Problem
Hi, I am not sure if this should be asked here or on the nantcontrib list, so I will try here first. I am able to build an installer just fine with the MSI task, but that installer will not run. I am storing several .NET assemblies in the MSI, and the MSITask is generating a separate component for each assembly. When I try to run the installation I receive an error saying that a file for one of the components is not installed. I opened up the MSI with orca, but since I am not very familiar with MSI had no real idea what I was looking at. Is there anyway to extract the cab file from the MSI so that I can make sure that all the files are there? Below is the MSI section of my build file. Thanks, -Scott IntelliPlot core files --- This SF.net email is sponsored by OSDN developer relations Here's your chance to show off your extensive product knowledge We want to know what you know. Tell us and you have a chance to win $100 http://www.zoomerang.com/survey.zgi?HRPT1X3RYQNC5V4MLNSV3E54 ___ Nant-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/nant-users
RE: [Nant-users] projects and debugging
Hi, This might be what you are looking for: http://nant.sourceforge.net/wiki/index.php/VSNETIntegrationViaMakefile Clayton -Original Message- From: Marion Nalepa [mailto:[EMAIL PROTECTED] Sent: October 22, 2003 6:51 AM To: [EMAIL PROTECTED] Subject: [Nant-users] projects and debugging When developing a project with nant (a C# project, in this case). What do people do for solution and project files so that you can run with the debugger and use the IDE. I can setup a button to run Nant just fine, but that still doesn't give me a context for debugging. When I used makefiles, there was a makefile project that worked, I'm looking for something equivalent for a Nant build project. -- Marion Nalepa -- "There are 10 different kinds of people in this world -- those who understand binary and those who don't." --- This SF.net email is sponsored by OSDN developer relations Here's your chance to show off your extensive product knowledge We want to know what you know. Tell us and you have a chance to win $100 http://www.zoomerang.com/survey.zgi?HRPT1X3RYQNC5V4MLNSV3E54 ___ Nant-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/nant-users --- This SF.net email is sponsored by OSDN developer relations Here's your chance to show off your extensive product knowledge We want to know what you know. Tell us and you have a chance to win $100 http://www.zoomerang.com/survey.zgi?HRPT1X3RYQNC5V4MLNSV3E54 ___ Nant-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/nant-users
Re: [Nant-users] NAnt support of DOCTYPE/ENTITY
Happy to help Mark. If anyone can confirm that DTD entities (do not) work in our buildfiles (and provide a sample please) that would be great. Our build files should support standard dtd stuff. It would good to bug this if we don't. - Original Message - From: "Mark Colburn" <[EMAIL PROTECTED]> > Perfect, thanks Scott. > > -mark --- This SF.net email is sponsored by OSDN developer relations Here's your chance to show off your extensive product knowledge We want to know what you know. Tell us and you have a chance to win $100 http://www.zoomerang.com/survey.zgi?HRPT1X3RYQNC5V4MLNSV3E54 ___ Nant-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/nant-users
RE: [Nant-users] NAnt support of DOCTYPE/ENTITY
Perfect, thanks Scott. -mark From: [EMAIL PROTECTED] on behalf of Scott Hernandez Sent: Tue 10/21/2003 6:34 PM To: [EMAIL PROTECTED] Subject: Re: [Nant-users] NAnt support of DOCTYPE/ENTITY properties.xml should look like this: The task loads and includes another build file. (note: It must be a valid build file that can be used alone:) You might want to think about this more in terms of user customizations for your build, and not just including properties. It can allow you to do many other things too... - Original Message - From: "Mark Colburn" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, October 21, 2003 4:54 PM Subject: RE: [Nant-users] NAnt support of DOCTYPE/ENTITY > I tried that, but Nant complains that there is more than one root node > in the file if there is more than a single property set. > > -mark > > -Original Message- > From: Nick Varacalli [mailto:[EMAIL PROTECTED] > Sent: Tuesday, October 21, 2003 4:09 PM > To: Mark Colburn; [EMAIL PROTECTED] > Subject: RE: [Nant-users] NAnt support of DOCTYPE/ENTITY > > Look at the task in the NAnt > help. --- This SF.net email is sponsored by OSDN developer relations Here's your chance to show off your extensive product knowledge We want to know what you know. Tell us and you have a chance to win $100 http://www.zoomerang.com/survey.zgi?HRPT1X3RYQNC5V4MLNSV3E54 ___ Nant-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/nant-users --- This SF.net email is sponsored by OSDN developer relations Here's your chance to show off your extensive product knowledge We want to know what you know. Tell us and you have a chance to win $100 http://www.zoomerang.com/survey.zgi?HRPT1X3RYQNC5V4MLNSV3E54 ___ Nant-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/nant-users
Re: [Nant-users] projects and debugging
Another approach is to create a normal c# project but set it to not build ( use the configuration manager under Build to do this ). Use your button to build using nant and then for debugging: set the debug mode to program rather than project set the start application to the nant built exe set command line args as appropriate. now debugging from visual studio will work as expected. You'll need to ensure that you've built everything yourself but thats not too much hassle. The makefile solution outlined below is maybe a slightly cleaner solution. Ian Clayton Harbour wrote: Hi, This might be what you are looking for: http://nant.sourceforge.net/wiki/index.php/VSNETIntegrationViaMakefile Clayton -Original Message- From: Marion Nalepa [mailto:[EMAIL PROTECTED] Sent: October 22, 2003 6:51 AM To: [EMAIL PROTECTED] Subject: [Nant-users] projects and debugging When developing a project with nant (a C# project, in this case). What do people do for solution and project files so that you can run with the debugger and use the IDE. I can setup a button to run Nant just fine, but that still doesn't give me a context for debugging. When I used makefiles, there was a makefile project that worked, I'm looking for something equivalent for a Nant build project. -- Marion Nalepa -- "There are 10 different kinds of people in this world -- those who understand binary and those who don't." --- This SF.net email is sponsored by OSDN developer relations Here's your chance to show off your extensive product knowledge We want to know what you know. Tell us and you have a chance to win $100 http://www.zoomerang.com/survey.zgi?HRPT1X3RYQNC5V4MLNSV3E54 ___ Nant-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/nant-users --- This SF.net email is sponsored by OSDN developer relations Here's your chance to show off your extensive product knowledge We want to know what you know. Tell us and you have a chance to win $100 http://www.zoomerang.com/survey.zgi?HRPT1X3RYQNC5V4MLNSV3E54 ___ Nant-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/nant-users --- This SF.net email is sponsored by OSDN developer relations Here's your chance to show off your extensive product knowledge We want to know what you know. Tell us and you have a chance to win $100 http://www.zoomerang.com/survey.zgi?HRPT1X3RYQNC5V4MLNSV3E54 ___ Nant-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/nant-users