diff --git a/_includes/gs/linux_gs.html b/_includes/gs/linux_gs.html index 79fb7c78..d813caf3 100644 --- a/_includes/gs/linux_gs.html +++ b/_includes/gs/linux_gs.html @@ -22,9 +22,19 @@

Install .NET Core

-

sudo apt-get install dotnet

+

sudo apt-get install dotnet-nightly

+

There is currently an issue with the APT package, which creates a directory + called `/usr/share/dotnet-nightly` where the runtime is expecting `/usr/share/dotnet`. + You can work around this for now by creating a symlink with the correct name, as shown + below.

+
+
+
+

sudo ln -s /usr/share/dotnet-nightly /usr/share/dotnet

+
+
3