0

如何正确使用 Nant 构建和部署使用 asp.net、vb.net 和 .net framework 1.1 开发的 asp.net 项目?

我尝试使用此构建文件:

<?xml version="1.0" ?>
<project name="MyWebProj" default="build" basedir=".">
    <description>...</description>
    <property name="debug" value="true" overwrite="false"
    />
    <property name="basename" value="MyWebProj" />
    <target name="build">
        <mkdir dir="NantBIN" />
        <vbc target="library" output="NantBIN/${basename}.dll" debug="${debug}">
            <sources>
                <include name="*.vb" />
            </sources>
        </vbc>
    </target>
</project>

我运行这个 bat 文件:

@echo off bin\nant -t:net-1.1 -buildfile:.MyWebProjPath pause
4

2 回答 2

0

首先感谢大家的回答和建议。这就是我最终解决问题的方法。我将其用作构建文件:

<?xml version="1.0"?><project name="..." default="rebuild" basedir=".">
<target name="rebuild" depends="build">
    <call target="build.copy"/>
</target>
<target name="build" description="Build all targets.">
    <call target="build.project"/>
</target>
<target name="build.project">
    <solution configuration="${configuration}" solutionfile="${solutionName}" outputdir="${expected.output}">
        <webmap>
            <map url="${webproj.url}" path="${webproj.name}" />
        </webmap>
    </solution>
</target>
<target name="build.copy">
    <copy  todir="${path.to.deploy}" overwrite="true">
        <fileset basedir=".">
            ...
            <include name="**\*.asp" />
            <include name="**\*.aspx" />
            <include name="**\*.css" />
            <include name="**\*.js" />
            ...
        </fileset>
    </copy>
</target>

我运行这个 bat 文件(设置 -t:net-1.1 以指定 .net 框架版本很重要):

bin\nant -t:net-1.1 -buildfile:.MyWebProjPath
于 2012-10-09T13:27:47.847 回答
0

您可以参考下面的链接,这些链接为您逐步解释了过程。

http://www.codeproject.com/Articles/123713/Automate-Publishing-a-WebSite-into-IIS-using-MSDep

http://www.4guysfromrolla.com/articles/120104-1.aspx

于 2012-10-05T10:39:06.547 回答