我想使用Nant构建项目并导入dll文件来执行NUnit。
但我不知道如何编写xml代码来构建csproj文件。
这是我的xml:
<?xml version="1.0"?>
<project name="Aaron.Guo.Second.Project" default="build" basedir=".">
<property name="basename" value="A"/>
<property name="debug" value="true"/>
<target name="build">
<csc target="library" debug="false" warnaserror="true" output="D:/A/bin/A1.dll">
<sources basedir="D:/A">
<include name="**/*.cs" />
</sources>
<references>
<include name="D:/A/bin/*.dll"/>
</references>
</csc>
</target>
</project>
我只知道“包含名称”可以构建cs文件
但它也显示无法引用重复使用.us
我把参考文件放在D:/ A / bin / directionary。
我该怎么写xml?
答案 0 :(得分:1)