10

I am using Visual studio Code (Stable Version) with .Net Core 1.0 RTM. I also Installed C# extension for Visual studio Code & .Net Core . Now I am developing Web api and application running fine but I want to debug my code. when I am putting break-point then it is not working and showing me error on break-point mouse hover "No Symbol loaded for this document". Kindly help me . I tried following solution :

Visual Studio Code - Debugging

https://code.visualstudio.com/Docs/debugging

Constraint :- I do not want to use mono framework.

Community
  • 1
  • 1
KP Chundawat
  • 935
  • 9
  • 25

1 Answers1

33

Finally I got the solution . If you want to debug dotnet core project using visual studio code then facing this kind of problem then just add "debugType": "portable" at buildOptions into project.json file.

KP Chundawat
  • 935
  • 9
  • 25