Multiple Output paths for a C# Project file

build-process, c#

Solution

You have a section `build events` in your project's properties. You can use `post-build events`to copy your output to different locations. Just press 'Edit Post-build' and 'Macros', so that you can even use shortcuts to your output directory. For more informations have a look here.

Problem

Can I use multiple output paths. like when i build my project, the exe should generate in two different paths. If so, How can I specify in Project Properties-> Build -> output path? I tried using , and ; but neither of those work.

Original source