Re: [Mono-list] Mono Packages split.

2004-08-05 Thread Trent Mifsud
Hi all,
Being able to download mono and just install it and have it work is a 
huge plus. The jdk installer which is a bin file is good at that. 
Downloading seperate packages might turn some people off.

cheers
trent
Paulo Aboim Pinto wrote:
Miguel de Icaza wrote:
Hello,
  We are having a debate about the current packaging strategy: so far
we have split everything into small chunks that have correct dependency
information.
  Although this is useful for folks that want to get very granular
setups, the problem is that people have to download 20+ packages to get
a complete Mono install.
  An intermediary hack was to create a mono-all.zip file that contains
everything and have people download that.
  My feeling is that we should go back to the simpler two way split:
mono and mono-devel packages.
  What do people think?
Miguel.
 

Hello
Why don't we have a BIN file that installs all the necessary RPM or 
source-code for Mono??
Executing this BIN file would install all the package necessary to run 
Mono in Tipical Mode, Full Mode or Costume Mode (chossing all the 
optional packages).
With this kind of installation we can choose if we want to install the 
Devel Packages or the Common Packages or all packages.

This feature is allready implemented in many applications in Linux 
like  Zend IDE.

The mono-all.zip is the most aproximate that we have from this king of 
installation because it installs all Mono Packages (Full Mode).

(())
Paulo Aboim Pinto
Odivelas - Portugal
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] Expression denotes a `type' ,where a `variable, value, method group' error

2004-08-02 Thread Trent Mifsud
Hi there,
I am having some problems compiling my code using Mono v1 under Linux. I 
have checked the archived lists to make sure my error has not been 
reported and thus far I have not found the solution.

The error message I am receiving is as follows
[Task:File=/home/trent/MonoDevelopProjects/LanRevealCmdLine/Main.cs, 
Line=10, Column=-1, Type=Error, Description=Expression denotes a `type' 
where a `variable, value, method group' was expected(CS0119)

Basically I am trying to wire up to an event that exists in another 
Assembly. The references are correct and if I remove the line it will 
compile, so I am not sure why I am getting this problem. I checked it 
under MS's .net (gasp!) and it does work.

many thanks for any help - go mono!
trent
using System;
using LANReveal;
class MainClass
{
  public static void Main(string[] args)
  {
  LANReveal.Worker w = new LANReveal.Worker();
  MainClass m = new MainClass();
  w.completed += LANReveal.WorkCompleted(m.writeToCMDLine);   
//this is line 10 - err line
  w.DoWork(); // starts searching
  }
private void writeToCMDLine(object [] items)
  {
  Console.WriteLine(IP :  + items[0].ToString() +  NetName :  + 
items[1].ToString());
  }
  public MainClass()
  {
}
}

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list