0

I've recently developed a c# application that uses a mysql connector. I've run into some issues with other computers not having the Mysql.Data library. So my question, what is the best way to deploy a c# application that uses these Mysql.Data libraries? Install the mysql connector on every computer? Is there some way I can make c# package these together?

2 Answers 2

2

The connector can be distributed as a private DLL. Just change its property to "Copy to Output" and distribute it along with the rest of your installation files.

Sign up to request clarification or add additional context in comments.

Comments

0

You should be able to copy MySql.Data.dll along with your EXE file.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.