Links
| Ctrl + T |
All-In-One Search, look for files, types, and members in your code
|
| Ctrl + J |
afficher l'IntelliSense
|
| Ctrl + Shift + Space |
afficher le tooltip des signatures des méthodes
|
| Ctrl + D |
duplicate current line
|
| Ctrl + Shift + L |
supprimer la ligne courante
|
| Ctrl + M + O |
collapse (Edit → Outlining → Collapse to Definitions)
|
Debug
| Ctrl + F10 |
Run to Cursor - Run the code until the cursor.
|
| Alt + * |
Go to the current statement.
|
- Windows settings → Personalization → Start → Show recently opened item in jump lists on start or the taskbar and in file explore quick access = On
| .editorconfig
|
[*.cs]
dotnet_diagnostic.IDE0001.severity = none
dotnet_diagnostic.IDE0002.severity = none
dotnet_diagnostic.IDE0049.severity = none
|
Elements to exclude
| Type
|
Value
|
| path |
C:\Program Files (x86)\Microsoft Visual Studio\2022\Professional\Common7\IDE\devenv.exe
|
| filename |
dotnet.exe
|
| filename |
MSBuild.exe
|
| path |
$Env:USERPROFILE\source\repos
|
|
Add-MpPreference -ExclusionProcess "${Env:ProgramFiles(x86)}\Microsoft Visual Studio\2022\Professional\Common7\IDE\devenv.exe"
Add-MpPreference -ExclusionProcess "${Env:ProgramFiles(x86)}\Microsoft Visual Studio\2022\Professional\dotnet\net8.0\runtime\dotnet.exe"
Add-MpPreference -ExclusionProcess "${Env:ProgramFiles(x86)}\dotnet\dotnet.exe"
Add-MpPreference -ExclusionProcess "$Env:ProgramFiles\dotnet\dotnet.exe"
Add-MpPreference -ExclusionPath "$Env:USERPROFILE\source\repos"
|
Extensions
Adds colors to Visual Studio output window.
Provides numbered bookmarks from 0 to 9.
Set keyboard shortcuts: Tools → Customize → Keyboard → SkoutSoft
- Ctrl-Shift-[0..9] toogle bookmark
- Ctrl-[0..9] go to
Hide the dashed outline displayed while editing a variable name.