How to AppSettings from web.config in Class Libray Project
How to AppSettings from web.config in Class Libray Project
Solution:
public static string APIBaseUrl = WebConfigurationManager.AppSettings["APIBaseUrl"].ToString();// WebConfigurationManager.AppSettings["APIBaseUrl"].ToString(); // change this value from root web.config of WebUI
with the help above few lines we can appsettings value in Class Libray project.