skip to Main Content

Visual Studio Code – Compiling asp.net core 8.0 sources

I've downloaded ASP.Net Core sources from: https://github.com/dotnet/aspnetcore . Then build them using instructions from: https://github.com/dotnet/aspnetcore/blob/main/docs/BuildFromSource.md . Using this walkthrough (plus script engbuild.ps1) I've successfully downloaded main and depended code (using git and /restore.cmd), prepare visual studio (./eng/scripts/InstallVisualStudio.ps1) and compile (engbuild.ps1).…

VIEW QUESTION

Installing dotnet-sdk-7.0 on Ubuntu 20.04 (and 22.04) breaks net6.0 projects (and net7.0 doesn't work either). Sudo needed to build after this

I follow these instructions to install dotnet on Ubuntu 20.04. Install the sdk Ubuntu 20.04 These instruction is at this time: wget https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb sudo dpkg -i packages-microsoft-prod.deb rm packages-microsoft-prod.deb sudo apt-get update && sudo apt-get install -y dotnet-sdk-6.0…

VIEW QUESTION
Back To Top
Search