I followed the instructions from this url on how to get started with
the .Net library:
http://code.google.com/apis/gdata/articles/dotnet_client_lib.html
After doing so I proceeded to start developing my own app
'Select the DLL files that will be used by your code.
Google.GData.Extensions.dll and Google.GData.Client.dll will be needed
for most projects, along with the DLL file specific to the Google
service(s) you are using in your application.'
There are a couple of reference examples that are provided by the
Google Data team from the URL
http://code.google.com/apis/analytics/docs/gdata/gdataLibraries.html
In reference example code they use the Gdata libraries:
using Google.Analytics;
using Google.GData.Analytics;
using Google.GData.Client;
using Google.GData.Extensions;
I have added reference to all Google DLL files that came with the SDK
download but still get the the following errors
Error 1 The type or namespace name 'Analytics' does not exist in the
namespace 'Google' (are you missing an assembly reference?)
Error 2 The type or namespace name 'Analytics' does not exist in the
namespace 'Google.GData' (are you missing an assembly reference?)
Do these libraries exist? How can I resolve this?
Thanks in advanced for the help.
The issue is that the current release doesn't contain the Analytics
assemblies. You need to get them from the trunk of the SVN:
svn checkout http://google-gdata.googlecode.com/svn/trunk/
See the source page here: http://code.google.com/p/google-gdata/source/checkout
In the Release folder under /clients/cs/lib/ you will find the
Google.GData.Analytics.dll and updated Google.GData.Extensions.dll
which are needed to get started as well as run/compile the examples
that you linked to in your post.
http://code.google.com/p/google-gdata/source/browse/#svn/trunk/clients/cs/lib/Release
- Morten
On 27 Maj, 11:58, EdRooky <edmund.kisa...@googlemail.com> wrote:
> I just downloaded the .NET library for Google Data here:http://code.google.com/p/google-gdata/downloads/list?q=label:Featured
>
> I followed the instructions from this url on how to get started with
> the .Net library:http://code.google.com/apis/gdata/articles/dotnet_client_lib.html
>
> After doing so I proceeded to start developing my own app
>
> 'Select the DLL files that will be used by your code.
> Google.GData.Extensions.dll and Google.GData.Client.dll will be needed
> for most projects, along with the DLL file specific to the Google
> service(s) you are using in your application.'
>
> There are a couple of reference examples that are provided by the
> Google Data team from the URLhttp://code.google.com/apis/analytics/docs/gdata/gdataLibraries.html
On May 27, 4:32 pm, sitereactor <elpadrino...@gmail.com> wrote:
> Hi,
>
> The issue is that the current release doesn't contain the Analytics
> assemblies. You need to get them from the trunk of the SVN:
> svn checkouthttp://google-gdata.googlecode.com/svn/trunk/
>
> See the source page here:http://code.google.com/p/google-gdata/source/checkout
> In the Release folder under /clients/cs/lib/ you will find the
> Google.GData.Analytics.dll and updated Google.GData.Extensions.dll
> which are needed to get started as well as run/compile the examples
> that you linked to in your post.
>
> http://code.google.com/p/google-gdata/source/browse/#svn/trunk/client...