About
This blog is mostly about my work, but expect an occasional home project, productivity tip and tooling review.Search
Categories
- Conference (21)
- Development (217)
- Security (19)
- Test (32)
- Tooling (175)
- Uncategorized (169)
Category Archives: Development
ExcludeFromCodeCoverage and Linq
Visual Studio has an attribute called ExcludeFromCodeCoverage to exclude a method from code coverage. But when you use Linq the predicate is included. See sample screenshot below where the code is called with an empty list in the repository. Looking … Continue reading
Performance optimization with VS2012 profiler
Many systems are not optimized or sub-optimized by tweaking the wrong features. This post describes the use of the Visual Studio 2012 profiler to get insight in what to optimize and monitor the result of these optimizations. For this post … Continue reading
Posted in Development
Tagged .NET, .NET 4.0, deserialize, Performance, Profiler, stringreader, tweak, Visual Studio 2012, WCF
Leave a comment
Code generation
We developers have T4 in Visual Studio. I’ve been playing with this for a while now and use it more often to speed up repetitive tasks. The Business Intelligence team has BIML in Visual Studio. A colleague asked me to … Continue reading
Posted in Development
Tagged biml, Code generation, prototype composer, T4, tablediff
Leave a comment
Parallel Deflate issue in DotNetZip Library
For deployment packages we use DotNetZip Library to create zip files. One of the files recently became corrupted when put in the package. We investigated the changing of Compression Level and Compression Method. Which solved the issue but none were … Continue reading