Working With a Technical Partner
Regardless of which company you choose to be your software development partner, we want your project to be a success. In this, the first of two posts, we suggest some points to keep in mind when evaluating proposals. In Part 2, we will look at some factors to consider both ... Read more
Using Azure CDN to Specify Custom HTTP Headers for an Azure Static Website Hosted SPA
Using a Static Website in Azure Storage to host your single page application (SPA) can be a very cost effective option. We are increasingly using this option to host our Blazor Web Assembly applications to provide very low hosting costs to our clients. Lower cost often means fewer features, and ... Read more
Resolving an AuthorizationPermissionMismatch from the Azure File Copy v4 Task in Azure Pipelines
I was setting up a new Azure Pipeline today to deploy a Blazor Web Assembly application to a Static Website in Azure Storage. Despite authorising the service connection in Azure Pipelines to have access to the target storage account, I was encountering a AuthorizationPermissionMismatch error when the task executed. I ... Read more
Test & Feedback on Azure DevOps - Installation Firefox
This video is of part a series on how to use Microsoft's Test & Feedback browser extension. Learn how to install Test & Feedback in FireFox and connect it to your Azure DevOps instance. ... Read more
Setting up Bash Completion for Azure CLI on a Mac with zsh
I’ve been increasingly using the Azure CLI for most of my day to day tasks in Azure. Whilst the portal is good for working things out, I find it painfully slow when I know what I want to do. The Azure CLI lets me get things done faster, but it ... Read more
ARM Templates - Deploy to multiple Resource Groups with Nested Templates
Azure Resource Manager (ARM) templates are JSON files that allow you to define the infrastructure and configuration of your project. This means that your Azure resources can be deployed repeatedly and reliably, with the templates living with your code under version control. I recently needed to create a template that ... Read more