When using the component a file named "mysql_error_log.txt" with the content "hi :)" is created in the application directory.
See MySqlBackup/MySqlBackup.cs -> Line 134
System.IO.File.WriteAllText("mysql_error_log.txt", "hi :)");
When uninstalling an application that includes the MySqlBackup.Net component, this file remains in the application directory. This will prevent the installer from removing the directory.
I assume it's a leftover from a debugging session, so is it possible to remove this line?
Thanks