post-build events

  • Thread starter Thread starter Abhishek
  • Start date Start date
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
 
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
 
Back
Top