(Installshield 2010)TFS 2008中的ISProject文件夹

| 我不知道在使用TFS 2008构建代理进行构建时会分配哪些ISProjectFolder,ISProductFolder,ISProjectDataFolder,ISPROJECTDIR(预定义路径)值 我认为这些值可能与本地值不同 有人知道吗???     
已邀请:
您可以使用该任务“转储”您在构建日志中描述的值,即:              
    <!--Copy the installer files into the distribution location.-->
    <Message Text=\"PATH TO SERVER INSTALL SET : $(ISServerOutputToBeCopied)\" />
    <exec command=\"xcopy &quot;$(ISServerOutputToBeCopied)&quot; &quot;\\\\jupiter\\Albany Products\\In Development\\EFT Corporate\\ePay 1.5 Releases\\1.5.$(AlbanyServicePackNumber)\\$(BuildNumber)\\ePay Server Installer&quot; /i /s /e /h /y\" />
</Target>

<!--Build the \"ePay Client\" Installer project.-->
<Target Name=\"CompileISClientProject\"
            DependsOnTargets=\"CustomCoreDropBuild\"
            Condition=\"(\'$(InstallShieldIsCmdBldPath)\' != \'\') And (\'@(ISClientProjectFile)\' != \'\') And (\'$(InstallShieldProductConfiguration)\' != \'\' ) And (\'$(InstallShieldRelease)\' != \'\')\">
    <exec Command=\"&quot;$(InstallShieldIsCmdBldPath)&quot; -p &quot;@(ISClientProjectFile)&quot; -c &quot;$(InstallShieldProductConfiguration)&quot; -r &quot;$(InstallShieldRelease)&quot; -z &quot;ARPCOMMENTS=$(BuildNumber)&quot; -y &quot;$(AlbanyMajorNumber).$(AlbanyMinorNumber).$(AlbanyServicePackNumber).$(AlbanyBuildNumber)&quot;\" IgnoreExitCode=\"true\" />

    <!--Copy the installer files into the distribution location.-->
    <Message Text=\"PATH TO CLIENT INSTALL SET : $(ISClientOutputToBeCopied)\" />
    <exec command=\"xcopy &quot;$(ISClientOutputToBeCopied)&quot; &quot;\\\\jupiter\\Albany Products\\In Development\\EFT Corporate\\ePay 1.5 Releases\\1.5.$(AlbanyServicePackNumber)\\$(BuildNumber)\\ePay Client Installer&quot; /i /s /e /h /y\" />
</Target>
希望能有所帮助!     

要回复问题请先登录注册