Debugging private NuGet packages?

后端 未结 6 1893
耶瑟儿~
耶瑟儿~ 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:03

    The way we do it (and works):

    1. Generate "*.symbols.nupkg"
    2. Deploy symbol package to SymbolSource server (private)
    3. Configure IDE
    4. Add required Library to project using NuGet (from our SymbolSource server)
    5. Debug!

    Links that can be useful:

      • SymbolSource server installation

      • Important: "Debugging Tools for Windows" won't install if it detects newer Visual C++ Redist version in the system than it needs/expects

      • Vs configuration to debug using SymbolSource

      • The URL to add is like http://your.symbolsource-server.com:[port]/[appContext]/WinDbg/pdb

提交回复
热议问题