Analyze code with NDepend Recently I got my hands on NDepend, a static code analysis tool for .Net framework. Because it can work as a plugin for Visual Studio, it offers great integration with code and rapid results. So what it can do? Let’s see!
Strona głównaUżytkownik
michal-bialecki | użytkownik
Imagine you are a Junior .Net Developer and you just started your development career. You got your first job and you are given a task – write unit tests! Nothing to worry about, since you got me. I’ll show you how things are done and what are the best practices to follow.
Sztuka programowania 2145 dni, 4 godziny, 9 minut temu 76 źrodło rozwiń
Grypa skłania do blogowania ;) O tym jak wyglądają domyślne komunikaty błędów z NSubstitute i jak by je tu poprawić...
Service Fabric Reliable Actors – is it faster then a regular micro-service approach? Recently I’m diving into Microsoft actor model implementation – Service Fabric Reliable Actors. Apart from Microsoft Orleans, is another one worth looking into.
Architektura 2162 dni, 3 godziny, 44 minuty temu 90 źrodło rozwiń
Microsoft Orleans is a developer-friendly framework for building distributed, high-scale computing applications. So.. how fast is it?
Architektura 2173 dni, 3 godziny, 41 minut temu 174 źrodło rozwiń
Managing ServiceBus queues, topics and subscriptions in .Net Core From version 3.1 of Microsoft.Azure.ServiceBus it is finally possible to manage queues, topics and subscriptions in .Net Core. Let’s have a look at how we can use it in real life scenarios.
Architektura 2220 dni, 4 godziny, 57 minut temu 98 źrodło rozwiń
Generic export of csv files Once in a while, you get a task, that you need to generate an export file to the 3rd party system. It is popular when communicating with price comparer services, search services, adds services etc. So you need to generate csv file with almost the same data, but in a slightly different format. How to solve it, when you don’t want to write everything separately? How to write you code so that you can make changes very easy?Let’s start with a simple csv file export CSV acronym s...