0

我已经为缩小过程集成了 YUI MSBuild。在为 YUI 定义的 Build xml 文件中,我想从 xml 文件访问其他属性。

我在项目中的 xml 文件中定义了版本号

<add key="VersionNumber" value="1000"/>

假设我在 sample.xml 中有上述密钥,我如何从 MSBuild 项目文件中访问它

我能做这样的事吗

<ItemGroup>
    <Content Include="constants.xml"/>
</ItemGroup>

Message Text="The output file value @(VersionNumber)"/>  

任何帮助都将不胜感激

4

1 回答 1

0

我找到了解决方案,并认为发布会有所帮助。我使用了 xml 读取并得到了它,我使用了http://msbuildtasks.tigris.org/

示例代码,但我的代码虽然不同

 <XmlRead 
  XPath="/add/@connectionString"
  XmlFileName="app.config">
    <Output TaskParameter="Value" PropertyName="MyConnectionString" />
</XmlRead>
<Message Text="MyConnectionString: $(MyConnectionString)"/>
于 2013-04-19T14:43:11.787 回答