Skip to main content

Microsoft .NET Core SDK

.NET Core Logo: https://upload.wikimedia.org/wikipedia/commons/thumb/e/ee/.NET_Core_Logo.svg/512px-.NET_Core_Logo.svg.png

>>> November 8th, 2022: .NET 7 is Available Today

dotnet --version : Print .NET version
dotnet --list-sdks: List installed .NET SDK
dotnet --list-runtimes: List installed .NET runtimes
dotnet --help : Get help
dotnet new --list : List all templates
dotnet new console -o HelloWorld : Create HelloWorld console app
dotnet new winforms -o WinForms : Create a Windows Forms app
dotnet new gitignore : Create .gitignore file
dotnet run
dotnet watch
PS C:\Users\tuyen> winget install Microsoft.DotNet.SDK.8
...
PS C:\Users\tuyen> dotnet --list-sdks
3.1.201 [C:\Program Files\dotnet\sdk]
5.0.100 [C:\Program Files\dotnet\sdk]
6.0.417 [C:\Program Files\dotnet\sdk]
7.0.103 [C:\Program Files\dotnet\sdk]
8.0.100 [C:\Program Files\dotnet\sdk]
PS C:\Users\tuyen> winget install Microsoft.DotNet.SDK.7
Found Microsoft .NET SDK 7.0 [Microsoft.DotNet.SDK.7] Version 7.0.100
This application is licensed to you by its owner.
Microsoft is not responsible for, nor does it grant any licenses to, third-party packages.
Downloading https://dotnetcli.azureedge.net/dotnet/Sdk/7.0.100/dotnet-sdk-7.0.100-win-x64.exe
  ███████████▎                    75.0 MB /  198 MB
Successfully verified installer hash
Starting package install...
Successfully installed  
PS C:\Users\tuyen> dotnet --list-sdks
6.0.403 [C:\Program Files\dotnet\sdk]
7.0.100 [C:\Program Files\dotnet\sdk]
PS C:\Users\tuyen>

Microsoft .NET Core courses

>>> Introducing .NET Core | LinkedIn Learning

>>> Introducing Desktop and .NET Core | LinkedIn Learning

Popular posts from this blog

nmap - The Network Mapper

WARNING : It is ILLEGAL to scan hosts without permission.

VMware Workstation: vmrun.exe

Using vmrun.exe to manage VMs on VMware Workstation

Linux command: lspci

Linux command: lspci - list pci devices tuyendq@ubuntu001:~$ man lspci NAME        lspci - list all PCI devices SYNOPSIS        lspci [options] DESCRIPTION        lspci is a utility for displaying information about PCI buses in the system and devices connected to them.        By  default,  it  shows a brief list of devices. Use the options described below to request either a more verbose output or output intended for parsing by        other programs.        If you are going to report bugs in PCI device drivers or in lspci itself, please include output of "lspci -vvx" or even better  "lspci  -vvxxx"  (however,        see below for possible caveats).        Some  parts of the output, especially in the highly verbose modes, are probably intelligible only to experienced PCI hac...