Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remote debugging Azure Functions symbols not found

I'm trying to remote debug an azure function. So I followed the youtube video http://www.youtube.com/watch?v=uiqc0iWwAzw&t=17m10s But when I attach the debugger (to w3wp.exe) the breakpoint will never be hit.

The breakpoint has an open circle and states: "The breakpoint will not currently be hit. No symbols have been loaded for this document."

'w3wp.exe' (CLR v4.0.30319: /LM/W3SVC/1060585570/ROOT-1-131176201993551687): Loaded 'ƒ-HttpTriggerCSharp1#ℛ*5465853b-4ded-4374-bb31-e99c9fc6cc71#1-0'. Cannot find or open the PDB file.
'w3wp.exe' (CLR v4.0.30319: /LM/W3SVC/1060585570/ROOT-1-131176201993551687): Loaded 'ScriptHost'. 
'w3wp.exe' (CLR v4.0.30319: /LM/W3SVC/1060585570/ROOT-1-131176201993551687): Loaded 'Anonymously Hosted DynamicMethods Assembly'. 

I found a similar issue: Remote debugging Azure website: Breakpoints not hit

I also disable the "Enable Just my Code" option.

like image 201
Thieme Avatar asked Sep 02 '25 10:09

Thieme


1 Answers

In addition to disabling "Enable just my code", please also make sure the setting (in the same dialog) "Require source files to exactly match the original version" is disabled as well.

like image 104
Fabio Cavalcante Avatar answered Sep 04 '25 04:09

Fabio Cavalcante