如何获取项目的元数据以覆盖项目定义元数据?
我在我的 vcxproj 中有:
<ItemGroup>
<PNL Include="some file">
<OutputDirectory>y</OutputDirectory>
</PNL>
</ItemGroup>
然后我有一个 .props 文件:
<PNL>
<OutputDirectory>x</OutputDirectory>
<CommandLineTemplate>%(OutputDirectory)</CommandLineTemplate>
</PNL>
还有一个 .target 文件:
<PNL>
OutputDirectory="%(PNL.OutputDirectory)"
Outputs="%(PNL.Outputs)"
CommandLineTemplate="%(PNL.CommandLineTemplate)"
</PNL>
所以我希望 Items 元数据会覆盖 .props 文件中的元数据,这样命令行就等于: y 但视觉工作室给了我: x