ServiceStack:ConfigurationManager不存在?

时间:2013-12-08 11:01:08

标签: c# servicestack configurationmanager

使用servicestack github的最新版本我正在尝试运行项目解决方案ServiceStack.AndroidIndie 但是,在尝试构建此解决方案时,我收到以下错误:

  

错误1类型或命名空间名称' ConfigurationManager'在>中不存在命名空间' System.Configuration' (你错过了吗?   部件   引用?)C:\ Users \ m41n \ Documents \ GitHub \ ServiceStack.Text \ src \ ServiceStack.Text \ LicenseUtils.cs 106 55 ServiceStack.Text.AndroidIndie

我尝试使用v3源代码,但没有运气..

我可能错过了哪些想法?

1 个答案:

答案 0 :(得分:1)

(are you missing an assembly reference?)。 该错误清楚地表明缺少对System.Configuration的引用。添加System.Configuration对项目的引用。

https://stackoverflow.com/a/860240/1665670