After updating Visual Studio 2019 (Version 16.10.2) two weeks ago, we realized that it was suddenly possible to debug into our own made Nuget Packages without any copying of Symbols or other technics, which was not possible before.
Because we are using Azure Pipeline to build and deploy our software we tried here the same without success. The Azure Pipeline seems to use the same Nuget and .Net CLI version we use on local computer.
Do we miss settings in order to debug into the Nuget Package without copying symbols?
We use in Azure Pipeline
steps:- task: DotNetCoreCLI@2 displayName: 'dotnet pack' inputs: command: pack
and in local computer
dotnet pack
Thank you