post-build events

A

Abhishek

Hi All,

I need to copy the dll and the tlb file that is build by the project to 2
different directory after the build is successfully complete. what do i add
to the post build events in VS 2005 to make this happen in my C# project?

Thanks for you help.

Regards
Abhishek
 
P

Praveen

Abhishek said:
Hi All,

I need to copy the dll and the tlb file that is build by the project to 2
different directory after the build is successfully complete. what do i
add to the post build events in VS 2005 to make this happen in my C#
project?

Thanks for you help.

Regards
Abhishek


copy $(TargetPath) Path$(TargetFileName);

Or u can have a .bat file which cntains copy command.

And do

Call bat.bat
 

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