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

发布于 2024-11-01 17:04:51 字数 155 浏览 0 评论 0原文

我想知道当我使用 TFS 2008 构建代理构建时,分配的 ISProjectFolder、ISProductFolder、ISProjectDataFolder、ISPROJECTDIR(预定义路径)值是什么,

我认为这些值可能与本地看到的值不同,

有人知道吗?

I wonder what the ISProjectFolder, ISProductFolder, ISProjectDataFolder, ISPROJECTDIR (predefined paths) values are assigned when I build using TFS 2008 build agent

I think these can have different values from the values that are seen on local

does anyone know about this????

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

上课铃就是安魂曲 2024-11-08 17:04:51

您可以使用该任务将您描述的值“转储”到构建日志中,即:

    <!--Copy the installer files into the distribution location.-->
    <Message Text="PATH TO SERVER INSTALL SET : $(ISServerOutputToBeCopied)" />
    <exec command="xcopy "$(ISServerOutputToBeCopied)" "\\jupiter\Albany Products\In Development\EFT Corporate\ePay 1.5 Releases\1.5.$(AlbanyServicePackNumber)\$(BuildNumber)\ePay Server Installer" /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=""$(InstallShieldIsCmdBldPath)" -p "@(ISClientProjectFile)" -c "$(InstallShieldProductConfiguration)" -r "$(InstallShieldRelease)" -z "ARPCOMMENTS=$(BuildNumber)" -y "$(AlbanyMajorNumber).$(AlbanyMinorNumber).$(AlbanyServicePackNumber).$(AlbanyBuildNumber)"" IgnoreExitCode="true" />

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

希望有帮助!

You can use the task to 'dump' the values you describe to the build log, i.e :

    <!--Copy the installer files into the distribution location.-->
    <Message Text="PATH TO SERVER INSTALL SET : $(ISServerOutputToBeCopied)" />
    <exec command="xcopy "$(ISServerOutputToBeCopied)" "\\jupiter\Albany Products\In Development\EFT Corporate\ePay 1.5 Releases\1.5.$(AlbanyServicePackNumber)\$(BuildNumber)\ePay Server Installer" /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=""$(InstallShieldIsCmdBldPath)" -p "@(ISClientProjectFile)" -c "$(InstallShieldProductConfiguration)" -r "$(InstallShieldRelease)" -z "ARPCOMMENTS=$(BuildNumber)" -y "$(AlbanyMajorNumber).$(AlbanyMinorNumber).$(AlbanyServicePackNumber).$(AlbanyBuildNumber)"" IgnoreExitCode="true" />

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

Hope that helps !

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文