1
How do I add the "Mysql.Data" Reference? I am using Sharpdevelop and not Visual Studio!!
1
How do I add the "Mysql.Data" Reference? I am using Sharpdevelop and not Visual Studio!!
2
The following solutions have been tested in Sharpdevelop 5, but in the Visual Studio 2012/2013 is very similar:
Double-click References and then in Manage Packages:
In the window that opens, type the package name (in case Mysql.Data) in the text box and click the Magnifying Glass button to search:
Done! Your reference is created and the best: since it was done with Nuget, you can manage updates for it straight from the IDE by simply clicking on Updates of the window displayed in the second image.
Double-click References and then in Add Reference:
Click on the third tab, ". NET Assembly Browser" and then on "Browse" to open the Windows file selection box:
After selecting the DLL it will be possible to reference your code.
1
Copies the class library MySql.Data.dll
and send it to the folder Root of your project, example, if you have in Visual Studio, it will be
Documents/Visual Studio [version]/Projects/Seuapp/bin/debug/
and put the file there... try to do it there
UPDATING: I noticed you’re on Sharpdevelop, so find where your project’s executable is and put Assembly there.
Browser other questions tagged c# mysql
You are not signed in. Login or sign up in order to post.