Featured post

Logging in ASP.NET Core 3.1 Using NLog

Image
  NLog          NLog is an open source logging framework that provides a great flexibility and configurable options to log the insights of your application. It allows to select multiple targets like database, files, console, etc. at the same time so that user don’t have to maintain different configurations in code. This is the most widely used logging framework out there.  For more details :  https://nlog-project.org/    It is easy to implement in your Asp.Net core application. We'll see step by step with image.    1.     Open Visual Studio and Create new project 2.    Choose ASP.Net Core Web Application 3. Enter Name of project 4.  Choose Web Application  5.  Right Click on your project name and choose Manage Nudget packages.         Search these two nudget packages and install.            1. NLog.Config         2. NLog.Web.AspNetCore                   6.  Open Nlog.config file and paste the code.   <?xml version= "1.0" encoding= "utf-8" ?> < nlog

About

  My name is Bhavin Varsur.I am a full-time developer, working predominantly in ASP.NET Core development in Hyderabad,India. I graduated with an Bachelor of Computer in Application from Bhakta Kavi Narsinh Mehta University in 2019. I have experience primarily with ASP.NET and ASP.NET Core, working both in MVC and Web API, but have also worked professionally with ASP.NET Core Web API.


Connect with me :

Twitter : https://twitter.com/bhavin_varsur

Facebook : https://m.facebook.com/bhavin.varsur.3

LinkedIn : https://www.linkedin.com/in/bhavin-varsur-254214146

Wordress :https://programmingscript.wordpress.com/

Pinterest : https://in.pinterest.com/bhavinvarsur/

YouTube : https://m.youtube.com/channel/UC_-ik8HZu_kO9Xs3ENF6ylw

MSDN : https://social.msdn.microsoft.com/profile/bhavin%20varsur/

Comments

Popular posts from this blog

Hello World Program

What is JVM, JDK and JRE

Logging in ASP.NET Core 3.1 Using NLog