Change Intellisense shortcuts in Visual Studio

by Sigve Fast

The most frustration thing a developer can experience is keyboard shortcuts changing. This happened to me recently when the Ctrl+space shortcut started auto inserting a member instead of showing the List Members box. Here is how I fixed it. 1. Open Visual Studio and go to the Tools ->…

Tracking upload or download progress in Blazor WASM with Refit

by Sigve Fast

Learn how to add file upload/download progress tracking to your Blazor component with a Refit-powered REST API client.…

Azure DevOps: Migrating to windows-latest

by Sigve Fast

The windows-2016 environment will be deprecated on November 15, 2021, and removed on March 15, 2022. Migrate to windows-latest instead.This is a scheduled windows-2016 brownout. The windows-2016 environment is deprecated and will be removed on March 15, 2022. For more details, see https://github.com/actions/virtual-environments/issues/4312Microsoft…

So you want to debug third-party dll's at runtime, do you?

by Sigve Fast

Some of the more difficult exceptions to debug are those thrown deep inside-third party frameworks. Everybody knows you can decompile a dll and look at the source code, but that can only take you so far. Wouldn't it be great if you could set a breakpoint in that decompiled code…