.NET アプリケーションのソース管理には GitHub を使用します。 次の要件を満たすドキュメント ソリューションを展開する必要があります。 開発者がコードを変更すると、ドキュメントは Markdown で記述されます ドキュメントを変更すると、静的 Web サイトの再コンパイルがトリガーされます。 ユーザーは静的な Web サイトからドキュメントにアクセスします ドキュメントは GitHub リポジトリに保存されます Web サイトをコンパイルするために使用できる 2 つのツールはどれですか? それぞれの正解は、完全な解決策を提示します。
正解:A,E
Explanation Jekyll is a static site generator that can be used to generate a static website from Markdown files stored in a GitHub repository. Jekyll supports the use of Markdown for writing documentation, and it can automatically recompile the website whenever changes are made to the documentation. DocFX is another tool that can be used to compile a static website from Markdown files stored in a GitHub repository. It is an open-source tool that can be used to generate API documentation, reference documentation, and other types of documentation from source code and other files. DocFX supports the use of Markdown for writing documentation and it can automatically recompile the website whenever changes are made to the documentation.