Posts

Showing posts from March, 2023

SharePoint Framework Reference Guide

SPFx stands for SharePoint Framework -  https://learn.microsoft.com/en-us/javascript/api/overview/sharepoint?view=sp-typescript-latest   Below are the packages of SPFx and we are using them while using SPFx framework for development in our day-to-day activities. .'@microsoft/decorators' - https://learn.microsoft.com/en-us/javascript/api/decorators?view=sp-typescript-latest '@microsoft/sp-core-library' - https://learn.microsoft.com/en-us/javascript/api/sp-core-library?view=sp-typescript-latest '@microsoft/sp-component-base package' - https://learn.microsoft.com/en-us/javascript/api/sp-component-base?view=sp-typescript-latest '@microsoft/sp-application-base package' - https://learn.microsoft.com/en-us/javascript/api/sp-application-base?view=sp-typescript-latest '@microsoft/sp-dynamic-data package' - https://learn.microsoft.com/en-us/javascript/api/sp-dynamic-data?view=sp-typescript-latest '@microsoft/sp-extension-base package' - http

Publish WebAPI in Azure using Visual Studio

Image
 Microsoft always make your life easier. Publishing a WebAPI using Visual Studio is all about a couple of clicks. Before start, you must have a WebAPI working at your local and you must have a Azure subscription. Once build done, right click on the project and click on publish. At this stage, it identify what is the Resource Group, and API Management object is required to be fit in.  Next couple of screens are very simple and self explanatory.  In this stage, click on P ublish button to allow visual studio to publish your WebAPI. Now, you can check and test your WebAPI through Azure and see how it is working. Make sure all backend call are executing as expected.