如果我查看单个项目 - >属性,我终于设法配置我的Visual Studo C ++项目以显示我的Custom ProjectSchemaDefinition。
我的问题:
有没有办法在共享项目属性中显示此内容(例如external.props)?
我当前的shared.targets配置
<PropertyGroup Label="Import Settings">
<UseDefaultProjectTools>true</UseDefaultProjectTools>
<UseDefaultPropertyPageSchemas>true</UseDefaultPropertyPageSchemas>
<UseDefaultGeneralPropertyPageSchema>true</UseDefaultGeneralPropertyPageSchema>
</PropertyGroup>
<ItemGroup>
<PropertyPageSchema Include="$(SolutionDir)\props\PublishConfig.xml">
<Context>Project</Context>
</PropertyPageSchema>
<ProjectTools Include="PublishConfig" />
</ItemGroup>
我想我错过了这个定义中正确的 Context ,但是在msdn找不到任何可靠的来源,其中正确描述了不同的Context Targets。
提前谢谢