System.Configuration.ConfigurationManager problems, like it doesn"t

System.Configuration.ConfigurationManager problems, like it doesn"t

am 06.01.2008 23:54:56 von bryan rasmussen

Hi,

I have a Visual studio 2005 project that runs as a Windows Service. In
it I have declared that I am using System.Configuration.

I have set one application setting for the service using the settings
panel.

When I try to do the following;

ConfigurationManager.AppSettings[name of the setting being used];

I get the error warning that Error 2 The name 'ConfigurationManager'
does not exist in the current context

If I try the
System.Configuration.ConfigurationManager.AppSettings it tells me that
ConfigurationManager is not part of System.Configuration.

If I try to use ConfigurationSettings of course it tells me that it is
obsolete, which is undoubtedly a bad thing but I really like the thing
that it works as opposed to the correct ConfigurationManager which
doesn't.

Re: System.Configuration.ConfigurationManager problems, like it doesn"t exist.

am 07.01.2008 05:01:59 von MR. Arnold

"pantagruel" wrote in message
news:64d7fcec-2014-4452-83b5-f34b5e417c6a@x69g2000hsx.google groups.com...
> Hi,
>
> I have a Visual studio 2005 project that runs as a Windows Service. In
> it I have declared that I am using System.Configuration.
>
> I have set one application setting for the service using the settings
> panel.
>
> When I try to do the following;
>
> ConfigurationManager.AppSettings[name of the setting being used];
>
> I get the error warning that Error 2 The name 'ConfigurationManager'
> does not exist in the current context
>
> If I try the
> System.Configuration.ConfigurationManager.AppSettings it tells me that
> ConfigurationManager is not part of System.Configuration.
>
> If I try to use ConfigurationSettings of course it tells me that it is
> obsolete, which is undoubtedly a bad thing but I really like the thing
> that it works as opposed to the correct ConfigurationManager which
> doesn't.
>

Go to Reference for the project, the .Net tab, remove the reference for
System.Configuration, and then add the reference back. You can see if that
corrects your problem.

Re: System.Configuration.ConfigurationManager problems, like it

am 07.01.2008 09:25:34 von bryan rasmussen

On Jan 7, 5:01 am, "Mr. Arnold" wrote:
> "pantagruel" wrote in message
>
> news:64d7fcec-2014-4452-83b5-f34b5e417c6a@x69g2000hsx.google groups.com...
>
>
>
> > Hi,
>
> > I have a Visual studio 2005 project that runs as a Windows Service. In
> > it I have declared that I am using System.Configuration.
>
> > I have set one application setting for the service using the settings
> > panel.
>
> > When I try to do the following;
>
> > ConfigurationManager.AppSettings[name of the setting being used];
>
> > I get the error warning that Error 2 The name 'ConfigurationManager'
> > does not exist in the current context
>
> > If I try the
> > System.Configuration.ConfigurationManager.AppSettings it tells me that
> > ConfigurationManager is not part of System.Configuration.
>
> > If I try to use ConfigurationSettings of course it tells me that it is
> > obsolete, which is undoubtedly a bad thing but I really like the thing
> > that it works as opposed to the correct ConfigurationManager which
> > doesn't.
>
> Go to Reference for the project, the .Net tab, remove the reference for
> System.Configuration, and then add the reference back. You can see if that
> corrects your problem.

Thanks!