Visual Studio: Multiple post-build commands?

后端 未结 10 1242
逝去的感伤
逝去的感伤 2020-12-13 16:47

Visual Studio 2008 lets me declare a command and attach it to the post-build event for a project. Like a lot of developers, I use it regularly to xcopy files to the applicat

10条回答
  •  Happy的楠姐
    2020-12-13 17:31

    In Visual Studio 2017 you can do this:

    
        
            copy $(TargetPath) $(SolutionDIr)\bin1
            copy $(TargetPath) $(SolutionDIr)\bin2
        
    
    

提交回复
热议问题