我想用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/ 方向。
我该如何编写xml?