在VS中集成编译器

在VS中集成编译器

本文介绍了在VS中集成编译器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述


我想将编译器集成到VS中,我目前拥有"XXBuild.xml"。用于设置UI显示的文件,



使用



< PropertyPageSchema Include =" $(MSBuildThisFileDirectory)$(MSBuildThisFileName).xml" 

  < ;! - 要包含在项目列表中的文件或通配符.-->

  < AvailableItemName Include =" XXBuild">

  < / AvailableItemName>



in a"XXBuild.target"文件。



但是,UI元素未在Project>中显示 属性>



我想知道在哪里找到,例如:< ProjectSchemaDefinitions> <规则>元素配置说明。



谢谢。





解决方案

I want to integrate a compiler into VS, and I currently have the "XXBuild.xml" file for setting up the UI display,

using a

<PropertyPageSchema Include = "$ (MSBuildThisFileDirectory) $ (MSBuildThisFileName) .xml" 
  <! - The file or wildcard to include in the list of items .-->
  <AvailableItemName Include = "XXBuild">
  </ AvailableItemName>

in an "XXBuild.target" file.

However, UI elements are not shown in Project >  Properties >

I want to know where to find, for example: <ProjectSchemaDefinitions> <Rule> Element Configuration Explanation。

Thanks.

解决方案


这篇关于在VS中集成编译器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-18 17:41