-
-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Suggestion: Distribute PDB
files alongside DLL
s
#41
Comments
I added |
According to https://stackoverflow.com/questions/41713693/include-pdb-files-into-my-nuget-nupkg-files there is a way to include the PDBs with <files>
<file src="bin\$configuration$\$id$.pdb" target="lib\net452\" />
</files> but I don't know where I should put that. Surely not in the csproj file, right? |
At some point your are creating a zip file on release. Include the Come to think of it again, I suppose that the |
I use the Create package on build feature. When compiling the project it automatically generates the nugets. It is convenient. I guess using the command line with |
Yes. It won't allow you to upload a package that is already released because there are security risks or breaking changes by doing that. Same goes for |
That's a reasonable solution. |
Distributing the
.pdb
files will help us debug your library from within our code.https://devblogs.microsoft.com/visualstudio/debugging-external-sources-with-visual-studio/
The text was updated successfully, but these errors were encountered: