Well, here we go. Not only have I had the opportunity to work with open source and Linux, now I get some taste of containers. I find the concept very interesting because containers solve many issues when in the context of cloud hosting and running code on a multitenant platform. This is how I added […]
Read More →Category: Open Source
.NET Core 2.0 modular and NuGet packages
One of the cool features of the .NET Core is that the namespaces you reference in the project are the only ones that are contained in the DLL your project renders. I was reading that when you initially create a project in Visual Studio, that numerous packages are included by default and was wondering, because […]
Read More →How to set Azure BASH to a specific Azure subscription
At the top right of the Azure Management portal here, you will see the Cloud Shell item, Figure 1, click it. Figure 1, Open BASH Cloud Shell in Azure Management Portal Enter the following command to list out all the subscriptions which are linked to the ID used to access the portal. az account list […]
Read More →Installing Procdump for Linux
Since I support Azure App Services and there is a influx of customers who want to use the Azure App on Linux stack, I felt it prudent to get my feet wet with Ubuntu. Learning some #Bash too while I’m at it. #Linux The instructions on how to do this already exist here, so I […]
Read More →Using CLI 2.0 with Azure
I wrote these articles about the Azure CLI but that was at version 0.10.8 and things have progressed since then. #Azure #AzureGermanCloud #GermanCloud #CLI Using Azure Xplat-CLI with Azure App Services in the German Cloud Azure CLI ‘config’ is not an azure command CLI articles by Benjamin Here is some good CLI 2.0 information. It […]
Read More →How to install NuGet Package in Visual Studio Code Linux Ubuntu
I wrote this article about running Visual Studio Code on Linux here and wanted to now create a more complicated console app. To do this I wanted to install the Newtonsoft.Json NuGet Package. To open the console where the commands are added select View –> Integrated Terminal from the menu bar. I started with creating […]
Read More →Create a .NET Core 2 application on Linux with Visual Studio Code
The plan is to work some with Linux and I have chosen Ubuntu 16.04 LTS because this, AFAIK, is the flavor which Azure App Service Linux containers runs, see more about that here. I built my Ubuntu work station, by downloading the ISO from the Ubuntu site here and burning it to a DVD. Yes, […]
Read More →How to deploy from GitHub using someone elses repository
I needed to deploy Drupal 8 CMS to an Azure App Service running within an Azure App Service Environment (ASE) and becuase my Azure Subscription does not allow for Marketplace installations I needed to get the code from another place, ex: GitHub. Although I mention that I deployed this to an ASE environment, the setup […]
Read More →NHibernate GenericADOException could not execute query
This is a pretty common error which can be caused by a large number of reasons. I received the below error: GenericADOExcpetion could not execute query [ select ] [SQL: select ] While I was implemented the TrueFalse NHibernate data type. What I did was in my class file (class.cs) I rightly created the property […]
Read More →Nhibernate GenericADOException could not execute query
During the mapping process or after a data model change you may receive this error. The error message being: {“could not execute query\r\n[ select from TABLE ]”} with an inner exception of {“Ungültiger Spaltenname ‘SPALTEN NAME’.”} {“Invalid column name ‘COLUMN NAME’.”} I received this error when I was creating a many-to-one relationship between 2 classes, […]
Read More →