Executing commend file while BTDF deployment
hi all,
have using below code run cmd file while btdf deployment process did not executing
<target name="customdeploytarget">
<exec command="..\cleancopy.cmd $(environmentname)"></exec>
</target>
<target name="customdeploytarget">
<exec command=" cmd.exe "cleancopy.cmd $(environmentname)""></exec>
</target>
$(environmentname) passing parameter
cleancopy.cmd :
copy .\direct.xml c:\biztalk\%1\clenupscript
please guide me how resolve error
have using below code run cmd file while btdf deployment process did not executing
<target name="customdeploytarget">
<exec command="..\cleancopy.cmd $(environmentname)"></exec>
</target>
<target name="customdeploytarget">
<exec command=" cmd.exe "cleancopy.cmd $(environmentname)""></exec>
</target>
$(environmentname) passing parameter
cleancopy.cmd :
copy .\direct.xml c:\biztalk\%1\clenupscript
please guide me how resolve error
hello,
try this
<target name="customdeploytarget">
<exec command="copygac.bat" workingdirectory="c:\test"/>
</target>
thanks
try this
<target name="customdeploytarget">
<exec command="copygac.bat" workingdirectory="c:\test"/>
</target>
thanks
BizTalk Server > BizTalk Server General
Comments
Post a Comment