i'm not an expert of Nant, so i'll have t开发者_如何学Goo ask this redicolus question.
i have a variable called svn.source.root which point to c:\folderA\FolderB\FolderC
how can i make svn.source.root.modified variable to point to 2 folders up? i.e, folderA
Obviously, the following didn't work:
please help.
thanks
${svn.source.root.modified}\..\..\
Your problem is the property syntax. The $
must be in front of the {}
:
<project default="test">
<property name="svn" value="c:\users\peter" />
<target name="test">
<echo message="${svn}" />
<echo message="${svn}\..\..\" />
<echo message="${path::get-full-path(svn + '\..\..\')}" />
</target>
</project>
精彩评论