0

I have a visual studio project that generates an exe file. I can run this project from within Visual Studio Community for Mac simply by clicking Run for the Release or Debug configurations.

I need to be able to do this from the command line. I've tried using wine but it throws exceptions that I never see in VSC.

Lex Li
  • 60,503
  • 9
  • 116
  • 147
Ginger McMurray
  • 1,275
  • 2
  • 20
  • 42
  • Open a terminal and run `mono your.exe`. – Lex Li Mar 01 '18 at 01:18
  • Possible duplicate of [How to run C# Desktop Application with extension .exe in Mac OSX?](https://stackoverflow.com/questions/3385652/how-to-run-c-sharp-desktop-application-with-extension-exe-in-mac-osx) – SushiHangover Mar 01 '18 at 01:24

1 Answers1

1

Thanks @Lex Li!

The solution is to open a terminal and run

mono <path to your app> <your app's arguments>
Ginger McMurray
  • 1,275
  • 2
  • 20
  • 42