Replace NuGet package with a local dll file

前端 未结 2 962
南旧
南旧 2021-01-26 01:27

A project I am working on depends on a NuGet package. The dll file inside package is compiled in Release mode, therefore using debugger to inspect code (which is my goal) is imp

2条回答
  •  轮回少年
    2021-01-26 01:46

    You could ask the author of the nuget package to publish source and debug symbols of the package to a public symbolsource server and reference it. After that you would keep using the release version of the dll but be able to debug into it.

提交回复
热议问题