SEARCH:   GO
{Blog entries}
By Javier Callico on 8/30/2010
This weekend I got the following error message when trying to build a VS 2010 solution that I was able to build without any problems 2 days before: Error 128 "ResGen.exe" exited with code -532459699.

It was obvious to me that the problem was related to the resource files.

After checking the properties for some of the resource files on my solution I noticed that some of them didn't have a the "Custom Tool" property set.

Custom Tool not set

Setting the value of "Custom Tool" to "GlobalResourceProxyGenerator" allowed me to build my solution again.

Custom Tool value set to GlobalResourceProxyGenerator

If you Google this error, the first link is a Microsoft Connect...
By Javier Callico on 8/6/2010
I’ve been working on making callicode.com more friendly to search engines. One of the first things to do when trying to improve you site’s ranking is to make sure that your content is only available from a unique URL otherwise it can be considered duplicate content and your site penalized (more details here and here). Since most websites are configured to work with and without the www prefix you have to decide which one is going to be your site’s main domain and redirect all other requests accordingly preferable using a 301 redirection.

I decided that callicode.com was going to be the main domain and started looking for ways to get it done with minimal effort.

First I tried to find a possible built in functionality on DotNetNuke,...