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

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -