Jump to content

Visual Studio: Difference between revisions

From Bonfire Star Wiki
Phidao (talk | contribs)
Created page with "== Shortcuts == CTRL+Enter: Will create a new line above your current line and move your cursor there."
 
Phidao (talk | contribs)
 
(One intermediate revision by the same user not shown)
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>
=== Trust ===
<syntaxhighlight lang=bash>
dotnet dev-certs https --clean
dotnet dev-certs https --trust
</syntaxhighlight>
=== Recent Version ===
<syntaxhighlight lang=bash>
dotnet --version
</syntaxhighlight>
=== Available Version ===
<syntaxhighlight lang=bash>
dotnet --list-sdks
</syntaxhighlight>
=== Verbose ===
<syntaxhighlight lang=bash>
dotnet --info
</syntaxhighlight>

Latest revision as of 17:03, 21 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."

Trust

dotnet dev-certs https --clean
dotnet dev-certs https --trust

Recent Version

dotnet --version

Available Version

dotnet --list-sdks

Verbose

dotnet --info