Every time I do a build using Visual Studio 2008, I have to manually copy the output files to two additional directories on my computer. Is there a way to configure my projects, so that when the output files are generated copies of them are automatically placed in the additional directories?
            Asked
            
        
        
            Active
            
        
            Viewed 4,237 times
        
    4
            
            
        - 
                    Just in case you fail/can't configure VS to do that,you can make a batch script that will automaticly copy that.Here:http://www.dreamincode.net/forums/topic/55203-batch-tutorial-part-1/ – Jul 15 '11 at 19:05
 - 
                    This is what you're looking for: http://stackoverflow.com/a/4331387/1608072 – caiosm1005 Dec 29 '13 at 01:39
 
1 Answers
4
            You can configure post-build step in your projects.
        Mike Mozhaev
        
- 2,367
 - 14
 - 13
 
- 
                    3How do I do that? If I already knew, I would have needed to ask if it was possible. – Jim Fell Jul 15 '11 at 19:10
 - 
                    3Open project properties, go to Build Events page and write any commands (e.g. specify a batch file) – Mike Mozhaev Jul 15 '11 at 19:11