Wednesday 15 November 2023

Installing .NET 8.0 SDK on WSL

 WSL (Windows subsystem for Linux) is a great way to work with Linux on Windows. .NET 8 is released on November 14th, and let's see how we can get .NET 8 SDK setup on WSL to build and test our .NET 8 apps on Linux on a windows machine.

What we want is when we do a dotnet --list-sdks to see the .NET 8 available in WSL. 


To get .NET 8 SDK installed on WSL simple run below command.. Once complted the .NET 8 SDK is ready to go on WSL.

sudo apt-get update && sudo apt-get install -y dotnet-sdk-8.0

No comments:

Popular Posts