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

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++)
 
T

Trev Hunter

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top