我知道可以为每个项目配置输出文件夹。我需要一种为解决方案中的每个项目全局设置输出文件夹的方法,以便在添加新项目时它们会自动输出到指定的文件夹。
最好的输出文件夹结构应该是这样的:
SolutionFolder
|-Project1
|-Project2
|-Project3
|
|-Release
| |-bin
| | |-Project1
| | |-Project2
| | |-Project3
| |-obj
| | |-Project1
| | |-Project2
| | |-Project3
|-Debug
| |-> "same structure for the debug folder"
|-mysolution.sln
这可能吗?如果可以,在哪里可以找到更多信息?谢谢你。