Details about Problem
When uploading a package to nuget.org manually via the website, I can set a documentation URL that points to a readme file on github, as shown here: https://www.nuget.org/packages/blazor-server-githubactions-demo/ How do I this via a .csproject file, as I use CI / CD to publish my packages and so I don't want this to be a manual step. how publish readme file automatically along with pacakge.
I didn't try, but according to this blog post from Microsoft, I'd expect the following to work
README.md
in your repo.csproj
file looks like this:This should configure everything in your NuGet package, so that it gets picked up when being uploaded to nuget.org.