0

我是构建脚本的新手,需要一些帮助来为多项目解决方案编写脚本。我目前只有一个项目,但我需要包括其他项目,包括我的测试项目,这样我才能以正确的顺序成功构建它们。

1)如何在脚本中指定编译顺序?2)您如何将项目按顺序组合在一起以进行构建?3) 在为生产进行构建时,您是构建解决方案文件还是只构建单个项目?4) 构建脚本真的有必要吗(尤其是当您使用像 Visual Studio 这样的工具并且没有外部资源时)?

<?xml version="1.0"?>
<project name="Access Report Build Script" default="build" basedir=".">
    <description>Project Build File.</description>
    <property name="debug" value="true" overwrite="false" />
    <property name="fileName" value="BReportSuite" overwrite="false" />
    <property name="Main" value="BReportMain" overwrite="false" />
    <property name="ReportDisplay" value="BReportDisplay" overwrite="false" />
    <property name="ReportRecord" value="BReportRecord" overwrite="false" />
    <property name="ReportAccount" value="BReportAccount" overwrite="false" />

    <target name="clean" description="clean up generated files">
        <delete file="${fileName}.exe" failonerror="false" />
        <delete file="${fileName}.pdb" failonerror="false" />
    </target>

    <target name="build" description="compile source">
        <echo message="${fileName}"  />
        <csc target="exe" output="${fileName}.exe" debug="${debug}">
            <sources>
                <include name="${fileName}.cs" />
                <include name="${ReportDisplay}.cs" />
                <include name="${ReportRecord}.cs" />
                <include name="${ReportAccount}.cs" />
            </sources>
        </csc>
    </target>
    </project>
4

1 回答 1

0

当您想要自动化事情时,构建脚本会派上用场。

例如,如果您想使用 Continues Integration,您希望每次有人签入新代码时都构建您的代码。这不能通过启动 Visual Studio 并手动执行构建来完成。同样对于部署场景,必须有一个自动化脚本。您不希望部署过程中的手动步骤会被遗忘。

最简单的方法就是使用一个解决方案文件来指定要构建的项目。如果您使用必要的项目和参考配置它并指定要部署的配置(例如发布或暂存),您可以在 Visual Studio 中配置很多设置。

于 2012-06-04T12:24:24.950 回答