How to include XML documentation file in NuGet package built from a project file?

后端 未结 2 513
傲寒
傲寒 2021-02-05 00:56

I consider it generally good practice to include the XML documentation file generated by the C# build in NuGet packages alongside the DLLs to provide intellisense documentation

相关标签:
2条回答
  • 2021-02-05 01:28

    For other people who came in with the same problem - and if the accepted answer does not help...

    Make sure that you have set the 'Include XML documentation' setting in the build configuration you are using (not just Debug, as by default)

    In Visual Studio:

    or in csproj:

     <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
        <GenerateDocumentationFile>true</GenerateDocumentationFile>
      </PropertyGroup>
    
    0 讨论(0)
  • 2021-02-05 01:35

    As long as you set GenerateDocumentationFile in your csproj file like this:

    <Project Sdk="Microsoft.NET.Sdk">
    
      <PropertyGroup>
        <TargetFramework>netstandard2.0</TargetFramework>
        <GenerateDocumentationFile>true</GenerateDocumentationFile>
      </PropertyGroup>
    
    </Project>
    

    then all the defaults will generate the documentation file at the correct location and it will be included in the NuGet package.

    If Visual Studio added DocumentationFile or other elements, you can delete them and replace it with the single GenerateDocumentationFile property.

    0 讨论(0)
提交回复
热议问题