Hi Kenichiro, thank you for the update - I am glad you were able to get Visual Studio for Mac installed successfully. If you happen run into any other unexpected behavior, please let us know by opening a new issue via Help > Report a Problem. However, after installing Visual Studio for Mac Preview, I can't start the app due the following error: `Could not launch visual studio This application requires mono 4.8 or greater. Hi, I've installed Visual Studio for Mac and my Mac and it seems to have installed OK. Installation of Visual Studio for Mac. And for example if you installed a mono that was much too old for a given VSfM you might run into issues. If you want to create code that will mostly run on Windows, Mono may be your best choice, and similarly if you want to practice C# for Windows development. If you want to create cross-platform applications, Mono is a good choice again, but you wil. Install Visual Studio for Mac behind a firewall or proxy server. To install Visual Studio for Mac behind a firewall, certain endpoints must be made accessible in order to allow downloads of the required tools and updates for your software. Hi Kenichiro, thank you for the update - I am glad you were able to get Visual Studio for Mac installed successfully. If you happen run into any other unexpected behavior, please let us know by opening a new issue via Help > Report a Problem.
I'm new to Mono development (but not .NET development) - got as far as downloading Visual Studio for Mac and trying to run a sample solution from Alea GPU. It complains that it needs mono64, but I see no option for selecting 64 bit architecture like I would in Windows, and Googling the issue has not turned up an answer I can make sense of. Can I use mono64 in VS for Mac and if so, how?
SushiHangover2 Answers
Since you are running within VS4M, you need to set the architecture of the run configuration that you are using.
Using an ML (Alea-based) program that I wrote as an example:
Within VS4M:
- Open the Project Options and go to
Run / Configuration / Default
:
- Open the
Mono runtime settings
and set the Arch to 64-bit:
From the cmd-line:
Mono is 64-bit by default now, so you can run either:
or
Note: On older version of Mono you would have to have used mono --arch=64 ...
. If you need arch32, you use mono32
, but CUDA only has 64 libs so this would not be needed for Alea usage.
I got mine to work by setting the Project -> Options to run with 32 bit mono.it all works, see pics.