get file content and assign to property in Phing -
is there way file content , assign property phing?
an equivalent ant:
<project name="foobar" default="foo"> <target name="foo"> <loadfile property="foo.bar" srcfile="foobar/moo.txt"/> <echo>${foo.bar}</echo> </target> </project>
?
doesn't loadfile
task you're after?
Comments
Post a Comment