27 just tried getting the school project to actually run on my computer.
It started with dotnet run to complain about the build failing. Trying to run dotnet build gave no output however.
eventually I figured out that it wasn't installing dependencies. This lead to try and install nuget, Which became installing mono-complete to run a windows version of nuget like people suggested.
This however lead to a dead end (because, why not). After some more googling I concluded that I had to delete some specific folders however, this failed as well.
After that I tried running it as root, which looked like it worked, until it segfaulted.
This meant I had to rename something todo with ssl to fix that. So now, dotnet restore finally worked.
dotnet build however, still did not. However, at this point fixing that was easy as it just needed to run as root, and so does dotnet run.
Leave it to microsoft to make a compiler that needs to run as root >_>