What do you also get, that you might install separately, when you install the .NET SDK?
The .NET runtime
What is the command to list all the .NET runtimes installed on your machine?
dotnet --list-runtimes
What is the command to list all the .NET SDKs that are installed?
dotnet --list-sdks
What's the first thing to install to get started developing applications with C# and .NET?
The .NET SDK
What long option to the dotnet command will display the .NET SDK version in use?
--version
What long option to the dotnet command will display the installed runtimes?
--list-runtimes
What long option to the dotnet command will display the installed SDKs?
--list-sdks
What in .NET terminology can contain multiple projects that all work together?
A solution
What is the dotnet CLI command to restore all of the NuGet packages required for your solution?
dotnet restore
What is the dotnet runtime for building ASP.NET Core applications?
Microsoft.AspNetCore.App
What is the dotnet runtime that is the foundational runtime for .NET?
Microsoft.NETCore.App
What is the node in the *.csproj file that sets the .NET version?
TargetFramework
What is the dotnet command to check for updates for your installed versions of the .NET SDK and runtimes?
dotnet sdk check
What file can you put in a .NET project to make dotnet.exe --version in that directory (and any subdirectory) pinned to something?
global.json
[...] is a popular IDE by Microsoft (in addition to Visual Studio 2022) that is fast with limited functionality that can be customized through extensions.
Visual Studio Code is a popular IDE by Microsoft (in addition to Visual Studio 2022) that is fast with limited functionality that can be customized through extensions.
Previous card
First card
Random order
Next card