Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

393
Views
Show comments in nuget package

How do I include the comments that I write above my methods and properties in my nuget package? Ie. So when the library is consumed the user can use intellisense and read what the method is about?

eg. if I have the method

/// <summary>
/// This method does such and such
/// </summary>
public void SomeMethod()
{
   // does something..
}

Then I want to user to be able to see "This method does such and such" as they type the method.

over 4 years ago · Santiago Trujillo
2 answers
Answer question

0

For .NET Core and recent versions of VisualStudio, checking "XML Documentation file" will add an absolute path, as discussed here. This appears to be a bug, and it's preventing NuGet packages from including documentation.

The solution is to add the following to the .csproj file, and un-check the "XML Documentation file" box.

<PropertyGroup>
  <GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>

A target was recently added to the SDK so that if this value is true, and DocumentationFile is empty (i.e., the checkbox is not set in Visual Studio), it will just "do the right thing" and generate the documentation file in the output folder that NuGet expects.

There is currently no way to do this from the Visual Studio UI; a request to make that change is still being discussed as of the time of this writing.

Update: It looks like the setting for this is now available as a preview feature in Visual Studio.

over 4 years ago · Santiago Trujillo Report

0

You have to enable the XML-Documentation when building.

See here

In Project-Properties go to the Build-Tab and select Xml-Documentationfile.

Looks similiar to this

German Version of Visual Studio

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!