Run a Precompiled .NET Core Azure Function in a Container
Thursday, December 28, 2017 in 2017
4 minute read
So this morning I found my self browsing through the images Microsoft has published in the Docker Hub and then I saw this one: microsoft/azure-functions-runtime and decided to Run a Precompiled .NET Core Azure Function in a Container. Prerequisites: …
Deploy your first Service to Azure Container Services (AKS)
Friday, December 01, 2017 in 2017
Categories:
3 minute read
In this post I’ll show you how to Deploy your first Service to Azure Container Services (AKS). Prerequisites: Azure CLI installed and basic knowledge experience. Docker installed and basic knowledge. Azure Subscription Kubernetes experience. …
Use PowerShell to create a Microsoft Teams Channel
Tuesday, November 14, 2017 in 2017
Categories:
less than a minute
For those of you who have been trying to automate anything related to Microsoft Teams, let me tell you that there is a new PowerShell Module in town: Microsoft Teams 0.9.0 which you can install with the following command: Install-Module …
Use PowerShell to enable Azure Storage Account Firewall Rules
Thursday, November 02, 2017 in 2017
less than a minute
In this post I’ll show you how to Use PowerShell to enable Azure Storage Account Firewall Rules. Be sure to be have AzureRM PowerShell 4.4.1 module installed. Login to your Azure Account Launch Powershell and start by Login to your Azure …
Use PowerShell to Enable and Automate Azure Analysis Services Backup
Monday, October 23, 2017 in 2017
3 minute read
In this post I’ll show you how to Use PowerShell to Enable and Automate Azure Analysis Backup. Enable Azure Analysis Service Backup Enable-AzureRmAnalysisServicesBackup is a small powershell script that uses the the Set-AzureRmResource cmdlet …
Prepare a .Net Core Console App for Docker
Sunday, October 15, 2017 in 2017
Categories:
2 minute read
Last week I had the luck to attend the Microsoft Azure OpenHack in Amsterdam. We spent two and a half days learning a lot about kubernetes, Azure Container Services, Azure Container Registry, Azure OMS and Minecraft! In one of the challenges we …
Use PowerShell to Enable Azure Analysis Services Firewall
Friday, October 06, 2017 in 2017
Categories:
2 minute read
Last week, firewall support was added to Azure Analysis Service (https://azure.microsoft.com/en-us/blog/azure-analysis-services-adds-firewall-support/). The thing is that, at the time of writing, there is no AzureRM cmdlet available to Use PowerShell …
.NET Core CLI and MSBUILD Cheat Sheet
Thursday, September 21, 2017 in 2017
Categories:
2 minute read
This is a small .NET Core CLI and MSBUILD Cheat Sheet with the list of commands and settings I use almost on daily basis when working with .NET Core, the command line and Visual Studio Code. Checks Check installed CLI version: dotnet --version Show …
Toggle Raspberry Pi GPIO Pins with ASP.NET Core 2.0
Friday, September 01, 2017 in 2017
Categories:
2 minute read
Today I’ll show you how to Toggle Raspberry Pi GPIO Pins with ASP.NET Core 2.0. First be aware of the following prerequisites: .NET Core 2.0 SDK A Raspberry Pi 3 Running Raspbian Install linux dependencies: sudo apt-get install curl libunwind8 …
.NET Core, Code Analysis and StyleCop
Thursday, August 24, 2017 in 2017
Categories:
3 minute read
So now that .NET Core and .NET Standard 2.0 have been released some of you may be migrating applications or even creating new ones with it. As you progress you are starting to worry about the quality of your code so what you want is to at least check …