Attention: this is the key used to sign the certificate requests, anyone holding this can sign certificates on your behalf. So keep it in a safe place!
openssl genrsa -aes256 -out rootCA.key 4096
#!/bin/bash | |
# This is a simple script to uninstall Visual Studio for Mac and the other Xamarin or .Net Core packages from your machine. | |
# Uninstall Visual Studio for Mac | |
read -p "Uninstalling Visual Studio for Mac (y/n)?" answer | |
case ${answer:0:1} in | |
y|Y ) | |
sudo rm -rf "/Applications/Visual Studio.app" | |
rm -rf ~/Library/Caches/VisualStudio |