0

i have one folder in setup project called "SSRS_Repor". now i want that when i will create setup for my project then i want to copy all files from a folder exist in my project called "report" to folder SSRS_Repor exist in setup project. please guide me how can i do it. i know this can be done like writing script for setup Pre/Post Build Event but not aware properly. i got a sample like

copy /Y "$(TargetDir)$(ProjectName).dll" "$(SolutionDir)lib\$(ProjectName).dll"

but not clear where to set it.

it will be helpful if some one tell me all the steps in detail. thanks

Thomas
  • 33,544
  • 126
  • 357
  • 626
  • if your problem is "where" the setting is, @jihlim answered it, please accept his solution. If your problem is something else, please articulate. – some bits flipped May 07 '13 at 23:04

1 Answers1

4

Right click on your project on Solution Explorer which you can find on the right, and click on "Properties".

Then go to "Build Events" under "Configuration Properties" in the tree, and expand it. You should see "Pre-Build event"/"Pre-Link Event"/"Post-Build Event".

slm
  • 15,396
  • 12
  • 109
  • 124
jihlim
  • 56
  • 3