在同一个Visual Studio C#解决方案中使用来自不同项目的宏

时间:2017-11-22 15:49:10

标签: c# visual-studio macros

我正在使用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

0 个答案:

没有答案