I would like to add a chm
file (documentation) to my nuget package. Is that possible? I saw this question, but it's from 2011 and I wonder if anything has changed since then.
If it's possible, I'd like to know how to do it through Visual Studio. My nuget package gets created by msbuild directly from the csproj
file (from which an intermediate nuspec
file gets created).
I noticed that if I add this line in the intermediate nuspec file
<file src="Content\**" target="content" />
and build the package, the chm file does get added to the package, but I don't know how to view it after I install the package in another solution. Is it possible?