So, from cleaning the Internet, I managed to find a clearly working βGoogle Voice APIβ. It's great! I am working on an application that detects when server processes fail / errors and then notify me via text. This would be really useful because the server was not completely reliable and sometimes needed to be reset, and sometimes I was too lazy to get off my couch / busy doing something else.
In any case, the API:
http://sourceforge.net/projects/gvoicedotnet/
I added the dll as a link, and everything booted well with intellisense. I added dll to my.cs (using using [haha]). After everything was added, I decided to compile to make sure that it compiles, and, of course, this did not happen.
Error:
Error 201 The type or namespace name 'Google' could not be found (do you have a using directive or an assembly reference?)
In any case, for some reason, at each compilation, does it delete the dll as a link? The only thing that seems like some indicator (in which I doubt it is related) is a warning
The related assembly "Google.Voice.Service, Version = 1.0.0.0, Culture = neutral, processorArchitecture = MSIL" cannot be resolved because it has a dependency on "System.Web, Version = 4.0.0.0", Culture = neutral, PublicKeyToken = b03f5f7f11d50a3a "which is missing from the target framework" .NETFramework, Version = v4.0, profile = Client ". Delete assembly links not in the target framework, or consider redirecting your project.
tl; dr link automatically ceases to be a link.
source share