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/...
-^