I am using VS2008. I have a database related project, and the connection string is read from App.config via ConfigurationManager. We use L2E.
Now I have added the AndeDataViewer helper project to have a simple interface for displaying data from the database for testing / verification purposes.
I do not want to create another set of entity data models in a supporting project. I just added all the related files as a link in a new helper project.
When compiling, I received the following error:
Error 15 The name 'ConfigurationManager' does not exist in the current context C:\workspace\SystemSoftware\SystemSoftware\src\systeminfo\RuntimeInfo.cs 24 40 AndeDataViewer
I think I might need to add another link to the project / configuration of the linked file with the supporting project from the main project? There is no App.config file in the new helper project. But it looks like I canβt add the file link to the helper project. Any ideas?
source share