使用 .NET Framework 3.5,我有 nant -0.91-alpha2,它支持 framework 3.5,但是当我尝试构建文档时出现以下错误。
Error building Documentation. Object reference not set to an instance of object. Object reference not set to an instance of object
该文档将由以下内容生成:
<target name="Documentation">
<property name="nant.settings.currentframework" value="net-3.5"/>
<ndoc>
<assemblies>
<include name="Release\Project.dll" />
</assemblies>
<summaries>
<include name="Release\Project.XML" />
</summaries>
<documenters>
<documenter name="MSDN"> //MSDN properties
</documenter>
</documenters>
</ndoc>
</target>