Continuous Integration environment Installation

I hope you know what Continuous Integration means. I would recomment that you please go understand it before reading further. Here is an good wiki about what the community thinks about it. Installation steps for NAnt: Download the binary distribution archive. Click here. Remove any previous versions of NAnt you may have installed. Extract the contents… Continue reading Continuous Integration environment Installation

Published
Categorized as Technical

StyleCop : Global Rule Suppression

We want to suppress rules of style cop for all the projects in the developer machine. As you can get few information from the documentation both on global rule setting and rule suppression. Below mentioned are 2 ways to merge them both: Editing the Settings.StyleCop in notepad Go to the installation location of StyleCop (possible location:… Continue reading StyleCop : Global Rule Suppression

Published
Categorized as Technical

Step by Step implement StyleCop custom rules with Visual Studio – Part 2

This is Part 2 of 2 Part series on implementing custom StyleCop rules. Please read Part 1 here, if you haven’t already read. Now download the code of creating the custom rules from here. Make sure you perform following steps to build it, in case you are unable to build: Installation location of StyleCop will… Continue reading Step by Step implement StyleCop custom rules with Visual Studio – Part 2

Published
Categorized as Technical

Step by Step implement StyleCop custom rules with Visual Studio – Part 1

Instead of starting with an introduction of StyleCop, I would like you to read “Why should we use StyleCop?“. There is enough help on how to integrate StyleCop with Visual Studio, one can be found here. This article is focused on step by step implementation to add custom rules that we used in our project. Install… Continue reading Step by Step implement StyleCop custom rules with Visual Studio – Part 1

Published
Categorized as Technical

Know your version of Web Application

Once the web application is published to production, after a while it becomes difficult to know exactly which version is in production. One of the way to find it without any ambiguity is to flash the version number on the footer tag next to copyright text. Code in aspx page Code in Codebehind page

Published
Categorized as Technical