Help!
 
Any suggestions to eliminate the following compile errors:
 
C:\Program Files (x86)\Mono>mcs e:\c#\hellogtk.cs -pkg:gtk-sharp-2.0
error CS2001: Source file `Files' could not be found
error CS2001: Source file `(x86)/Mono/lib/gtk-sharp-2.0/pango-sharp.dll' could not be found
error CS2001: Source file `(x86)/Mono/lib/gtk-sharp-2.0/atk-sharp.dll' could not be found
error CS2001: Source file `(x86)/Mono/lib/gtk-sharp-2.0/gdk-sharp.dll' could not be found
error CS2001: Source file `(x86)/Mono/lib/gtk-sharp-2.0/gtk-sharp.dll' could not be found
error CS2001: Source file `(x86)/Mono/lib/gtk-sharp-2.0/glib-sharp.dll' could not be found
Compilation failed: 6 error(s), 0 warnings
 
Source file e:\c#\hellogtk.cs:
using System;
using Gtk;
class Hello
{
static void Main ()
{
Application.Init ();
Window window = new Window ("Hello Mono World");
window.Show ();
Application.Run ();
}
}
 
I have even put the source file in mono\lib wth same error.
What is causing the error?
Thank you for your help
A. Hack
_______________________________________________
Gtk-sharp-list maillist  -  Gtk-sharp-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/gtk-sharp-list

Reply via email to