docfx를 사용하여 참조 문서를 생성하는 방법 (How to generate documentation with references using docfx)


문제 설명

docfx를 사용하여 참조 문서를 생성하는 방법 (How to generate documentation with references using docfx)

.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를 참조하고 있습니다. 그것을 사용하여 나는 testmethod라고 부릅니다. 하지만 문서가 표시되지 않고 이 클래스는 ServiceLayer Reference를 사용하고 있습니다.

문서에서도 "//"에 주석을 표시할 수 있는 방법이 있습니까?


참조 솔루션

방법 1:

Check the following link: https://dotnet.github.io/docfx/spec/metadata_dotnet_spec.html

The metadata defined for .net include the declarations of:

Namespaces

Types, including class, struct, interface, enum, delegate

Type members, including field, property, method, event

All these are annotated with the /// XML comment. Since this is an api descriptor, it makes sense to include only those

(by Ramakrishna YeldutiAthanasios Kataras)

참조 문서

  1. How to generate documentation with references using docfx (CC BY‑SA 2.5/3.0/4.0)

#Documentation #C# #docfx #ASP.NET






관련 질문

터미널에서 XCode docset 문서 보기 (View XCode docset docs from terminal)

ArrayList 생성자에 대한 JDK API 문서가 올바르지 않습니다. 버그인가요? (JDK API documentation is incorrect for ArrayList constructor. Is that a bug?)

스칼라의 변수 문서 (Variables documentation in Scala)

재정의된 메서드에 대한 신속한 문서 주석? (Swift documentation comments for overriden methods?)

이미 존재하는 doxygen 문서를 상호 참조하는 방법은 무엇입니까? (How to cross-reference already existing doxygen docs?)

Spring Mock mvc 호출에 객체 속성 전달 (Pass object attrbute to spring Mock mvc call)

docfx를 사용하여 참조 문서를 생성하는 방법 (How to generate documentation with references using docfx)

get_token_user_sub() 함수는 무엇을 해야 합니까? (What is the function get_token_user_sub() supposed to do?)

UML/XMI 파일을 StarUML로 가져오는 방법은 무엇입니까? (How to import any UML/XMI files to StarUML?)

문서화 오류 Jazzy "0% 문서화되지 않은 기호가 포함된 문서 적용 범위" (documenting error Jazzy "0% documentation coverage with 0 undocumented symbols")

간단한 방법으로 javadoc을 내보내거나 구문 분석하는 도구가 있습니까? (Are there any tools to export/parse javadocs in simple way?)

JSON 스키마 기반 문서 (Documentation based on JSON Schema)







코멘트