Hello i'm getting this error with latest oxide:
Whats wrong with this code now? It was working fine before. How now correct to do such thing?Code:error CS0246: The type or namespace name `Ext' could not be found. Are you missing an assembly reference?
[DOUBLEPOST=1433496471][/DOUBLEPOST]It seems like i "fixed" it by "using Oxide.Ext.MySql.Libraries;", this wasn't needed before...Code:private Ext.MySql.Libraries.MySql mysql = Interface.Oxide.GetLibrary<Ext.MySql.Libraries.MySql>("MySql");
Solved Whats wrong with Ext reference now?
Discussion in 'Rust Development' started by AlexALX_[rus-ua], Jun 5, 2015.
-
Oxide. Ext. Rust was changed to oxide. Game. Rust that is a what happened. You just needed to add the correct namespace or like you did by using a fully qualified name.
-
Ah, this makes sense, because rust is not ext anymore plugins don't have Ext namespace by default, so must using Oxide.Ext.MySql.Libraries or so.