Visual Studio For Mac Preview Review

Visual studio for mac review

“At its heart,” Microsoft said, “Visual Studio for Mac is a macOS counterpart of the Windows version of Visual Studio.” The Mac version’s user experience has been designed in such a way. This is a preview of the upcoming Visual Studio for Mac 7.1 release. These previews are unsupported builds to allow developers to test the new features, and to gather feedback and bug reports.

Active2 years, 5 months ago

I have .Net Winform project(c#) working in windows.Now,i want to do same project, to work as OSX App in Mac. As per my understanding Microsoft recently launched Visual studio for Mac preview and also it support OSX app development using Xamarin.Mac and also it support .Netcore .

Instead of creating Osx app from scratch,i need to reuse the code which is available in .net winform project.

can i develop UI application using .netcore project? I think .netframework and .netcore more or less same.can i port .netframework to .netcore project and create osx app ?or

Visual

can i use xamarin.mac and reuse the .netframework c# code to create osx app?

I am new to this,so kindly suggest the best way to create OSX app using Visual studio for Mac preview. (Basically i need Tabel view,form controls and graph(there i use zedgraph).Is these view are available here.

Manoj Prabhakar
Manoj PrabhakarManoj Prabhakar

1 Answer

In general, the 'standard' way of developing cross platform applications is to separate as much of your logic as possible into shared libraries of some type and create 'thin' UIs specific to each platform.

Depending on your need, you could easily make that shared code netstandard/PCL/etc compatible and share between platforms or just recompile the project in each solution.

NSTableView will likely solve your needs, but expect it to be significantly more primitive that what you are used to on Windows. Graph controls don't come built in, so you'll need to find a vendor that ships Cocoa controls or draw them yourself.

Visual Studio For Mac Preview Review

Here is the quickstart documentation.

Visual Studio For Mac Download

Xamarin.Forms support for macOS is coming in the future, currently earmarked for Q2 this year.

Chris HamonsChris Hamons
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.

Visual Studio For Mac

Not the answer you're looking for? Browse other questions tagged winformsvisual-studioxamarin.net-corexamarin.mac or ask your own question.