Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Open Visual Studio project on MAC OS X

Tags:

I have a c++ project in Visual Studio, and I need to run that project on MAC OS X computers. Is that possible?

like image 241
matev Avatar asked Jul 03 '12 09:07

matev


People also ask

How do I open Visual Studio project on Mac?

With your first solution already open, select File > Open. Browse the file system to find the existing solution. Select Open to open the second solution in the Solution Window.

Does Visual Studio work on Mac OS?

Visual Studio 2022 for Mac brings a new, fully native macOS UI built on .NET 6, plus native support for the Apple M1 chip. It all adds up to faster, more fluid daily coding time for you.

How do I open a Csproj file on a Mac?

If you want to use csproj on Mac, you need to download RC4 from the link on the dotnet/cli repository. Note that you may need to ctrl+click open the file to get your Mac to allow you to run the installer, because it came from the internet.


2 Answers

MonoDevelop Can be used to open and manipulate Visual Studio project on a Mac. It can however only open .csproj files, not the legacy .vcproj. You can convert your old project to a compatible one, using Visual Studio Conversion Wizard.

As you are working with C++, you are however free to use any IDE or editor you like. As long as loosing your project metadata files isn't a problem, you can just open the files in Xcode, TextMate, Sublime Editor or any editor of choice.

like image 133
Jørgen R Avatar answered Sep 28 '22 01:09

Jørgen R


Even though it's several years after asking this question, there is a possibility at last.

You can now install Visual Studio Code on Mac and work with C++. Here's how you can do it.

like image 23
Curiousity Avatar answered Sep 28 '22 01:09

Curiousity