I'm creating a console app in C# using VS2012 that should interact with Google's Calendar API. Following the online instructions, I've attempted to retrieve the .NET version of this API through NuGet with this command:
Install-Package Google.Apis.Calendar.v3
After having successfully installed this package, and adding some code copied from the .NET portion of this page
https://developers.google.com/google-apps/calendar/instantiate
I attempted to compile. But, the compile attempt failed with these errors:
1>E:\tools\daxtell\PunchCardOps\GoogleCalendarApiOps\GoogleCalendarSvc.cs(1,19): error CS0234: The type or namespace name 'Auth' does not exist in the namespace 'Google.Apis' (are you missing an assembly reference?) 1>E:\tools\daxtell\PunchCardOps\GoogleCalendarApiOps\GoogleCalendarSvc.cs(3,19): error CS0234: The type or namespace name 'Services' does not exist in the namespace 'Google.Apis' (are you missing an assembly reference?)