Debugging private NuGet packages?

后端 未结 6 1882
耶瑟儿~
耶瑟儿~ 2020-12-28 12:14

I\'ve published some private/internal libraries as NuGet packages, using the symbols option. The packages and symbols are hosted on an internal network share. How can I ste

6条回答
  •  北海茫月
    2020-12-28 13:11

    What is the command that you used to generate the packages with the symbols? I tried to do the same exact thing nuget.exe pack -Prop Configuration=Release Framework.csproj -Symbols This creates two files: Framework.nupkg and Framework.symbols.nupkg. I put these files on a network share, used them from another project and debugging worked fine.

    Have you tried putting the *.nupkg and *.symbols.nupkg files on a local disk instead of a network share?

提交回复
热议问题