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

Linux command: Check Current Shell

What is your current shell ?

Java: Free Online Courses

The Java™ Tutorials by Oracle The Java Tutorials are practical guides for programmers who want to use the Java programming language to create applications. They include hundreds of complete, working examples, and dozens of lessons. Groups of related lessons are organized into "trails". https://docs.oracle.com/javase/tutorial/ Learn to Program in Java at edX.ogr Get started on the path to becoming a software engineer by learning core coding skills in Java—one of the most popular programming languages. https://www.edx.org/course/learn-to-program-in-java-0 Java Tutorial by javapoint.com https://www.javatpoint.com/java-tutorial Java Tutorial by SoloLearn.com I love SoloLearn because I can learn Java - and other popular programming languages - anywhere, any time on your mobile devices. https://www.sololearn.com/Course/Java/ Java on Azure https://docs.microsoft.com/en-us/learn/paths/java-on-azure/

Powershell: Get-ChildItem

List, search/find files and directories with Get-ChildItem cmdlet.