3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

VSCodeでC#のドキュメントコメントをファイル出力する

Last updated at Posted at 2019-07-05

プラグインの説明欄に書いてあるけど見落としていたので、同類がいると思って書いておきます。

XML Documentation CommentをXMLファイルに出力します。

プラグインを入れる

C# XML Documentation Comments

csprojを編集する

PropertyGroupの中に以下を記述して保存

myApp.csproj
<PropertyGroup>
    ...
    <GenerateDocumentationFile>true</GenerateDocumentationFile>
    <DocumentationFile>FilePath/FileName.XML</DocumentationFile>
</PropertyGroup>

パスはcsprojファイルからの相対パスです。

コンパイルする

F5押してプロジェクト実行でもすれば良いかと。

そうしたら指定したパスにファイルが出力されていると思います。

3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?