July 2007 - Posts

Changing the drop target in a TFS team build

I was working on a TFS implementation for a client, and one of the requirements was that they wanted a team build to drop the binaries in a specific location. By default, whenever you invoke a tfs team build, it creates a folder with the structure "TeamBuildName_Date.IncrementedNumber" Read More

Hiding a custom webcontrol's property from the Properties window

A quick note, if you have property in a custom webcontrol that you don't want to show up in the Properties window, decorate it with the Browsable() attribute. Ex. [Browsable(false)]public string Name         {             get             {   Read More

I'm digging SubSonic

Generating data access layer is something that I always try to do to avoid writing repititive code. I've tried a lot of code generation tools, some were complicated, others I just didn't like the way they worked, I even tried to write my own code generation Read More