About
This blog is mostly about my work, but expect an occasional home project, productivity tip and tooling review.Search
Categories
- Conference (20)
- Development (208)
- Security (17)
- Test (32)
- Tooling (166)
- Uncategorized (168)
Most used tags
Tag Archives: .NET
Microsoft TechDays 2017
After a year of absence I’ve been to TechDays 2017. The keynote was amusing and the schedule of sessions looked promising. Happy developers all around. Below a list of take-away bullets from the sessions I attended. Azure Azure Service Fabric … Continue reading
Posted in Conference
Tagged .NET, ARM, azure, container, DEVOPS, microservices, Performance, service fabric, Techdays, visual studio
Leave a comment
Microsoft TechDays 2015
With all the new stuff Microsoft has presented at Build, pushed to Azure and is going to release, I just had to go to TechDays. After an amazing keynote about zombies in the AppStore, the future of monetization (micro payments) … Continue reading
Posted in Conference
Tagged .NET, angularjs, asp.net, DEVOPS, event-sourcing, framework, fsharp, intellitrace, IoT, microservices, nservicebus, NuGet, Performance, powershell, service fabric, Techdays, WCF, Xamarin
3 Comments
Crashing unit tests in Visual Studio
Today I got my unit tests to crash in Visual Studio. Right after some refactoring the tests stopped working and the output window contained the following message: The active Test Run was aborted because the execution process exited unexpectedly. To … Continue reading
Call custom .NET code from powershell
Consider the following code in HelloWorld.API.dll. Make the API available with the Add-Type cmdlet. This makes all the types in a .NET assembly available in the current session. Now the static method can be called by using the :: (two … Continue reading
Setup logging in configuration with powershell
Manipulation of config files with notepad is a burden for every developer / operator. It is the source of many errors. With DEVOPS we try to automate this process. The result is less prone to errors. See the powershell script … Continue reading
Posted in Tooling
Tagged .NET, configuration, DEVOPS, logging, powershell, web.config
Leave a comment