.Net basics: using configuration file to configure logging and database connection string
Hello everybody, Today I will cover next topics – How to configure logger and database connection string in .Net Framework X.X via xml configuration file. To add logging into your application you have to do few simple steps:1. Add a configuration file into your project: Project -> Add new Item -> Application configuration file or CTRL+SHIFT+A -> Application configuration file;2. Open the file you have added;— This file is contained in your project’s tree and will be added into the…