How to associate the ".exe" extension to be opened with Mono?
- by wuser
I want to asssociate the .exe file extension to Mono (don't care about wine).
Apparently, when using Finder's GUI, only .app files (application bundles) can be selected. But the Mono executable (/Libraries/Frameworks/Mono.Framework/Current/bin/mono) is no such bundle.
I tried some AppleScript
on run this_file
do shell script "mono this_file &"
end run
but Finder's GUI still doesn't allow to associate that with .exe's.
How to associate a specific file extension to a command-line application in Mac OS X?