I'm currently in the process of developing a calendar synchronization with Google Calendar.
Since the NuGet variants of the Google.Apis package are not strong named, I've tried to sign them myself (using ILASM and ILDASM). Unfortunately, this results in the following build error:
The type 'Google.Apis.Authentication.IAuthenticator' is defined in an assembly that is not referenced. You must add a reference to assembly 'Google.Apis, Version=1.2.4737.25313, Culture=neutral, PublicKeyToken=null'.
Now I've tried downloading the source code (from: https://code.google.com/p/google-api-dotnet-client/source/browse/) and compiling them myself. This does work, however the Google.Apis.Calendar.v3 dll is missing.
Now I've found it here: https://code.google.com/p/google-api-dotnet-client/source/browse/Services/Google.Apis.Calendar.v3.cs?repo=samples&r=4ce33c684dd8e6f11b441f685149856c6735e51b
But I don't know how I can approach this whole thing. Aren't there any ready-to-use DLLs for Google Calendar integration, which are strongly named?