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
Code standards review with RegEx
On our project we use Macroview to visualise and edit data. The script that drives the proces is subject to our definition of done code standards. A review of the script is a time consuming activity that is leading to … Continue reading
Limit vs2015 IntelliTrace
Debugging my solution was a pain. Running from visual studio debug the application was slow, visual studio output window was cluttered and I was getting frustrated. When the application was deployed it performed fast and snappy. ❓ Looking in the options … Continue reading
Case sensitive dacpac for coding standards
In our project we have coding standards for SQL objects. But when a code review made us update casing we noticed the dacpac did not contain the changes after a schema compare. What happend? Seems that our sql server databases … Continue reading
Entity Framework Fake ObjectContext Realization Tool
With Effort (Entity Framework Fake ObjectContext Realization Tool) I can create integration tests for the datalayer in my project. The tool has an Entity Framework provider that works on an in-memory database. This means I can call SaveChanges without mocking it or having a dependency on a … Continue reading
Allow only release build to be published
We have a WPF application that we distribute with click-once deployment. The update feature is exactly what we need for our product. Getting the new build from Development into Production is easy, just publish. The problem is that we only … Continue reading