Sponsor: Using RabbitMQ or Azure Service Bus in your .NET systems? Well, you could just use their SDKs and roll your own serialization, routing, outbox, retries, and telemetry. I mean, seriously, how hard could it be?

Frameworks
Some frameworks are going to be the foundation to parts of your application. ASP.NET MVC for example, could be the base framework for your UI. However, it should not be the foundation of your application. You should view it as the HTTP interface to your application. Robert “Uncle Bob” Martin has a talk Architecture: The Lost Years which addresses this point. Developers have been using MVC frameworks as top level architecture which represent the entire application rather than the delivery mechanism.Dependencies
In recent years and the rise of pushing more to the client side, the front-end development space is full of SomeLibrary.js. Take Durandal as an example for developing SPA applications. It is built on top of jQuery, Knockout, RequireJS. In order to developer a SPA app with Durandal, you are at a minimum taking on 4 dependencies. Odds are very good you will be adding more dependencies such as Bootstrap, Breeze, Moment, etc. I’m a fan of Durandal and Rob Eisenberg, which is why I’m really excited to see Aurelia. You may be saying to yourself: “Who cares! These are all popular and mature open source libraries!”. Yes they are, but that doesn’t mean they are bug-free and simple. They may also move at a pace that is quicker than your own release cycle which can lead to you constantly trying to stay current. Any external dependency you rely on is now your code and your problem. How do you explain to a customer or boss of a when you discover a bug that is causing an issue your application? Do you think they care that you didn’t write it? It’s your problem.What Smells?
