← all years

Posts from 2020

17 postsRSS ↗
Nov 20, 2020·5 min read

MSB4019: Microsoft.Data.Tools.Schema.SqlTasks.targets was not found

.

Automated Buildsdotnet coreMSBuild+1 more
Oct 21, 2020·1 min read

Rethink your application boundary and use Cloudflare

In this video I'm going to talk to you about... Rethinking your application boundary and using Cloudflare

AzureCloudflareGitHub Actions+3 more
Sep 29, 2020·1 min read

Migrating pipelines and releases in Azure DevOps

In this video I'm going to show you... Migrating pipelines and releases in Azure DevOps

Azure DevOpsAzure DevOps MigrationsYouTube Videos
Sep 27, 2020·1 min read

Migrating Test artifacts and all other work item types using the Azure DevOps

In this video I'm going to show you... Migrating Test artifacts (and all other work item types) using the Azure DevOps Migration Tools

Azure DevOpsAzure DevOps MigrationsYouTube Videos
Sep 24, 2020·1 min read

How to migrate SVN and TFVC repositories to git repositories in Azure DevOps

In this video I'm going to show you... How to migrate SVN and TFVC repositories to git repositories in Azure DevOps

Azure DevOpsAzure DevOps MigrationsYouTube Videos
Sep 23, 2020·1 min read

How to migrate git repositories to Azure DevOps

In this video I'm going to show you... How to migrate git repositories to Azure DevOps

Azure DevOpsAzure DevOps MigrationsYouTube Videos
Sep 23, 2020·1 min read

How to move Work Items between projects in Azure DevOps

In this video I'm going to show you... How to move Work Items between projects in Azure DevOps

Azure DevOpsAzure DevOps MigrationsYouTube Videos
Sep 22, 2020·1 min read

How to delete a team project in Azure DevOps

In this video I'm going to show you... How to delete a team project in Azure DevOps

Azure DevOpsYouTube VideosAzure DevOps Basics
Sep 22, 2020·1 min read

How to recovery a deleted team project in Azure DevOps

In this video I'm going to show you... How to delete a team project in Azure DevOps

Azure DevOpsYouTube VideosAzure DevOps Basics
Sep 21, 2020·1 min read

How to create a team project in Azure DevOps

In this video I'm going to show you... How to create a team project in Azure DevOps

Azure DevOpsYouTube VideosAzure DevOps Basics
Aug 12, 2020·1 min read

How to use the same editor as Visual Studio Code in your sites

Wondering how you can use the same editor as Visual Studio Code in your sites? In this video I'll show you how you can 😀. 0:00 - Introduction 0:25 - Setup basic HTML file 1:55 - Add monaco editor html tags 3:23 - Use monaco colorizeElement functionality 5:17 - Create a monaco editor 9:46 - Monaco editor "Cannot read property 'AddEventListener' of null 10:38 - Use npm to install monaco editor dependencies 12:19 - Exploring the monaco editor playground 13:52 - Thank you for watching

Monaco EditorNPMYouTube Videos+1 more
Jul 30, 2020·2 min read

[ code snippet ] JsonPropertyConverter.cs

JsonConverter that works with System.Text.Json allows having a string property that will just store the json element string instead of trying to parse the properties into a complex object

JSONcode snippet
Mar 27, 2020·7 min read

How to lower the real cost of a SQL Server Virtual Machine in Azure

Whenever you take out an Azure VM you generally get a single disk which is not that big, when you select a SQL Server based VM (even web edition) you automatically get a 1TB disk, if you are using managed disks you pay for that whole TB even if you are only using 1GB of it. This post will show you how you can lower the price of that virtual machine if you are in this situation

AzureTips
Mar 26, 2020·5 min read

Raising awareness and reliable information sources for #COVID19 by adding a banner to your websites

Recently talking to people it's obvious that a lot of people are either not following what is going on globally and in lots of cases have information that seems to have been obtained from unreliable sources MyBroadband released a post titled "New rules for all co.za websites and ISPs during coronavirus outbreak" which mentioned that ISPs needed a visible link to one of the South African information sites for corona virus so thought it would be a useful thing for more people to add banners in general to their sites linking to a trusted source for corona virus information

Raising AwarenessCOVID19
Mar 24, 2020·5 min read

Create pfx certificate file for Azure Web Apps from Cloudflare origin cert using openssl

Every time I create a new project using Azure Web Apps or even IIS and I need to add a pfx file for end to end https, Cloudflare gives you a private key and certificate but you can't use those directly with Azure Web Apps and I keep forgetting how to do this exactly so as I do sometimes I'm going to post the steps so that it's helpful to others as well as future me.

SecurityAzureLinux+2 more
Mar 23, 2020·5 min read

Publish aspnet core sites to Azure easily using GitHub actions

Have a site sitting in GitHub that you currently maybe manually deploy to Azure or use some other tool? Why not useGitHub Actionsto quickly and easily publish to Azure. I was pushing a small site (Guid.Empty) to Azure through GitHub and decided to document the couple steps for future me 😋... oh and for you of course 😅

AzureGitHub ActionsGitHub+1 more
Mar 18, 2020·8 min read

The importance of regression testing and real world security consequences

Organizations often put a lot of effort around testing their products, they'll put tons of effort in unit testing, integration testing across their UI and API layers but sometimes have a strategy of covering everything. This doesn't always add value to their pipelines because the metric that is being chased is not value which agreeably is a hard thing to measure but rather it's a coverage metric. To start with I don't know if testing strategy is what was happening for TicTocTrack but is something that is definitely highlighted as something that would have been valuable for them. A security vulnerability discovered around a year ago from a fellow MVP and security expert Troy Hunt was patched and then earlier this year I re-discovered it

SecurityTesting