Invalid option ‘7.3’ for /langversion; must be ISO-1, ISO-2, Default, Latest or a valid version in range 1 to 7.1.
Post Views: 428 This compiler error occurs sometime because of version change where dotnet compiler version and c# version are incompatible. Error: Compilation ErrorDescription: An error occurred during the compilation of…
Adding Module with Routing in Angular
Post Views: 32 The angular cli for creating another module with its routing. ng g module /admin/home –routing –module=app The above command will create a module inside admin/home with it’s…
Change the session timeouts in SharePoint sites
Post Views: 351 Some cases, our clients (SharePoint Client) may request to change the session time out of SharePoint sites. It is allowed to set timeout of the user session…
An unhandled exception occurred: Could not find module “@angular-devkit/build-angular”
Post Views: 78 This error occurs because of missing dev dependency which is introduced newly in Angular 6.0 and above. Solution: Install @angular-devkit/build-angular In some cases npm install ng update…
How to update files of Azure hosted site
Post Views: 38 There are few steps need to follow to edit and update files of application which are hosted in azure. Follow following steps. Login to azure portal, Click…
Create Angular Component if more than one module matches
Post Views: 145 More than one module matches. Use skip-import option to skip importing the component into the closest module. Command ng g component –skipTests /admin/home –module=app This command will…
Failed to register URL “http://localhost:XXXX/” for site “..” application “/”. Error description: The process cannot access the file because it is being used by another process. (0x80070020)
Post Views: 456 Error: Failed to register URL “http://localhost:XXXX/” for site “SITE NAME” application “/”. Error description: The process cannot access the file because it is being used by another…
How to Create a List in SharePoint
Post Views: 45 Introduction In this article, we will learn how to create SharePoint List in SharePoint site. Additionally, we will add necessary columns and set property of columns. List…
Create a Database View using Entity Framework (EF) Code First Approach
Post Views: 692 How to create a database view using Entity Framework Code first approach? User case scenario: There are several cases when your applications may need to display data…
Web Deployment from Visual Studio
Post Views: 23 Today, we will learn few steps to deploy website from visual studio. Step 1: Download the web deployment package from control panel of your hosting site. Step…