[Mono-list] Newbie - How to invoke compiler after installing?

2009-03-02 Thread lionel keene
Hello all, Mono newbie here. How do I compile the following example (which I've entered via Microsoft Norepad and saved as c:\Mono Test\Simple.cs: using System.Windows.Forms; using System.Drawing; public class Simple : Form { public Simple() { Text = Simple; Size = new

Re: [Mono-list] Newbie - How to invoke compiler after installing?

2009-03-02 Thread Maser, Dan
www.inin.com -Original Message- From: mono-list-boun...@lists.ximian.com [mailto:mono-list-boun...@lists.ximian.com] On Behalf Of lionel keene Sent: Monday, March 02, 2009 2:25 PM To: mono-list@lists.ximian.com Subject: [Mono-list] Newbie - How to invoke compiler after installing? Hello

Re: [Mono-list] Newbie - How to invoke compiler after installing?

2009-03-02 Thread Andreas Färber
Hello, Am 02.03.2009 um 21:25 schrieb lionel keene: gmcs -r:System.Windows.Forms.dll -r:System.Drawing.dll c:\Mono Test \simple.cs Whenever you have spaces in your file path, you need to quote it or it's interpreted as multiple files. After hunting aroud online I changed appended the

Re: [Mono-list] Newbie - How to invoke compiler after installing?

2009-03-02 Thread Jonathan Pobst
I've installed Mono 2.2 using the default installation parameters on my Wndows XP box. Then, at the command prompt, I tried changing to the compiler directory (the directory containing gmcs.exe) via: The easiest way is to go to your Start Menu, and run the Mono-2.2 Command Prompt. It will

Re: [Mono-list] Newbie - How to invoke compiler after installing?

2009-03-02 Thread LKeene
Jonathan Pobst wrote: I've installed Mono 2.2 using the default installation parameters on my Wndows XP box. Then, at the command prompt, I tried changing to the compiler directory (the directory containing gmcs.exe) via: The easiest way is to go to your Start Menu, and run the Mono-2.2