I'm trying to run a hosted script in Mono, and I keep getting an exception about types being defined multiple times:
{interactive}(7,45): error CS0433: The imported type `System.Console' is defined multiple times
{interactive}(7,91): error CS0433: The imported type `System.DateTime' is defined multiple times
Internal(1,1): warning CS1685: The predefined type `System.Object' is defined multiple times. Using definition from `mscorlib.dll'
Internal(1,1): warning CS1685: The predefined type `System.ValueType' is defined multiple times. Using definition from `mscorlib.dll'
Internal(1,1): warning CS1685: The predefined type `System.Attribute' is defined multiple times. Using definition from `mscorlib.dll'
Internal(1,1): warning CS1685: The predefined type `System.Int32' is defined multiple times. Using definition from `mscorlib.dll'
Internal(1,1): warning CS1685: The predefined type `System.UInt32' is defined multiple times. Using definition from `mscorlib.dll'
Internal(1,1): warning CS1685: The predefined type `System.Int64' is defined multiple times. Using definition from `mscorlib.dll'
Any hints where to look? Thanks in advance.