1

Using the newest version from servicestack github I am trying to run the project solution ServiceStack.AndroidIndie However upon trying to build this solution I get the following error:

Error 1 The type or namespace name 'ConfigurationManager' does not exist in > the namespace 'System.Configuration' (are you missing an assembly reference?) C:\Users\m41n\Documents\GitHub\ServiceStack.Text\src\ServiceStack.Text\LicenseUtils.cs 106 55 ServiceStack.Text.AndroidIndie

I tried using the v3 source code aswell without luck..

Any ideas what I might have missed?

tshepang
  • 12,111
  • 21
  • 91
  • 136
myslex
  • 184
  • 1
  • 2
  • 9

1 Answers1

1

(are you missing an assembly reference?). The error clearly says that the reference to the System.Configuration is missing. Add System.Configuration reference to your project.

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

Community
  • 1
  • 1
Bharadwaj
  • 2,535
  • 1
  • 22
  • 35
  • Thank you for your reply @Bharadwaj Under references, there is no tab named ".Net", and not in any tab is there "System.Configuration". However, I browsed through my system for System.Configuration.dll and manually added it. Is this acceptable?? – myslex Dec 08 '13 at 11:16
  • Yes. If that dll is fully functional (doesn't depends on other supposting dlls), then it will do its work for you. – Bharadwaj Dec 08 '13 at 11:19