Posts Tagged ‘VisualStudio’

Using Aspects in C# With POSTSharp

Posted on September 5th, 2009 by macskeptic

A little bit about aspect oriented programming (AOP)
For the last few couple of years, as the hardware kept getting cheaper and more powerful, the programming languages core concern has been moved from performance to clarity and maintainability.
While in the past you had to keep asking yourself which algorithm was the best to, say, iterate over [...]

setting app.config for different environments

Posted on May 28th, 2009 by Koiti Takahashi

Imagine the following scenario: You have a project that you just developed in your local machine and want to deploy it into the CI (Continuous Integration) and approval environments. In this project, there is a configuration file (app.config) that contains a few settings, for instance, connection strings and log file directory.
Quite common isn’t it? So, [...]