1. In Visual Studio, navigate to Tools > Options > Debugging > General, uncheck the Enable Just My Code field.

2. Set Artifactory to be your Symbol Server in Visual Studio by navigating to Tools > Options > Debugging > Symbols and add the virtual or local repository URL path of Artifactory.

3. Create a dotnet project in which we have configured TestProject.1.0.0.nupkg as a dependency and we have to use the code from the dependency. We can add Breakpoint on the Console.WriteLine("testing"); for debugging purposes.

4. After starting the application in debug mode, we would be able to locate the TestProject.pdb file as expected. We may refer to the below screenshots.


2. Set Artifactory to be your Symbol Server in Visual Studio by navigating to Tools > Options > Debugging > Symbols and add the virtual or local repository URL path of Artifactory.
3. Create a dotnet project in which we have configured TestProject.1.0.0.nupkg as a dependency and we have to use the code from the dependency. We can add Breakpoint on the Console.WriteLine("testing"); for debugging purposes.
4. After starting the application in debug mode, we would be able to locate the TestProject.pdb file as expected. We may refer to the below screenshots.