Re: [Mono-list] How to mount a drive under mono

2009-07-31 Thread adrin
Chris Howie wrote: > > > There is not a way to do this short of implementing the P/Invoke > yourself or running a process. See > : > > mount: Inherently non-portable across the various Unix flavours, and > will never be s

Re: [Mono-list] JavaScript

2009-07-31 Thread Glenn R. Martin
On 31 Jul 2009, at 07:45 , Doug Blank wrote: Why JavaScript? Consider using the DLR which would allow users to use Python, Ruby, and other languages as they come on-line. See: http://en.wikipedia.org/wiki/Dynamic_Language_Runtime Works great with Mono. All the rest of our systems (the C

Re: [Mono-list] Exec task in xbuild not working at all

2009-07-31 Thread Vlad Alexandru Ionescu
Ankit, Thank you for such a quick fix. It works now, except when you have a space in the command. It doesn't separate the command from the arguments properly. e.g.: This gets executed as command: $(ProjectDir)MyFolder\My arguments: folder with space in its name\app.exe my arg1 myArg2 This

Re: [Mono-list] JavaScript

2009-07-31 Thread Doug Blank
On Thu, Jul 30, 2009 at 4:54 PM, Glenn R. Martin wrote: > Has anyone heard of a JavaScript engine implementation (or Wrapper) > in .NET? > > We are looking to build a scriptable interface in one of our projects. > Why JavaScript? Consider using the DLR which would allow users to use Python, Ruby,

Re: [Mono-list] JavaScript

2009-07-31 Thread Glenn R. Martin
Jedd, I saw this on the Mono site, maybe im wrong but this looks like a JS- to-MSIL compiler. I was hoping there was a JS engine that has a C# wrapper. For example a Google V8, or SquirrelFish wrapper for .NET. Thanks Glenn R. Martin On 30 Jul 2009, at 21:01 , Jedd Haberstro wrote: Hi Gl

Re: [Mono-list] JavaScript

2009-07-31 Thread Glenn R. Martin
Diego, Unless im reading this wrong, this will compile C# in to JavaScript. I was looking for a JavaScript interpreter for Mono/.Net. Allowing me to provide an API from C# that some JavaScript writers could work against and could interpret JS. Did i miss something in the documentation? Th