Skip to content

Latest commit

 

History

History
55 lines (35 loc) · 1.99 KB

VisualStudioCode-dotnet.md

File metadata and controls

55 lines (35 loc) · 1.99 KB

Tips to develop with Visual Studio Code for .NET

Index

Extension

If you want to search more extensions, in your Visual Studio Code, press Ctrl + Shift + X to open the extensions panel and write @category:debuggers C#

Set to debug mode

When strart up Visual Studio Code

Enable debug

Extension icon

Enable debug

Click in Generate C# Assets for Build and Debug

Menu

Enable debug

Ctrl + Shift + P : And start writing Generate Assets...

Hide build and debug files

  1. Go Settings
  2. Search the configuration: hide files
  3. Add these pattern
    • **/bin
    • **/obj
    • **/.vs
    • **/.vscode

Hide build and debug files

References

Amichai Mantinband