In short, what are the steps that one needs to take in order to modify the source of the connector and install it in Windows?
I have the MySQL Connector/.NET Version 6.1.2 installed on my machine, but I'm getting an exception for every DateTime with a value of '0000-00-00'. This exception breaks my application.
As I solution, I downloaded the source code for the connector and changed the exception so that instead of throwing an exception, it returns the date '0001-01-01 00:00:00'. Although I was able to modify the code and even compile the DLL (NOTE: I commented out the Assembly reference to ConnectorNet), I can't figure out how to install the dll onto my computer. Apparently I'm not able to simply replace the DLL in the Global Assembly Cache because my custom DLL is not strongly typed.
In sum, what are the steps that one needs to take in order to modify the source of the connector and install it in Windows?
Thanks.