我正在尝试为 .net 项目(多层)生成文档。但是我无法在使用docfx 生成的文档中看到参考类信息。
例如:
using Microsoft.AspNetCore.Mvc;
using ServiceLayer;
namespace testApplication.Controllers
{
/// <summary>
/// Home COntroller
/// </summary>
public class HomeController : Controller
{
/// <summary>
/// Index Method
/// </summary>
/// <returns></returns>
public IActionResult Index()
{
Class1 cls1 = new Class1();
//calling testmethod.
string abc = cls1.testmethod("testing");
return View();
}
}
}
上面的代码引用了ServiceLayer。使用我调用测试方法。但是文档没有显示,这个类正在使用 ServiceLayer Reference。
并且有什么方法可以在文档中的“//”中显示评论