0

使用 .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>
4

1 回答 1

0

NDoc 不支持 .NET 3.5

看看沙堡

于 2012-02-17T14:47:55.260 回答