Sometimes we need to provide the public key token in the config file, like this. Dotnetthoughts.Utilities, Version=1.2.0.1, Culture=neutral, PublicKeyToken=a78a5c561934e012 You can find the public key token using Strong Name tool(sn.exe). Open your Visual Studio 2010 command prompt, use the following command. (sn.exe will be also available in C:\Program Files\Microsoft SDKs\Windows\[Version]\bin location) This will print the [...]
Monthly Archives:: April 2012
DevCon 2012 – 19th May 2012 – Trivandrum
The Kerala Microsoft Users Group (K-MUG) will be organizing a Developers Conference, DevCon 2012 on 19th May 2012 at ParkCenter,Technopark in Trivandrum. K-MUG is one of the best developer community in India, which got Best User Group award in India as part of Microsoft Community Impact award 2010. DevCon 2012 will help you to engage [...]
Cannot publish because a project failed to build
Yesterday while working on one ClickOnce project deployment, I got an interesting error like this. It was working long back, but suddenly it stopped working. Then I found the problem, it was because of .Net Framework 4.5 developer preview installation. I un installed it. You may also need to repair the Visual Studio installation, otherwise [...]
How to delete all Indexes of SQLite database
Here is the code snippet which will delete all the Indexes in SQLite Database. You can also use Drop Index command for deleting Indexes. The snippet can be used to delete Tables also, instead of Index use Table.