Posts

Showing posts from April, 2016

Credential parameter can only be used with Organization ID credentials - Azure Deployment or Continuous Deployment Error

Image
I faced this error while Azure Web App Deployment starts in after Continuous Integration. Here's the detailed information you see in the error: -Credential parameter can only be used with Organization ID credentials. For more information, please refer to http://go.microsoft.com/fwlink/?linkid=331007&clcid=0x409 for more information about the difference between an organizational account and a Microsoft account. There was an error with the Azure credentials used for deployment.  Error Screenshot: If you face this issue, here's quick way: Step 1 Edit existing build definition and select "Azure Web App Deployment" and then click on "Manage". Now you will be redirect on new tab. Step 2 On new tab click on "Update service configuration" and this will open a dialog box where you need to select "Certificate Based" option and then fill up the details. You can click on "Publish settings file" to download, th

Azure media services transcoding JobState.Error handling

Image
In case you are facing error in scheduled transcoding task like the one which I can see on my dashboard (image give below): You can use below code snippet to get more details about the error: Here is the output after using above code snippet: More details here: https://gist.github.com/itorian/4ac5fa723b3d5267258450a2c1a00294 Hope this helps.

Comparing two List to find match in both list, 1st list only, 2nd list only that is Insersect, Minus and Minus Except

Image
In this code snippet post you will learn how to compare two List<T> using lambda expressions. Below code is simple and self-explanatory if you read: Output:

Popular posts from this blog

Migrating database from ASP.NET Identity to ASP.NET Core Identity

Customize User's Profile in ASP.NET Identity System