source code editor developed by Microsoft

Visual Studio Code (commonly referred to as VS Code) is an integrated development environment developed by Microsoft for Windows, Linux, macOS and web browsers. Features include support for debugging, syntax highlighting, intelligent โ€ฆ Wikipedia
Factsheet
Original author Erich Gamma
Developer Microsoft
Initial release April 29, 2015; 10 years ago (2015-04-29)
Factsheet
Original author Erich Gamma
Developer Microsoft
Initial release April 29, 2015; 10 years ago (2015-04-29)
๐ŸŒ
Visual Studio
visualstudio.microsoft.com โ€บ downloads
Visual Studio & VS Code Downloads for Windows, Mac, Linux
November 13, 2025 - Download Visual Studio IDE or VS Code for free. Try out Visual Studio Professional or Enterprise editions on Windows, Mac.
๐ŸŒ
Visual Studio Code
code.visualstudio.com โ€บ download
Download Visual Studio Code - Mac, Linux, Windows
November 3, 2021 - Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows. Download Visual Studio Code to experience a redefined code editor, optimized for building and debugging modern web and cloud applications.
Top answer
1 of 3
25

In case anyone else having the same question visited here, please visit the official guide.

The following is quoted from the original guide which was updated at 2017-4-14.

Uninstall Visual Studio for Mac App

Step 1. Locate Visual Studio.app in the /Applications directory and drag it to the Trash Can. Alternatively, right-click and select Move to Trash.

Step 2. Remove all traces of Visual Studio for Mac

Execute the following commands in your terminal:

sudo rm -rf "/Applications/Visual Studio.app"
rm -rf ~/Library/Caches/VisualStudio
rm -rf ~/Library/Preferences/VisualStudio
rm -rf "~/Library/Preferences/Visual Studio"
rm -rf ~/Library/Logs/VisualStudio
rm -rf ~/Library/VisualLodStudio

Uninstall Xamarin.Android

sudo rm -rf /Developer/MonoDroid
rm -rf ~/Library/MonoAndroid
sudo pkgutil --forget com.xamarin.android.pkg
sudo rm -rf /Library/Frameworks/Xamarin.Android.framework 

Uninstall Xamarin.iOS

rm -rf ~/Library/MonoTouch
sudo rm -rf /Library/Frameworks/Xamarin.iOS.framework
sudo rm -rf /Developer/MonoTouch
sudo pkgutil --forget com.xamarin.monotouch.pkg
sudo pkgutil --forget com.xamarin.xamarin-ios-build-host.pkg

Uninstall Xamarin.Mac

sudo rm -rf /Library/Frameworks/Xamarin.Mac.framework
rm -rf ~/Library/Xamarin.Mac

Uninstall Workbooks and Inspector

sudo /Library/Frameworks/Xamarin.Interactive.framework/Versions/Current/uninstall

Uninstall the Visual Studio Installer

rm -rf ~/Library/Caches/XamarinInstaller/
rm -rf ~/Library/Caches/VisualStudioInstaller/
rm -rf ~/Library/Logs/XamarinInstaller/
rm -rf ~/Library/Logs/VisualStudioInstaller/
rm -rf ~/Library/Preferences/Xamarin/
rm -rf "~/Library/Preferences/Visual Studio/"

Uninstall Mono SDK (MDK)

Warning

There are other applications outside of Xamarin which also use Mono, such as Unity. Be sure that there are no other dependencies on Mono before uninstalling it.

sudo rm -rf /Library/Frameworks/Mono.framework
sudo pkgutil --forget com.xamarin.mono-MDK.pkg

Other apps with name prefix Xamarin

The official guide didn't mention it, but I found there were other apps named Xamarin.xxxx in my library directory. I simply moved them to trash.

2 of 3
13

May be this would be better solution (no need to follow each step): https://raw.githubusercontent.com/MicrosoftDocs/visualstudio-docs/master/mac/resources/uninstall-vsmac.sh :

#!/bin/sh

# Uninstall Visual Studio for Mac
echo "Uninstalling Visual Studio for Mac..."

sudo rm -rf "/Applications/Visual Studio.app"
rm -rf ~/Library/Caches/VisualStudio
rm -rf ~/Library/Preferences/VisualStudio
rm -rf "~/Library/Preferences/Visual Studio"
rm -rf ~/Library/Logs/VisualStudio
rm -rf ~/Library/VisualStudio
rm -rf ~/Library/Preferences/Xamarin/
rm -rf ~/Library/Developer/Xamarin

# Uninstall Xamarin.Android
echo "Uninstalling Xamarin.Android..."

sudo rm -rf /Developer/MonoDroid
rm -rf ~/Library/MonoAndroid
sudo pkgutil --forget com.xamarin.android.pkg
sudo rm -rf /Library/Frameworks/Xamarin.Android.framework


# Uninstall Xamarin.iOS
echo "Uninstalling Xamarin.iOS..."

rm -rf ~/Library/MonoTouch
sudo rm -rf /Library/Frameworks/Xamarin.iOS.framework
sudo rm -rf /Developer/MonoTouch
sudo pkgutil --forget com.xamarin.monotouch.pkg
sudo pkgutil --forget com.xamarin.xamarin-ios-build-host.pkg


# Uninstall Xamarin.Mac
echo "Uninstalling Xamarin.Mac..."

sudo rm -rf /Library/Frameworks/Xamarin.Mac.framework
rm -rf ~/Library/Xamarin.Mac


# Uninstall Workbooks and Inspector
echo "Uninstalling Workbooks and Inspector..."

sudo /Library/Frameworks/Xamarin.Interactive.framework/Versions/Current/uninstall


# Uninstall the Visual Studio for Mac Installer
echo "Uninstalling the Visual Studio for Mac Installer..."

rm -rf ~/Library/Caches/XamarinInstaller/
rm -rf ~/Library/Caches/VisualStudioInstaller/
rm -rf ~/Library/Logs/XamarinInstaller/
rm -rf ~/Library/Logs/VisualStudioInstaller/

# Uninstall the Xamarin Profiler
echo "Uninstalling the Xamarin Profiler..."

sudo rm -rf "/Applications/Xamarin Profiler.app"

echo "Finished Uninstallation process."

If you haven't dealt with bash script before, you may look at its documentation too: https://docs.microsoft.com/en-us/visualstudio/mac/uninstall

Actually, it is pretty easy. Create a file with extension .sh (for example, vsremover.sh) and paste the code above. Save. Open terminal application, go to the place where you saved the file (for example: cd /Users/yourname/Desktop) and type the following:

chmod +x vsremover.sh

Then run it:

./vsremover.sh
๐ŸŒ
Microsoft
visualstudio.microsoft.com โ€บ vs
Visual Studio IDE - AI for coding debugging and testing
1 week ago - Visual Studio is the best IDE for building modern, cross-platform applications for Windows, Mac, Linux, iOS, and Android.
๐ŸŒ
Reddit
reddit.com โ€บ r/apple โ€บ microsoft is discontinuing visual studio for mac after major overhaul
r/apple on Reddit: Microsoft is discontinuing Visual Studio for Mac after major overhaul
August 30, 2023 - That is not what .Net was suppose to do tho.. not what LYING MSFT did lol Continue this thread ... Sounds correct to me. This way you only have to write code once and can use it on Windows or Mac. Visual Studio for Mac is only for creating mac apps.
๐ŸŒ
Macupdate
visual-studio.macupdate.com โ€บ developer tools โ€บ visual studio
Download Visual Studio for Mac | MacUpdate
Download the latest version of Visual Studio for Mac for free. Read 3 user reviews and compare with similar apps on MacUpdate.
๐ŸŒ
Medium
medium.com โ€บ @ertekinozturgut โ€บ visual-studio-2022-dying-on-mac-discover-alternatives-for-net-developers-to-use-on-mac-785ae55a756c
Visual Studio 2022 Dying on Mac: Discover Alternatives for .NET Developers to Use on Mac | by Ertekin ร–zturgut | Medium
September 5, 2023 - The Mac version of Visual Studio, which is among the first to come to mind, is being discontinued. You can find the details at the link below. My guess is that Microsoft will develop a new product that will save it from the image of starting ...
Find elsewhere
๐ŸŒ
Apple Community
discussions.apple.com โ€บ thread โ€บ 254945980
Visual Studio for Mac mini - Apple Community
June 25, 2023 - R and R Studio version for MacBook Air 'OS Sierra- 10.12.6' Dear all, Can you please suggest which R and R studio versions will work on my Mc Book software's version- 'OS Sierra- 10.12.6'. I downloaded R-3.6.3 as it was written that it is compatible with Mac OS 10 and above. But not able to figure out which R studio to go for. Or if I need to update my system's software? If so, can you please guide how. I didn't find any notifications in the 'General tab' under system preferences section. Thanks! 2928 1 ... Visual Studio for Mac only supports .NET development and therefore only supports C#.
๐ŸŒ
Hacker News
news.ycombinator.com โ€บ item
Microsoft is discontinuing Visual Studio for Mac after major overhaul | Hacker News
September 5, 2023 - Hmm that sounds appealing /s ยท JetBrains Rider is the only viable alternative now
๐ŸŒ
Microsoft
devblogs.microsoft.com โ€บ dev blogs โ€บ visual studio blog โ€บ visual studio for mac retirement announcement
Visual Studio for Mac Retirement Announcement - Visual Studio Blog
January 2, 2025 - Visual Studio for Mac 17.6 will continue to be supported for another 12 months, until August 31st, 2024, with servicing updates for security issues and updated platforms from Apple.
๐ŸŒ
Microsoft Learn
learn.microsoft.com โ€บ en-us โ€บ visualstudio โ€บ releases โ€บ 2022 โ€บ what-happened-to-vs-for-mac
What happened to Visual Studio for Mac | Microsoft Learn
Visual Studio for Mac has been retired as of August 31, 2024 in accordance with Microsoftโ€™s Modern Lifecycle Policy. Visual Studio for Mac is no longer supported. There will be no further servicing updates to address security issues or updated ...
๐ŸŒ
Microsoft Learn
learn.microsoft.com โ€บ en-us โ€บ answers โ€บ questions โ€บ 2236094 โ€บ visual-studio-for-mac
Visual studio for mac. - Microsoft Q&A
March 18, 2025 - You need to install some corresponding extensions for developing on the Mac, for example, C# Dev Kit. Though Visual Studio for Mac will no longer be supported or maintained after August 31, 2024, itโ€™s still available as a legacy ...
๐ŸŒ
Visual Studio Magazine
visualstudiomagazine.com โ€บ articles โ€บ 2023 โ€บ 08 โ€บ 30 โ€บ vs-for-mac-retirement.aspx
Microsoft Kills Visual Studio for Mac -- Visual Studio Magazine
August 30, 2023 - Finally, today Microsoft threw in the towel, switching its Mac ambitions to VS Code and other alternatives. "With today's announcement, we're redirecting our resources and focus to enhance Visual Studio and VS Code, optimizing them for ...
๐ŸŒ
Microsoft
visualstudio.microsoft.com
Visual Studio: IDE and Code Editor for Software Development
Visual Studio dev tools & services make app development easy for any developer, on any platform & language. Develop with our code editor or IDE anywhere for free.
๐ŸŒ
GeeksforGeeks
geeksforgeeks.org โ€บ installation guide โ€บ visual-code-studio-for-mac
How to Run Visual Studio on Mac? - GeeksforGeeks
July 23, 2025 - Versatile: Visual Studio isnโ€™t picky. You can use it to make apps for Windows, Mac, Linux, iPhones, Android phones.