DDL site owners

Status
Not open for further replies.
Never done it on a Mac, on Linux via a shell you do "mono filename.exe" or right click and choose run with mono. I'll look it up.

Edit: seems to be the same for a Mac ;).

Using Mono on MacOS X

At this point, you must use Mono from the command line, the usual set of commands that are available on other ports of Mono are available.

To build applications you can use "mcs", to run then you can use mono.

From a Terminal shell, you can try it out:
Code:
$ vi hello.cs 
$ mcs hello.cs
$ mono hello.exe
Hello, World
$
So it seems you have to start it via a terminal and do something like:
Code:
mono /Users/name/Desktop/DDL_Site_Template_Creator.exe
 
ok I did that hyperz but I get this error message:
Unhandled Exception: System.UnauthorizedAccessException: Access to the path "/Users/Sønic\Saved Templates" is denied.
at System.IO.Directory.CreateDirectoriesInternal (System.String path) [0x00000]
at System.IO.Directory.CreateDirectory (System.String path) [0x00000]
at Hyperz.DDL_Site_Template_Creator.Program.Main () [0x00000]




Is it because I'm not an admin on my computer ?
 
Most likely. Your PC is not allowing the program to create and/or write to that directory.

Edit: or maybe it has to do with paths on Unix systems using "/" and windows uses "\"
 
Status
Not open for further replies.
Back
Top