How to add/embed custom font in xamarin forms

November 26, 2021 0 comments

 Embedding fonts in Xamarin Forms is the best way to use fonts, there is no need to add platform specific fonts and code. Its just adding one file and adding one attribute in shared code; that's it; we are ready to use fonts in our code.  How to add fonts in Xamarin Forms  In just[...]

After Configuring IIS on VM Server - How to access sites hosted on IIS On VM over internet

December 25, 2020 0 comments

 Once we are done with Installing IIS on Azure VM, we need to open port 80 to access hosted website from internet. Check - How to Setup IIS On Azure VM To Enable port 80, simply login to your Azure portal, and click on VM Then click on Networking, on click of Networking, network interface[...]

How To Setup IIS on Azure VM - Configure IIS on Azure VM

December 25, 2020 0 comments

 Once we have setup the Azure VM, next important thing is to Setup an IIS in the windows server and enable it to access from anywhere. So that we can host our web application on VM and access it over an Internet. In this article, we shall achieve it. To Enable IIS on Azure VM server Under[...]

The razortaghelper task failed unexpectedly

December 01, 2020 0 comments

 After updating Visual studio to New version, I suddenly started getting error  the razortaghelper task failed unexpectedly Well after doing some research on Internet I came across following solutions Added the following environment variable to my user environment to make it[...]

How to compile Less, sass/scss, JSX, ES6, CoffeeScript in visual studio

October 26, 2020 0 comments

 It is very easy to compile LESS and SCSS files in visual studio. To do this we have to use Web Compiler extension. Web compiler extension generates css file from LESS and SCSS files on run time. Lets Install the Extension We can download the extension from  https://marketplace.visualstudio.com/items?itemName=MadsKristensen.WebCompiler[...]

The entity type 'IdentityUserLogin' requires a primary key to be defined.

June 21, 2020 0 comments

While developing Web application in Asp.net Core Razor page, I have come across following error InvalidOperationException: The entity type 'IdentityUserLogin<string>' requires a primary key to be defined. I was doing following thing in my application I wanted to set Unique Key constraint[...]