找不到配置管理器
ConfigurationManager could not be found
我有一个网站,前端基于 React,后端基于 .net MVC
我想获取 ConfigurationManager
中的 AppSettings 方法,但 VS 告诉我,System.Configuration
中没有 ConfigurationManager
类型名称
我在 System.Configuration
上有一个参考。其他问题我都试过了,但是不行。
如果我尝试使用方法 System.Web.Configuration.WebConfigurationManager.AppSettings
访问 AppSettings,它会给我一个错误,指出 Configuration
没有类型名称或名称空间
Full error from VS
有人可以帮我解决这个问题吗?
哇哦...
使用 nuGet 我必须搜索 system.configuration
然后我可以安装 System.Configuration.ConfigurationManager
现在,它工作正常
我有一个网站,前端基于 React,后端基于 .net MVC
我想获取 ConfigurationManager
中的 AppSettings 方法,但 VS 告诉我,System.Configuration
ConfigurationManager
类型名称
我在 System.Configuration
上有一个参考。其他问题我都试过了,但是不行。
如果我尝试使用方法 System.Web.Configuration.WebConfigurationManager.AppSettings
访问 AppSettings,它会给我一个错误,指出 Configuration
Full error from VS
有人可以帮我解决这个问题吗?
哇哦...
使用 nuGet 我必须搜索 system.configuration
然后我可以安装 System.Configuration.ConfigurationManager
现在,它工作正常