matev
matev

Reputation: 319

Open Visual Studio project on MAC OS X

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

Upvotes: 21

Views: 28805

Answers (3)

Curiosity
Curiosity

Reputation: 1931

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.

Upvotes: 5

Jørgen R
Jørgen R

Reputation: 10806

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.

Upvotes: 10

Aaron Kempf
Aaron Kempf

Reputation: 588

There are SOME things you can do with Visual Studio Projects / Solutions on a Mac if you use Expression Studio.

Upvotes: -1

Related Questions