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