building projects

  • Thread starter Thread starter Dee
  • Start date Start date
D

Dee

Folks could do with a little bit of help

I am using the dot net framework.

Whenever im working on my project I need to build it to test it.

The problem is that I need to run a batch file before I build my code.

Then for complete testing of the system, I have another batch to run,
to create online help.

I know that I could just do the whole lot from one batch file, and
just call everything I need.
But whenever the ide is open I would rather just set it up to run from
here.
Are there any options for this sort of thing?

Didnt the old visual studio ide allow all sorts of stuff to be done
before and after the build? I dont have much experience with visual
studio.
If so has this functionality been stripped away from the dot net
framework?

Any info is appreciated
Cheers
Dee
 
Dee said:
I know that I could just do the whole lot from one batch file, and
just call everything I need.
But whenever the ide is open I would rather just set it up to run from
here.
Are there any options for this sort of thing?

Didnt the old visual studio ide allow all sorts of stuff to be done
before and after the build? I dont have much experience with visual
studio.
If so has this functionality been stripped away from the dot net
framework?

You can set prebuild and postbuild events in Project->Properties->Build
Events.
 
Dear Lukasz,

Indeed, that is correct.

Regards,
Bart

ps. if you are interested, NAnt is a very usefull build tool, see my
previous post in this thread
 
Back
Top