构建 xml 的属性值错误
我收到以下代码的错误:
<?xml version="1.0"?>
<!--
***************Demo.build******************
-->
<project name="Mybuild">
<include buildfile="config.xml" />
<target name="build_my_solution">
<mkdir dir="C:\Done" />
<exec program="${NAntBuildPath}" output="${dir}>
<arg line="${solution_file}" >
<arg line="/property:Configuration=Release;AllowUnsafeBlocks=true" />
<arg value="/target:Rebuild" />
<arg value="/verbosity:normal" />
<arg value="/nologo" />
<arg value="/maxcpucount:2" />
</exec>
</target>
</project>
错误(在 Internet Explorer 中):字符 '<'不能在属性值中使用。处理资源'file:///C:/xxx/MyProject/...时出错
-^
I am getting an error for the following code:
<?xml version="1.0"?>
<!--
***************Demo.build******************
-->
<project name="Mybuild">
<include buildfile="config.xml" />
<target name="build_my_solution">
<mkdir dir="C:\Done" />
<exec program="${NAntBuildPath}" output="${dir}>
<arg line="${solution_file}" >
<arg line="/property:Configuration=Release;AllowUnsafeBlocks=true" />
<arg value="/target:Rebuild" />
<arg value="/verbosity:normal" />
<arg value="/nologo" />
<arg value="/maxcpucount:2" />
</exec>
</target>
</project>
ERROR(In Internet Explorer): The character '<' cannot be used in an attribute value. Error processing resource 'file:///C:/xxx/MyProject/...
-^
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
exec 元素中缺少右引号。应该是
此外,以下 arg 元素未正确关闭。 。
如果您进行这两项更改,那么最终应该会得到格式良好的 XML
You are missing a closing quote mark in the exec element. It should be
Furthermore, the following arg element is not closed correctly. It should be
If you make these two changes, you should end up with well formed XML.