RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

I am getting these errors

john burns

Sorceror
CS0234: Line 3: The type or namespace name `Drawing' does not exist in the namespace `System'. Are you missing an assembly reference?
CS0234: Line 4: The type or namespace name `Drawing' does not exist in the namespace `System'. Are you missing an assembly reference?
CS0234: Line 5: The type or namespace name `Drawing' does not exist in the namespace `System'. Are you missing an assembly reference?
CS0246: Line 24: The type or namespace name `Color' could not be found. Are you missing a using directive or an assembly reference?
CS0246: Line 25: The type or namespace name `Color' could not be found. Are you missing a using directive or an assembly reference?
CS0246: Line 46: The type or namespace name `Color' could not be found. Are you missing a using directive or an assembly reference?
CS0246: Line 94: The type or namespace name `Bitmap' could not be found. Are you missing a using directive or an assembly reference?

There is more, but they are all like these. What do I need to do?
 
Debian example: You may need additional references depending on what emulator you're using....

Code:
gmcs -out:../runuo.exe -d:MONO /reference:System.Drawing.dll,Ultima.dll -optimize+ -unsafe -recurse:*.cs
 
Top