Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasDorier committed Dec 12, 2018
1 parent 2aa8b61 commit 1b194f8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Expand Up @@ -48,6 +48,8 @@ Then, you need to:
* Go in `Tools / Options / Debugging / General` and turn off `Enable Just My Code`.
* Go in `Tools / Options / Debugging / Symbols` and add `https://symbols.nuget.org/download/symbols` to the `Symbol file (.pdb) locations`, make sure it is checked.

You should also check `Microsoft Symbol Server` or your debugging experience in visual studio will be slowed down.

Now you can Debug your project and step inside any call to NBitcoin.

## Debug inside source with Visual Studio Code
Expand All @@ -58,7 +60,7 @@ Inside your `launch.json`, add the following to `.NET Core Launch (console)` con
"justMyCode": false,
"symbolOptions": {
"searchPaths": [ "https://symbols.nuget.org/download/symbols" ],
"searchMicrosoftSymbolServer": false
"searchMicrosoftSymbolServer": true
},
```

Expand Down

0 comments on commit 1b194f8

Please sign in to comment.