I am having problems with vssget when I add the version attribute. When I add the version attribute only the root project is coming down, not the sub-directories. If I remove the attribute all the files get pulled.
My targets are :
<target name="vsslabel" depends="checkinBuildNumber">
<echo message="label version - Version ${sys.version}"/>
<vsslabel
dbpath="${vss.dbpath}"
path="${vss.path}"
user="${vss.user}"
comment="Chris test"
label="Version ${sys.version}"
/>
<target name="vsspullToLatest" depends="saveLatest">
<!-- make directory -->
<mkdir dir="${build.latest}"/>
<echo message="get version - Version ${sys.version}"/>
<!-- get source code -->
<vssget
user="${vss.user}"
localpath="${build.latest}"
recursive="true"
replace="true"
writable="true"
dbpath="${vss.dbpath}"
path="${vss.path}"
version="Version ${sys.version}"
verbose="true"
/>
</target>
Thanks
[EMAIL PROTECTED] 212-820-4929