Google APIs using a .NET Core app

I want to add a gmail connection to my .NET main application. I am looking at the nuget package

Google.Apis.Gmail.v1 Client Library

There is mention of .NET Standard 1.3 support, but no mention of .NET Core is mentioned in either the supported platforms or the compatible platforms. Confused ...

thank

+3


source to share


1 answer


Yes, all Google.Apis.*

nuget packages including Google.Apis.Gmail.v1

, support .NET Core.

If you look at this .NET platform support table , you can see which .NET Core 1.0

implements netstandard1.3

(among others). Thus, support netstandard1.3

in Google Libraries supports support for .NET Core applications.



So, for example, you can build:

  • .NET Core console app (e.g. targeting netcoreapp1.0)
  • ASP.NET Core app but please note that we do not currently provide simple authentication mechanisms for ASP.NET Core. This will be tracked in github issue # 933 .
+2


source







All Articles