diff --git a/linux/dotnet.md b/linux/dotnet.md new file mode 100644 index 0000000..7f82f80 --- /dev/null +++ b/linux/dotnet.md @@ -0,0 +1,29 @@ +# dotnet related tops and tricks + +## un-proviledged setup script + +```bash +mkdir -p $HOME/.dotnet +curl "https://dotnet.microsoft.com/download/dotnet/scripts/v1/dotnet-install.sh" -o $HOME/.dotnet/dotnet-install +chmod +x $HOME/.dotnet/dotnet-install +$HOME/.dotnet/dotnet-install -c LTS --install-dir $HOME/.dotnet + +cat >>"$HOME/.bashrc" <