3 articles Continues Development and Integration

How to send Email at every build with Jenkins

Install Email-ext plugin Install Email-ext plugin at plug-in install page of Jenkins Configure System “Jenkins Location” section Enter valid email address to “System Admin e-mail address” “Extended E-mail Notification” section Enter your email address to “Default Recipients” “E-mail Notification” section Enter your SMTP server name to “SMTP server” Click “Advanced” Click “Use SMTP Authentication” Enter…

Continuous Deployment with Jenkins & .NET

As a .NET developer you are probably using Visual Studio. Hitting F5 in Visual Studio compiles the source code and starts the debugger. If you are like me you will hit F5 many times during development and bug hunting. But what happens when the code is ready for prime time? Deployment happens! When I needed…

Unit Testing in ASP.NET MVC

Unit tests are definitely becoming a need-to-have skill for developers to confirm their code does what it should for production. If you aren’t building unit tests for your code, I would suggest looking into unit test libraries and frameworks along with a mocking framework to intercept external calls to other resources. I used to be…