Quantcast
Channel: Active questions tagged nuget-package - Stack Overflow
Viewing all articles
Browse latest Browse all 3172

Debugging into Nuget Package, dotnet Pack (.Net CLI) vs. Azure Pipeline Pack task

$
0
0

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


Viewing all articles
Browse latest Browse all 3172