Skip to content
/ Michaël Hompus

Azure App Services make it quite easy for you to add one or more authentication providers to your application. But how do you add Azure AD as a provider using Infrastructure as Code? In this article I will show you the steps of deploying and securing an Azure App Service with AAD authentication using an Azure pipeline.

Azure App Services make it quite easy for you to add one or more authentication providers to your application. But how do you add Azure AD as a provider using Infrastructure as Code?

In this article I will show you the steps of deploying and securing an Azure App Service with AAD authentication using an Azure pipeline.

read more…
Filed under Azure
Last update:
/ Michaël Hompus

A lot of people prefer to manage their infrastructure as code. Some infrastructures might require an App Registration in an Azure AD. So, why would we not apply the IaC practice here as well? An Azure pipeline might stop you, stating “Insufficient privileges to complete the operation”. So, this is not possible, or is it? In this article I will show you how to make an Azure pipeline in charge of apps in your Azure AD.

A lot of people prefer, for good reasons, to manage their infrastructure as code (IaC). Some infrastructures might require an App Registration in an Azure AD. So, why would we not apply the IaC practice here as well?

An Azure pipeline might stop you, stating Insufficient privileges to complete the operation. So, this is not possible, or is it?

In this article I will show you how to make an Azure pipeline in charge of apps in your Azure AD.

read more…
Filed under Azure
Last update:
/ Michaël Hompus

I had the honor to be a guest at the dotnetFlix channel, hosted by Sander Molenkamp and Edwin van Wijk. I share more on the techniques, frameworks and libraries I have used and I finish with a demonstration of the finished application. As there was so much to share, it did not fit in a single episode, so we recorded three parts!

In my previous post, I shared that I would be speaking about getting Xbox achievements using Machine Learning at the .NET Virtual Conference and the dotNed user group.

In the meantime, I had the honor to be a guest at the dotnetFlix channel, hosted by Sander Molenkamp and Edwin van Wijk.

I share more on the techniques, frameworks and libraries I have used like EmguCV, EPPlus and ML.NET. I end with a short demonstration of the running application.

As there was so much to share, it did not fit in a single episode. So, we recorded three!

read more…
/ Michaël Hompus

A couple of my recent articles were about machine learning and image classification in C#. These posts were the results of a pet project on which I was working. I will be speaking about this project at a couple of events in the coming weeks.

A couple of my recent articles were about machine learning and image classification in C#. These posts were the results of a pet project on which I was working. I will be speaking about this project at a couple of events in the coming weeks.

read more…
/ Michaël Hompus

Recently I wrote an article about getting all prediction scores from your ML.NET model. So, when we want to do this for an ONNX model we have loaded with ML.NET, that should work the same, right? Not really. Depending on the version of ML.NET, the data types of the downloaded Azure Custom Vision ONNX model are very hard to map on the .NET data types we use. In this article I will show how we can get the labels and scores from an ONNX model prediction in C#.

Recently I wrote an article about getting all prediction scores from your ML.NET model. So, when we want to do this for an ONNX model we have loaded with ML.NET, that should work the same, right?

Not really. Depending on the version of ML.NET, the data types of the downloaded Azure Custom Vision ONNX model are very hard to map on the .NET data types we use.

In this article I will show how we can get the labels and scores from an ONNX model prediction in C#.

read more…