Hi,
Since the last update of oxide of this Thursday the plugin mysql that I use no longer works:
[Error] Error while compiling stats.cs (18,23): error CS0246: The type or namespace name `Ext 'could not be found. Are you missing an assembly reference?
I went to see this post MySQL Extension | Oxide
To see if there has been a change in the reference assembly
// Reference: Oxide.Ext.MySql
Using System;
Using System.Text;
Using System.Net;
Using Oxide.Core;
Using Oxide.Core.Database;
Using Oxide.Ext.MySql;
Using System.Collections.Generic;
Using UnityEngine;
Using System.Linq;
Namespace Oxide.Plugins {....
Someone sees the error?
Thank you!
Solved MySQL extension error while compiling after update
Discussion in 'Rust Development' started by natraps117, Nov 11, 2016.
-
Wulf Community Admin
-
Hello and thank you for your quick reply Wulf!
The change was made but the problem persists.
// Reference: Oxide.Core.SQLite
Using System;
Using System.Text;
Using System.Net;
Using Oxide.Core;
Using Oxide.Core.Database;
Using Oxide.Ext.MySql;
Using System.Collections.Generic;
Using UnityEngine;
Using System.Linq;
Namespace Oxide.Plugins {...
Oxide.Ext changed to Oxide.Core, should I change "using Oxide.Ext.MySql"?Last edited by a moderator: Nov 11, 2016 -
Wulf Community Admin
If your plugin needs that, yes. -
The plugin needs it yes.
So I changed that but I still have a mistake:
The type or namespace name `Ext 'could not be found. Are you missing an assembly reference?
The Oxide.Ext.Mysql is Oxide.Core.Mysql?
What is the assembly reference that I did not specify in the plugin?
Thx! -
Wulf Community Admin
Oxide.Core.MySql -
This is ok, problem solved.
A big thank you to you wulf
