Tuesday, April 19, 2011

NuGet - Add Library Package References

Visual Studio 2010 has powerfulul plug in ( NuGet ) which installs and integrate Open source tools into your application. Here are the steps

Step 1 : Install Web Plat form Installer.

    http://www.microsoft.com/web/downloads/platform.aspx

Step2 : Install NuGet Package Explorer


Step3: Read on How to ues "Add Library Package References"


Monday, April 18, 2011

Connect to MySQL using ADO.Net


1.       Install .Net Connector for MySQL

2.       Use this Connection String in config file

using EID.MySqlClient;

MySqlConnection oMySqlConn = new MySqlConnection();
oMySqlConn.ConnectionString = "Data Source=localhost;" +
                              "Database=mySQLDatabase;" +
                              "User ID=myUsername;" +
                              "Password=myPassword;" +
                              "Command Logging=false";
oMySqlConn.Open();

3.       Connect to Database via UI

Friday, April 8, 2011

How to access TFS from Windows Explorer

1.     Install Microsoft Visual Studio Team Explorer 2010 - ISO


2.     Install Team Foundation Power Tools


     3. Goto Command Prompt and Navigate to work space local path and then right click, you should see below options


Have fun with TFS