[question] how can I execute a batch file during build time ?

  • Thread starter Thread starter carrot
  • Start date Start date
C

carrot

With .Net Studio,

I have a solution includes some projects.
I want to execute a batch file during build solution time.
For example,
1'st project is builded.
2'nd project is builded.
" a batch file is executed."!
3'rd project is builded.

how can I do this?
how can I include a batch file in the solution?
how can I determine the order in projects and a batch file?

(the projects were written by C# and C++)
 
I'm not sure if this can be done within Visual Studio, but you could create
a batch file to build your projects directly using the compiler or
"devenv.exe /build" - this should let you do what you want.

HTH,

Trev.
 
Back
Top