suppose i have a project named dummyCode.sln, now when i compile the project i would get a dll named dummyCode.dll.
How can i read this DLL using c# and get the information of my web.config
for example if i have a web.config like this
<configuration>
<appSettings>
<add key="webpages:Version" value="3.0.0.0" />
<add key="webpages:Enabled" value="false" />
<add key="ClientValidationEnabled" value="true" />
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
<add key="employeeDB" value="Data Source=servername;Initial Catalog=employee;Persist Security Info=True;User ID=userid;Password=password;"/>
</appSettings>
</configuration>
then i want to read al the values found inside the appsettings attribute, how can i do it, is it possible to do?