我正在使用Visual Studio 2017,并且在我的解决方案中有多个C#项目。我想为项目A添加一个构建后的脚本,但我需要解决方案中项目B的一些宏(例如OutputDir)。有没有办法做到这一点?当我谷歌时,我只找到关于c ++属性页面的信息或类似的东西。有没有办法实现这个目标?我试过
echo "PROJECTNAME-($OutputDir)"
但当然没有用。
我想要的例子:
echo $(OutputDir) // print the output dir of THIS project
echo "ProjectB-$(OutputDir)" // print the output dir of PROJECT B which is in the same solution