Visual Studio: Difference between revisions
Appearance
Created page with "== Shortcuts == CTRL+Enter: Will create a new line above your current line and move your cursor there." |
|||
| Line 2: | Line 2: | ||
CTRL+Enter: Will create a new line above your current line and move your cursor there. | CTRL+Enter: Will create a new line above your current line and move your cursor there. | ||
== .NET Commands == | |||
See if a valid HTTPS certificate is present | |||
<syntaxhighlight lang=bash> | |||
dotnet dev-certs https | |||
-- If present, will return "A valid HTTPS certificate is already present." | |||
</syntaxhighlight> | |||
Revision as of 19:49, 18 November 2025
Shortcuts
CTRL+Enter: Will create a new line above your current line and move your cursor there.
.NET Commands
See if a valid HTTPS certificate is present
dotnet dev-certs https
-- If present, will return "A valid HTTPS certificate is already present."