如何正确使用 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