Summary or problem description
The namespace in the neo plugin is very confusing and conflicts with the class name, so we need to sort out the namespace.
For Instance,
it is Neo.Plugins; for some plugin,
ApplicationLogs.Store; for some plugin,
Neo.Consensus for some plugin.
The issue that makes me have to make this change is the namespace of RpcServer is Neo.Plugins;, while it has a class of RpcServer, which is exactly the name of the plugin. If i want to add UT test for it, it conflics with the UT namespace as Neo.Plugins.RpcServer.Tests;, the namespace of the UT makes it impossible to get access to the RpcServer class.
Do you have any solution you want to propose?
Now all change to Neo.Plugins.XXXX;
Where in the software does this update applies to?
Summary or problem description
The namespace in the neo plugin is very confusing and conflicts with the class name, so we need to sort out the namespace.
For Instance,
it is Neo.Plugins; for some plugin,
ApplicationLogs.Store; for some plugin,
Neo.Consensus for some plugin.
The issue that makes me have to make this change is the namespace of RpcServer is
Neo.Plugins;, while it has a class ofRpcServer, which is exactly the name of the plugin. If i want to add UT test for it, it conflics with the UT namespace asNeo.Plugins.RpcServer.Tests;, the namespace of the UT makes it impossible to get access to the RpcServer class.Do you have any solution you want to propose?
Now all change to Neo.Plugins.XXXX;
Where in the software does this update applies to?