-
Notifications
You must be signed in to change notification settings - Fork 724
Desktop .NET Framework
Shi Kouzhong edited this page Jun 28, 2018
·
10 revisions
The C# extension supports limited full .NET framework debugging. It can only debug 64-bit applications with portable PDBs.
To enable the Desktop CLR debugger, change the configuration type in launch.json to be "clr" instead of "coreclr" and program should be pointing at the exe (NOT a .dll).
{
...
"type": "clr",
"program": "path\\to\\program.exe",
...
}
More information about debugging desktop .net framework can be found here, https://stackoverflow.com/questions/47707095.
Documentation
- Change Log
- Main repo documentation.
- Branches and Releases
- Installing Pre-Releases
- Installing without internet connectivity
Configuration
- Configuring Snap installs of dotnet-sdk
- Configuring Arch Linux for Unity development
- Configuring Arch Linux for Razor development
- Installing the .NET Core Debugger on Arch Linux
Developer Guide