构建 xml 的属性值错误

发布于 2025-01-08 15:06:54 字数 761 浏览 0 评论 0原文

我收到以下代码的错误:

 <?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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜心 2025-01-15 15:06:54

exec 元素中缺少右引号。应该是

<exec program="${NAntBuildPath}" output="${dir}"> 

此外,以下 arg 元素未正确关闭。 。

<arg line="${solution_file}" />

如果您进行这两项更改,那么最终应该会得到格式良好的 XML

You are missing a closing quote mark in the exec element. It should be

<exec program="${NAntBuildPath}" output="${dir}"> 

Furthermore, the following arg element is not closed correctly. It should be

<arg line="${solution_file}" />

If you make these two changes, you should end up with well formed XML.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文