I am trying to write a WCF service that links another project's App.config file. This is a .net 3.5 project and when I try to use:
SystemsConfigurationHandler systemsSection = Configuration.WebConfigurationManager.GetSection("thirdPartySystemsSection") as SystemsConfigurationHandler;
But it still doesn't know what WebConfigurationManager is.
"The type or namespace name 'Configuration' doesnt not exist in the namespace 'System.Web'"
yet looking in the object browser its clearly there. How can I fix this?
Also I am trying to browse a linked App.config file from another project to give an idea of what I am doing.