├── .vs └── GoogleDriveExample │ └── v16 │ └── .suo ├── GoogleDriveExample.sln ├── GoogleDriveExample ├── App.config ├── GoogleDriveAPI.cs ├── GoogleDriveExample.csproj ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── bin │ ├── Debug │ │ ├── Google.Apis.Auth.PlatformServices.dll │ │ ├── Google.Apis.Auth.dll │ │ ├── Google.Apis.Auth.pdb │ │ ├── Google.Apis.Auth.xml │ │ ├── Google.Apis.Core.dll │ │ ├── Google.Apis.Core.pdb │ │ ├── Google.Apis.Core.xml │ │ ├── Google.Apis.Drive.v3.dll │ │ ├── Google.Apis.Drive.v3.pdb │ │ ├── Google.Apis.Drive.v3.xml │ │ ├── Google.Apis.PlatformServices.dll │ │ ├── Google.Apis.dll │ │ ├── Google.Apis.pdb │ │ ├── Google.Apis.xml │ │ ├── GoogleDriveExample.exe │ │ ├── GoogleDriveExample.exe.config │ │ ├── GoogleDriveExample.pdb │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ ├── Microsoft.Bcl.AsyncInterfaces.xml │ │ ├── Newtonsoft.Json.dll │ │ ├── Newtonsoft.Json.xml │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ ├── System.Runtime.CompilerServices.Unsafe.xml │ │ ├── System.Threading.Tasks.Extensions.dll │ │ └── System.Threading.Tasks.Extensions.xml │ └── Release │ │ ├── Google.Apis.Auth.PlatformServices.dll │ │ ├── Google.Apis.Auth.dll │ │ ├── Google.Apis.Auth.pdb │ │ ├── Google.Apis.Auth.xml │ │ ├── Google.Apis.Core.dll │ │ ├── Google.Apis.Core.pdb │ │ ├── Google.Apis.Core.xml │ │ ├── Google.Apis.Drive.v3.dll │ │ ├── Google.Apis.Drive.v3.pdb │ │ ├── Google.Apis.Drive.v3.xml │ │ ├── Google.Apis.PlatformServices.dll │ │ ├── Google.Apis.dll │ │ ├── Google.Apis.pdb │ │ ├── Google.Apis.xml │ │ ├── GoogleDriveExample.exe │ │ ├── GoogleDriveExample.exe.config │ │ ├── GoogleDriveExample.pdb │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ ├── Microsoft.Bcl.AsyncInterfaces.xml │ │ ├── Newtonsoft.Json.dll │ │ ├── Newtonsoft.Json.xml │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ ├── System.Runtime.CompilerServices.Unsafe.xml │ │ ├── System.Threading.Tasks.Extensions.dll │ │ └── System.Threading.Tasks.Extensions.xml ├── obj │ ├── Debug │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── GoogleDriveExample.MainForm.resources │ │ ├── GoogleDriveExample.Properties.Resources.resources │ │ ├── GoogleDriveExample.csproj.CopyComplete │ │ ├── GoogleDriveExample.csproj.CoreCompileInputs.cache │ │ ├── GoogleDriveExample.csproj.FileListAbsolute.txt │ │ ├── GoogleDriveExample.csproj.GenerateResource.cache │ │ ├── GoogleDriveExample.exe │ │ └── GoogleDriveExample.pdb │ └── Release │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── GoogleDriveExample.MainForm.resources │ │ ├── GoogleDriveExample.Properties.Resources.resources │ │ ├── GoogleDriveExample.csproj.CopyComplete │ │ ├── GoogleDriveExample.csproj.CoreCompileInputs.cache │ │ ├── GoogleDriveExample.csproj.FileListAbsolute.txt │ │ ├── GoogleDriveExample.csproj.GenerateResource.cache │ │ ├── GoogleDriveExample.exe │ │ └── GoogleDriveExample.pdb └── packages.config ├── README.md └── packages ├── Google.Apis.1.49.0 ├── .signature.p7s ├── Google.Apis.1.49.0.nupkg ├── LICENSE ├── NuGetIcon.png └── lib │ ├── net45 │ ├── Google.Apis.PlatformServices.dll │ ├── Google.Apis.dll │ ├── Google.Apis.pdb │ └── Google.Apis.xml │ ├── netstandard1.3 │ ├── Google.Apis.dll │ ├── Google.Apis.pdb │ └── Google.Apis.xml │ └── netstandard2.0 │ ├── Google.Apis.dll │ ├── Google.Apis.pdb │ └── Google.Apis.xml ├── Google.Apis.Auth.1.49.0 ├── .signature.p7s ├── Google.Apis.Auth.1.49.0.nupkg ├── LICENSE ├── NuGetIcon.png └── lib │ ├── net45 │ ├── Google.Apis.Auth.PlatformServices.dll │ ├── Google.Apis.Auth.dll │ ├── Google.Apis.Auth.pdb │ └── Google.Apis.Auth.xml │ ├── netstandard1.3 │ ├── Google.Apis.Auth.PlatformServices.dll │ ├── Google.Apis.Auth.dll │ ├── Google.Apis.Auth.pdb │ └── Google.Apis.Auth.xml │ └── netstandard2.0 │ ├── Google.Apis.Auth.PlatformServices.dll │ ├── Google.Apis.Auth.dll │ ├── Google.Apis.Auth.pdb │ └── Google.Apis.Auth.xml ├── Google.Apis.Core.1.49.0 ├── .signature.p7s ├── Google.Apis.Core.1.49.0.nupkg ├── LICENSE ├── NuGetIcon.png └── lib │ ├── net45 │ ├── Google.Apis.Core.dll │ ├── Google.Apis.Core.pdb │ └── Google.Apis.Core.xml │ ├── netstandard1.3 │ ├── Google.Apis.Core.dll │ ├── Google.Apis.Core.pdb │ └── Google.Apis.Core.xml │ └── netstandard2.0 │ ├── Google.Apis.Core.dll │ ├── Google.Apis.Core.pdb │ └── Google.Apis.Core.xml ├── Google.Apis.Drive.v3.1.49.0.2060 ├── .signature.p7s ├── Google.Apis.Drive.v3.1.49.0.2060.nupkg ├── LICENSE └── lib │ ├── net40 │ ├── Google.Apis.Drive.v3.dll │ ├── Google.Apis.Drive.v3.pdb │ └── Google.Apis.Drive.v3.xml │ ├── net45 │ ├── Google.Apis.Drive.v3.dll │ ├── Google.Apis.Drive.v3.pdb │ └── Google.Apis.Drive.v3.xml │ ├── netstandard1.0 │ ├── Google.Apis.Drive.v3.dll │ ├── Google.Apis.Drive.v3.pdb │ └── Google.Apis.Drive.v3.xml │ ├── netstandard1.3 │ ├── Google.Apis.Drive.v3.dll │ ├── Google.Apis.Drive.v3.pdb │ └── Google.Apis.Drive.v3.xml │ └── netstandard2.0 │ ├── Google.Apis.Drive.v3.dll │ ├── Google.Apis.Drive.v3.pdb │ └── Google.Apis.Drive.v3.xml ├── Microsoft.Bcl.AsyncInterfaces.1.1.1 ├── .signature.p7s ├── Icon.png ├── LICENSE.TXT ├── Microsoft.Bcl.AsyncInterfaces.1.1.1.nupkg ├── THIRD-PARTY-NOTICES.TXT ├── lib │ ├── net461 │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ └── Microsoft.Bcl.AsyncInterfaces.xml │ ├── netstandard2.0 │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ └── Microsoft.Bcl.AsyncInterfaces.xml │ └── netstandard2.1 │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ └── Microsoft.Bcl.AsyncInterfaces.xml ├── ref │ ├── net461 │ │ └── Microsoft.Bcl.AsyncInterfaces.dll │ ├── netstandard2.0 │ │ └── Microsoft.Bcl.AsyncInterfaces.dll │ └── netstandard2.1 │ │ └── Microsoft.Bcl.AsyncInterfaces.dll ├── useSharedDesignerContext.txt └── version.txt ├── Newtonsoft.Json.12.0.3 ├── .signature.p7s ├── LICENSE.md ├── Newtonsoft.Json.12.0.3.nupkg ├── lib │ ├── net20 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net35 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net40 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net45 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── netstandard1.0 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── netstandard1.3 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── netstandard2.0 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── portable-net40+sl5+win8+wp8+wpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ └── portable-net45+win8+wp8+wpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml └── packageIcon.png ├── System.Runtime.CompilerServices.Unsafe.4.5.3 ├── .signature.p7s ├── LICENSE.TXT ├── System.Runtime.CompilerServices.Unsafe.4.5.3.nupkg ├── THIRD-PARTY-NOTICES.TXT ├── lib │ ├── net461 │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ └── System.Runtime.CompilerServices.Unsafe.xml │ ├── netcoreapp2.0 │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ └── System.Runtime.CompilerServices.Unsafe.xml │ ├── netstandard1.0 │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ └── System.Runtime.CompilerServices.Unsafe.xml │ └── netstandard2.0 │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ └── System.Runtime.CompilerServices.Unsafe.xml ├── ref │ ├── net461 │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ └── System.Runtime.CompilerServices.Unsafe.xml │ ├── netstandard1.0 │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ └── System.Runtime.CompilerServices.Unsafe.xml │ └── netstandard2.0 │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ └── System.Runtime.CompilerServices.Unsafe.xml ├── useSharedDesignerContext.txt └── version.txt └── System.Threading.Tasks.Extensions.4.5.4 ├── .signature.p7s ├── LICENSE.TXT ├── System.Threading.Tasks.Extensions.4.5.4.nupkg ├── THIRD-PARTY-NOTICES.TXT ├── lib ├── MonoAndroid10 │ └── _._ ├── MonoTouch10 │ └── _._ ├── net461 │ ├── System.Threading.Tasks.Extensions.dll │ └── System.Threading.Tasks.Extensions.xml ├── netcoreapp2.1 │ └── _._ ├── netstandard1.0 │ ├── System.Threading.Tasks.Extensions.dll │ └── System.Threading.Tasks.Extensions.xml ├── netstandard2.0 │ ├── System.Threading.Tasks.Extensions.dll │ └── System.Threading.Tasks.Extensions.xml ├── portable-net45+win8+wp8+wpa81 │ ├── System.Threading.Tasks.Extensions.dll │ └── System.Threading.Tasks.Extensions.xml ├── xamarinios10 │ └── _._ ├── xamarinmac20 │ └── _._ ├── xamarintvos10 │ └── _._ └── xamarinwatchos10 │ └── _._ ├── ref ├── MonoAndroid10 │ └── _._ ├── MonoTouch10 │ └── _._ ├── netcoreapp2.1 │ └── _._ ├── xamarinios10 │ └── _._ ├── xamarinmac20 │ └── _._ ├── xamarintvos10 │ └── _._ └── xamarinwatchos10 │ └── _._ ├── useSharedDesignerContext.txt └── version.txt /.vs/GoogleDriveExample/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/.vs/GoogleDriveExample/v16/.suo -------------------------------------------------------------------------------- /GoogleDriveExample.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.30413.136 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GoogleDriveExample", "GoogleDriveExample\GoogleDriveExample.csproj", "{2F0CE74F-CD6E-4853-A019-E4AC731DA726}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {2F0CE74F-CD6E-4853-A019-E4AC731DA726}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {2F0CE74F-CD6E-4853-A019-E4AC731DA726}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {2F0CE74F-CD6E-4853-A019-E4AC731DA726}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {2F0CE74F-CD6E-4853-A019-E4AC731DA726}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {862969AF-46FF-473B-808A-FD7579E2B813} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /GoogleDriveExample/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /GoogleDriveExample/GoogleDriveExample.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {2F0CE74F-CD6E-4853-A019-E4AC731DA726} 8 | WinExe 9 | GoogleDriveExample 10 | GoogleDriveExample 11 | v4.7.2 12 | 512 13 | true 14 | true 15 | 16 | 17 | AnyCPU 18 | true 19 | full 20 | false 21 | bin\Debug\ 22 | DEBUG;TRACE 23 | prompt 24 | 4 25 | 8.0 26 | 27 | 28 | AnyCPU 29 | pdbonly 30 | true 31 | bin\Release\ 32 | TRACE 33 | prompt 34 | 4 35 | 8.0 36 | 37 | 38 | 39 | ..\packages\Google.Apis.1.49.0\lib\net45\Google.Apis.dll 40 | 41 | 42 | ..\packages\Google.Apis.Auth.1.49.0\lib\net45\Google.Apis.Auth.dll 43 | 44 | 45 | ..\packages\Google.Apis.Auth.1.49.0\lib\net45\Google.Apis.Auth.PlatformServices.dll 46 | 47 | 48 | ..\packages\Google.Apis.Core.1.49.0\lib\net45\Google.Apis.Core.dll 49 | 50 | 51 | ..\packages\Google.Apis.Drive.v3.1.49.0.2060\lib\net45\Google.Apis.Drive.v3.dll 52 | 53 | 54 | ..\packages\Google.Apis.1.49.0\lib\net45\Google.Apis.PlatformServices.dll 55 | 56 | 57 | ..\packages\Microsoft.Bcl.AsyncInterfaces.1.1.1\lib\net461\Microsoft.Bcl.AsyncInterfaces.dll 58 | 59 | 60 | ..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll 61 | 62 | 63 | 64 | 65 | ..\packages\System.Runtime.CompilerServices.Unsafe.4.5.3\lib\net461\System.Runtime.CompilerServices.Unsafe.dll 66 | 67 | 68 | ..\packages\System.Threading.Tasks.Extensions.4.5.4\lib\net461\System.Threading.Tasks.Extensions.dll 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | Form 83 | 84 | 85 | MainForm.cs 86 | 87 | 88 | 89 | 90 | 91 | MainForm.cs 92 | 93 | 94 | ResXFileCodeGenerator 95 | Resources.Designer.cs 96 | Designer 97 | 98 | 99 | True 100 | Resources.resx 101 | 102 | 103 | 104 | SettingsSingleFileGenerator 105 | Settings.Designer.cs 106 | 107 | 108 | True 109 | Settings.settings 110 | True 111 | 112 | 113 | 114 | 115 | 116 | 117 | -------------------------------------------------------------------------------- /GoogleDriveExample/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace GoogleDriveExample { 8 | static class Program { 9 | /// 10 | /// The main entry point for the application. 11 | /// 12 | [STAThread] 13 | static void Main() { 14 | Application.EnableVisualStyles(); 15 | Application.SetCompatibleTextRenderingDefault(false); 16 | Application.Run(new MainForm()); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /GoogleDriveExample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("GoogleDriveExample")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("GoogleDriveExample")] 13 | [assembly: AssemblyCopyright("Copyright © 2020")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("2f0ce74f-cd6e-4853-a019-e4ac731da726")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /GoogleDriveExample/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace GoogleDriveExample.Properties { 12 | 13 | 14 | /// 15 | /// A strongly-typed resource class, for looking up localized strings, etc. 16 | /// 17 | // This class was auto-generated by the StronglyTypedResourceBuilder 18 | // class via a tool like ResGen or Visual Studio. 19 | // To add or remove a member, edit your .ResX file then rerun ResGen 20 | // with the /str option, or rebuild your VS project. 21 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] 22 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 23 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 24 | internal class Resources { 25 | 26 | private static global::System.Resources.ResourceManager resourceMan; 27 | 28 | private static global::System.Globalization.CultureInfo resourceCulture; 29 | 30 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 31 | internal Resources() { 32 | } 33 | 34 | /// 35 | /// Returns the cached ResourceManager instance used by this class. 36 | /// 37 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 38 | internal static global::System.Resources.ResourceManager ResourceManager { 39 | get { 40 | if ((resourceMan == null)) { 41 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("GoogleDriveExample.Properties.Resources", typeof(Resources).Assembly); 42 | resourceMan = temp; 43 | } 44 | return resourceMan; 45 | } 46 | } 47 | 48 | /// 49 | /// Overrides the current thread's CurrentUICulture property for all 50 | /// resource lookups using this strongly typed resource class. 51 | /// 52 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 53 | internal static global::System.Globalization.CultureInfo Culture { 54 | get { 55 | return resourceCulture; 56 | } 57 | set { 58 | resourceCulture = value; 59 | } 60 | } 61 | } 62 | } 63 | -------------------------------------------------------------------------------- /GoogleDriveExample/Properties/Resources.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | text/microsoft-resx 107 | 108 | 109 | 2.0 110 | 111 | 112 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 113 | 114 | 115 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | -------------------------------------------------------------------------------- /GoogleDriveExample/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace GoogleDriveExample.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /GoogleDriveExample/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Debug/Google.Apis.Auth.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/bin/Debug/Google.Apis.Auth.PlatformServices.dll -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Debug/Google.Apis.Auth.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/bin/Debug/Google.Apis.Auth.dll -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Debug/Google.Apis.Auth.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/bin/Debug/Google.Apis.Auth.pdb -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Debug/Google.Apis.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/bin/Debug/Google.Apis.Core.dll -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Debug/Google.Apis.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/bin/Debug/Google.Apis.Core.pdb -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Debug/Google.Apis.Drive.v3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/bin/Debug/Google.Apis.Drive.v3.dll -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Debug/Google.Apis.Drive.v3.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/bin/Debug/Google.Apis.Drive.v3.pdb -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Debug/Google.Apis.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/bin/Debug/Google.Apis.PlatformServices.dll -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Debug/Google.Apis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/bin/Debug/Google.Apis.dll -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Debug/Google.Apis.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/bin/Debug/Google.Apis.pdb -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Debug/GoogleDriveExample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/bin/Debug/GoogleDriveExample.exe -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Debug/GoogleDriveExample.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Debug/GoogleDriveExample.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/bin/Debug/GoogleDriveExample.pdb -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Debug/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/bin/Debug/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Debug/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/bin/Debug/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Debug/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/bin/Debug/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Debug/System.Runtime.CompilerServices.Unsafe.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | System.Runtime.CompilerServices.Unsafe 4 | 5 | 6 | 7 | Contains generic, low-level functionality for manipulating pointers. 8 | 9 | 10 | Adds an element offset to the given reference. 11 | The reference to add the offset to. 12 | The offset to add. 13 | The type of reference. 14 | A new reference that reflects the addition of offset to pointer. 15 | 16 | 17 | Adds an element offset to the given reference. 18 | The reference to add the offset to. 19 | The offset to add. 20 | The type of reference. 21 | A new reference that reflects the addition of offset to pointer. 22 | 23 | 24 | Adds a byte offset to the given reference. 25 | The reference to add the offset to. 26 | The offset to add. 27 | The type of reference. 28 | A new reference that reflects the addition of byte offset to pointer. 29 | 30 | 31 | Determines whether the specified references point to the same location. 32 | The first reference to compare. 33 | The second reference to compare. 34 | The type of reference. 35 | true if left and right point to the same location; otherwise, false. 36 | 37 | 38 | Casts the given object to the specified type. 39 | The object to cast. 40 | The type which the object will be cast to. 41 | The original object, casted to the given type. 42 | 43 | 44 | Reinterprets the given reference as a reference to a value of type TTo. 45 | The reference to reinterpret. 46 | The type of reference to reinterpret.. 47 | The desired type of the reference. 48 | A reference to a value of type TTo. 49 | 50 | 51 | Returns a pointer to the given by-ref parameter. 52 | The object whose pointer is obtained. 53 | The type of object. 54 | A pointer to the given value. 55 | 56 | 57 | Reinterprets the given location as a reference to a value of type T. 58 | The location of the value to reference. 59 | The type of the interpreted location. 60 | A reference to a value of type T. 61 | 62 | 63 | Determines the byte offset from origin to target from the given references. 64 | The reference to origin. 65 | The reference to target. 66 | The type of reference. 67 | Byte offset from origin to target i.e. target - origin. 68 | 69 | 70 | Copies a value of type T to the given location. 71 | The location to copy to. 72 | A reference to the value to copy. 73 | The type of value to copy. 74 | 75 | 76 | Copies a value of type T to the given location. 77 | The location to copy to. 78 | A pointer to the value to copy. 79 | The type of value to copy. 80 | 81 | 82 | Copies bytes from the source address to the destination address. 83 | The destination address to copy to. 84 | The source address to copy from. 85 | The number of bytes to copy. 86 | 87 | 88 | Copies bytes from the source address to the destination address. 89 | The destination address to copy to. 90 | The source address to copy from. 91 | The number of bytes to copy. 92 | 93 | 94 | Copies bytes from the source address to the destination address 95 | without assuming architecture dependent alignment of the addresses. 96 | The destination address to copy to. 97 | The source address to copy from. 98 | The number of bytes to copy. 99 | 100 | 101 | Copies bytes from the source address to the destination address 102 | without assuming architecture dependent alignment of the addresses. 103 | The destination address to copy to. 104 | The source address to copy from. 105 | The number of bytes to copy. 106 | 107 | 108 | Initializes a block of memory at the given location with a given initial value. 109 | The address of the start of the memory block to initialize. 110 | The value to initialize the block to. 111 | The number of bytes to initialize. 112 | 113 | 114 | Initializes a block of memory at the given location with a given initial value. 115 | The address of the start of the memory block to initialize. 116 | The value to initialize the block to. 117 | The number of bytes to initialize. 118 | 119 | 120 | Initializes a block of memory at the given location with a given initial value 121 | without assuming architecture dependent alignment of the address. 122 | The address of the start of the memory block to initialize. 123 | The value to initialize the block to. 124 | The number of bytes to initialize. 125 | 126 | 127 | Initializes a block of memory at the given location with a given initial value 128 | without assuming architecture dependent alignment of the address. 129 | The address of the start of the memory block to initialize. 130 | The value to initialize the block to. 131 | The number of bytes to initialize. 132 | 133 | 134 | Reads a value of type T from the given location. 135 | The location to read from. 136 | The type to read. 137 | An object of type T read from the given location. 138 | 139 | 140 | Reads a value of type T from the given location 141 | without assuming architecture dependent alignment of the addresses. 142 | The location to read from. 143 | The type to read. 144 | An object of type T read from the given location. 145 | 146 | 147 | Reads a value of type T from the given location 148 | without assuming architecture dependent alignment of the addresses. 149 | The location to read from. 150 | The type to read. 151 | An object of type T read from the given location. 152 | 153 | 154 | Returns the size of an object of the given type parameter. 155 | The type of object whose size is retrieved. 156 | The size of an object of type T. 157 | 158 | 159 | Subtracts an element offset from the given reference. 160 | The reference to subtract the offset from. 161 | The offset to subtract. 162 | The type of reference. 163 | A new reference that reflects the subraction of offset from pointer. 164 | 165 | 166 | Subtracts an element offset from the given reference. 167 | The reference to subtract the offset from. 168 | The offset to subtract. 169 | The type of reference. 170 | A new reference that reflects the subraction of offset from pointer. 171 | 172 | 173 | Subtracts a byte offset from the given reference. 174 | The reference to subtract the offset from. 175 | 176 | The type of reference. 177 | A new reference that reflects the subraction of byte offset from pointer. 178 | 179 | 180 | Writes a value of type T to the given location. 181 | The location to write to. 182 | The value to write. 183 | The type of value to write. 184 | 185 | 186 | Writes a value of type T to the given location 187 | without assuming architecture dependent alignment of the addresses. 188 | The location to write to. 189 | The value to write. 190 | The type of value to write. 191 | 192 | 193 | Writes a value of type T to the given location 194 | without assuming architecture dependent alignment of the addresses. 195 | The location to write to. 196 | The value to write. 197 | The type of value to write. 198 | 199 | 200 | -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Debug/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/bin/Debug/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Debug/System.Threading.Tasks.Extensions.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | System.Threading.Tasks.Extensions 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Provides a value type that wraps a and a TResult, only one of which is used. 23 | The result. 24 | 25 | 26 | Initializes a new instance of the class using the supplied task that represents the operation. 27 | The task. 28 | The task argument is null. 29 | 30 | 31 | Initializes a new instance of the class using the supplied result of a successful operation. 32 | The result. 33 | 34 | 35 | Retrieves a object that represents this . 36 | The object that is wrapped in this if one exists, or a new object that represents the result. 37 | 38 | 39 | Configures an awaiter for this value. 40 | true to attempt to marshal the continuation back to the captured context; otherwise, false. 41 | The configured awaiter. 42 | 43 | 44 | Creates a method builder for use with an async method. 45 | The created builder. 46 | 47 | 48 | Determines whether the specified object is equal to the current object. 49 | The object to compare with the current object. 50 | true if the specified object is equal to the current object; otherwise, false. 51 | 52 | 53 | Determines whether the specified object is equal to the current object. 54 | The object to compare with the current object. 55 | true if the specified object is equal to the current object; otherwise, false. 56 | 57 | 58 | Creates an awaiter for this value. 59 | The awaiter. 60 | 61 | 62 | Returns the hash code for this instance. 63 | The hash code for the current object. 64 | 65 | 66 | Gets a value that indicates whether this object represents a canceled operation. 67 | true if this object represents a canceled operation; otherwise, false. 68 | 69 | 70 | Gets a value that indicates whether this object represents a completed operation. 71 | true if this object represents a completed operation; otherwise, false. 72 | 73 | 74 | Gets a value that indicates whether this object represents a successfully completed operation. 75 | true if this object represents a successfully completed operation; otherwise, false. 76 | 77 | 78 | Gets a value that indicates whether this object represents a failed operation. 79 | true if this object represents a failed operation; otherwise, false. 80 | 81 | 82 | Compares two values for equality. 83 | The first value to compare. 84 | The second value to compare. 85 | true if the two values are equal; otherwise, false. 86 | 87 | 88 | Determines whether two values are unequal. 89 | The first value to compare. 90 | The seconed value to compare. 91 | true if the two values are not equal; otherwise, false. 92 | 93 | 94 | Gets the result. 95 | The result. 96 | 97 | 98 | Returns a string that represents the current object. 99 | A string that represents the current object. 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Release/Google.Apis.Auth.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/bin/Release/Google.Apis.Auth.PlatformServices.dll -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Release/Google.Apis.Auth.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/bin/Release/Google.Apis.Auth.dll -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Release/Google.Apis.Auth.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/bin/Release/Google.Apis.Auth.pdb -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Release/Google.Apis.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/bin/Release/Google.Apis.Core.dll -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Release/Google.Apis.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/bin/Release/Google.Apis.Core.pdb -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Release/Google.Apis.Drive.v3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/bin/Release/Google.Apis.Drive.v3.dll -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Release/Google.Apis.Drive.v3.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/bin/Release/Google.Apis.Drive.v3.pdb -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Release/Google.Apis.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/bin/Release/Google.Apis.PlatformServices.dll -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Release/Google.Apis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/bin/Release/Google.Apis.dll -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Release/Google.Apis.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/bin/Release/Google.Apis.pdb -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Release/GoogleDriveExample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/bin/Release/GoogleDriveExample.exe -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Release/GoogleDriveExample.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Release/GoogleDriveExample.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/bin/Release/GoogleDriveExample.pdb -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Release/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/bin/Release/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Release/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/bin/Release/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Release/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/bin/Release/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Release/System.Runtime.CompilerServices.Unsafe.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | System.Runtime.CompilerServices.Unsafe 4 | 5 | 6 | 7 | Contains generic, low-level functionality for manipulating pointers. 8 | 9 | 10 | Adds an element offset to the given reference. 11 | The reference to add the offset to. 12 | The offset to add. 13 | The type of reference. 14 | A new reference that reflects the addition of offset to pointer. 15 | 16 | 17 | Adds an element offset to the given reference. 18 | The reference to add the offset to. 19 | The offset to add. 20 | The type of reference. 21 | A new reference that reflects the addition of offset to pointer. 22 | 23 | 24 | Adds a byte offset to the given reference. 25 | The reference to add the offset to. 26 | The offset to add. 27 | The type of reference. 28 | A new reference that reflects the addition of byte offset to pointer. 29 | 30 | 31 | Determines whether the specified references point to the same location. 32 | The first reference to compare. 33 | The second reference to compare. 34 | The type of reference. 35 | true if left and right point to the same location; otherwise, false. 36 | 37 | 38 | Casts the given object to the specified type. 39 | The object to cast. 40 | The type which the object will be cast to. 41 | The original object, casted to the given type. 42 | 43 | 44 | Reinterprets the given reference as a reference to a value of type TTo. 45 | The reference to reinterpret. 46 | The type of reference to reinterpret.. 47 | The desired type of the reference. 48 | A reference to a value of type TTo. 49 | 50 | 51 | Returns a pointer to the given by-ref parameter. 52 | The object whose pointer is obtained. 53 | The type of object. 54 | A pointer to the given value. 55 | 56 | 57 | Reinterprets the given location as a reference to a value of type T. 58 | The location of the value to reference. 59 | The type of the interpreted location. 60 | A reference to a value of type T. 61 | 62 | 63 | Determines the byte offset from origin to target from the given references. 64 | The reference to origin. 65 | The reference to target. 66 | The type of reference. 67 | Byte offset from origin to target i.e. target - origin. 68 | 69 | 70 | Copies a value of type T to the given location. 71 | The location to copy to. 72 | A reference to the value to copy. 73 | The type of value to copy. 74 | 75 | 76 | Copies a value of type T to the given location. 77 | The location to copy to. 78 | A pointer to the value to copy. 79 | The type of value to copy. 80 | 81 | 82 | Copies bytes from the source address to the destination address. 83 | The destination address to copy to. 84 | The source address to copy from. 85 | The number of bytes to copy. 86 | 87 | 88 | Copies bytes from the source address to the destination address. 89 | The destination address to copy to. 90 | The source address to copy from. 91 | The number of bytes to copy. 92 | 93 | 94 | Copies bytes from the source address to the destination address 95 | without assuming architecture dependent alignment of the addresses. 96 | The destination address to copy to. 97 | The source address to copy from. 98 | The number of bytes to copy. 99 | 100 | 101 | Copies bytes from the source address to the destination address 102 | without assuming architecture dependent alignment of the addresses. 103 | The destination address to copy to. 104 | The source address to copy from. 105 | The number of bytes to copy. 106 | 107 | 108 | Initializes a block of memory at the given location with a given initial value. 109 | The address of the start of the memory block to initialize. 110 | The value to initialize the block to. 111 | The number of bytes to initialize. 112 | 113 | 114 | Initializes a block of memory at the given location with a given initial value. 115 | The address of the start of the memory block to initialize. 116 | The value to initialize the block to. 117 | The number of bytes to initialize. 118 | 119 | 120 | Initializes a block of memory at the given location with a given initial value 121 | without assuming architecture dependent alignment of the address. 122 | The address of the start of the memory block to initialize. 123 | The value to initialize the block to. 124 | The number of bytes to initialize. 125 | 126 | 127 | Initializes a block of memory at the given location with a given initial value 128 | without assuming architecture dependent alignment of the address. 129 | The address of the start of the memory block to initialize. 130 | The value to initialize the block to. 131 | The number of bytes to initialize. 132 | 133 | 134 | Reads a value of type T from the given location. 135 | The location to read from. 136 | The type to read. 137 | An object of type T read from the given location. 138 | 139 | 140 | Reads a value of type T from the given location 141 | without assuming architecture dependent alignment of the addresses. 142 | The location to read from. 143 | The type to read. 144 | An object of type T read from the given location. 145 | 146 | 147 | Reads a value of type T from the given location 148 | without assuming architecture dependent alignment of the addresses. 149 | The location to read from. 150 | The type to read. 151 | An object of type T read from the given location. 152 | 153 | 154 | Returns the size of an object of the given type parameter. 155 | The type of object whose size is retrieved. 156 | The size of an object of type T. 157 | 158 | 159 | Subtracts an element offset from the given reference. 160 | The reference to subtract the offset from. 161 | The offset to subtract. 162 | The type of reference. 163 | A new reference that reflects the subraction of offset from pointer. 164 | 165 | 166 | Subtracts an element offset from the given reference. 167 | The reference to subtract the offset from. 168 | The offset to subtract. 169 | The type of reference. 170 | A new reference that reflects the subraction of offset from pointer. 171 | 172 | 173 | Subtracts a byte offset from the given reference. 174 | The reference to subtract the offset from. 175 | 176 | The type of reference. 177 | A new reference that reflects the subraction of byte offset from pointer. 178 | 179 | 180 | Writes a value of type T to the given location. 181 | The location to write to. 182 | The value to write. 183 | The type of value to write. 184 | 185 | 186 | Writes a value of type T to the given location 187 | without assuming architecture dependent alignment of the addresses. 188 | The location to write to. 189 | The value to write. 190 | The type of value to write. 191 | 192 | 193 | Writes a value of type T to the given location 194 | without assuming architecture dependent alignment of the addresses. 195 | The location to write to. 196 | The value to write. 197 | The type of value to write. 198 | 199 | 200 | -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Release/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/bin/Release/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /GoogleDriveExample/bin/Release/System.Threading.Tasks.Extensions.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | System.Threading.Tasks.Extensions 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Provides a value type that wraps a and a TResult, only one of which is used. 23 | The result. 24 | 25 | 26 | Initializes a new instance of the class using the supplied task that represents the operation. 27 | The task. 28 | The task argument is null. 29 | 30 | 31 | Initializes a new instance of the class using the supplied result of a successful operation. 32 | The result. 33 | 34 | 35 | Retrieves a object that represents this . 36 | The object that is wrapped in this if one exists, or a new object that represents the result. 37 | 38 | 39 | Configures an awaiter for this value. 40 | true to attempt to marshal the continuation back to the captured context; otherwise, false. 41 | The configured awaiter. 42 | 43 | 44 | Creates a method builder for use with an async method. 45 | The created builder. 46 | 47 | 48 | Determines whether the specified object is equal to the current object. 49 | The object to compare with the current object. 50 | true if the specified object is equal to the current object; otherwise, false. 51 | 52 | 53 | Determines whether the specified object is equal to the current object. 54 | The object to compare with the current object. 55 | true if the specified object is equal to the current object; otherwise, false. 56 | 57 | 58 | Creates an awaiter for this value. 59 | The awaiter. 60 | 61 | 62 | Returns the hash code for this instance. 63 | The hash code for the current object. 64 | 65 | 66 | Gets a value that indicates whether this object represents a canceled operation. 67 | true if this object represents a canceled operation; otherwise, false. 68 | 69 | 70 | Gets a value that indicates whether this object represents a completed operation. 71 | true if this object represents a completed operation; otherwise, false. 72 | 73 | 74 | Gets a value that indicates whether this object represents a successfully completed operation. 75 | true if this object represents a successfully completed operation; otherwise, false. 76 | 77 | 78 | Gets a value that indicates whether this object represents a failed operation. 79 | true if this object represents a failed operation; otherwise, false. 80 | 81 | 82 | Compares two values for equality. 83 | The first value to compare. 84 | The second value to compare. 85 | true if the two values are equal; otherwise, false. 86 | 87 | 88 | Determines whether two values are unequal. 89 | The first value to compare. 90 | The seconed value to compare. 91 | true if the two values are not equal; otherwise, false. 92 | 93 | 94 | Gets the result. 95 | The result. 96 | 97 | 98 | Returns a string that represents the current object. 99 | A string that represents the current object. 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | -------------------------------------------------------------------------------- /GoogleDriveExample/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /GoogleDriveExample/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /GoogleDriveExample/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /GoogleDriveExample/obj/Debug/GoogleDriveExample.MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/obj/Debug/GoogleDriveExample.MainForm.resources -------------------------------------------------------------------------------- /GoogleDriveExample/obj/Debug/GoogleDriveExample.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/obj/Debug/GoogleDriveExample.Properties.Resources.resources -------------------------------------------------------------------------------- /GoogleDriveExample/obj/Debug/GoogleDriveExample.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/obj/Debug/GoogleDriveExample.csproj.CopyComplete -------------------------------------------------------------------------------- /GoogleDriveExample/obj/Debug/GoogleDriveExample.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 5c70103027e82857623584107192f8a6c90c2148 2 | -------------------------------------------------------------------------------- /GoogleDriveExample/obj/Debug/GoogleDriveExample.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Debug\GoogleDriveExample.exe.config 2 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Debug\GoogleDriveExample.exe 3 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Debug\GoogleDriveExample.pdb 4 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Debug\Google.Apis.Auth.dll 5 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Debug\Google.Apis.Auth.PlatformServices.dll 6 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Debug\Google.Apis.Core.dll 7 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Debug\Google.Apis.dll 8 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Debug\Google.Apis.Drive.v3.dll 9 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Debug\Google.Apis.PlatformServices.dll 10 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Debug\Newtonsoft.Json.dll 11 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Debug\Google.Apis.pdb 12 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Debug\Google.Apis.xml 13 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Debug\Google.Apis.Auth.pdb 14 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Debug\Google.Apis.Auth.xml 15 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Debug\Google.Apis.Core.pdb 16 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Debug\Google.Apis.Core.xml 17 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Debug\Google.Apis.Drive.v3.pdb 18 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Debug\Google.Apis.Drive.v3.xml 19 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Debug\Newtonsoft.Json.xml 20 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\obj\Debug\GoogleDriveExample.Properties.Resources.resources 21 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\obj\Debug\GoogleDriveExample.csproj.GenerateResource.cache 22 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\obj\Debug\GoogleDriveExample.csproj.CoreCompileInputs.cache 23 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\obj\Debug\GoogleDriveExample.csproj.CopyComplete 24 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\obj\Debug\GoogleDriveExample.exe 25 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\obj\Debug\GoogleDriveExample.pdb 26 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\obj\Debug\GoogleDriveExample.MainForm.resources 27 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Debug\Microsoft.Bcl.AsyncInterfaces.dll 28 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Debug\System.Runtime.CompilerServices.Unsafe.dll 29 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Debug\System.Threading.Tasks.Extensions.dll 30 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Debug\Microsoft.Bcl.AsyncInterfaces.xml 31 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Debug\System.Runtime.CompilerServices.Unsafe.xml 32 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Debug\System.Threading.Tasks.Extensions.xml 33 | -------------------------------------------------------------------------------- /GoogleDriveExample/obj/Debug/GoogleDriveExample.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/obj/Debug/GoogleDriveExample.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /GoogleDriveExample/obj/Debug/GoogleDriveExample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/obj/Debug/GoogleDriveExample.exe -------------------------------------------------------------------------------- /GoogleDriveExample/obj/Debug/GoogleDriveExample.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/obj/Debug/GoogleDriveExample.pdb -------------------------------------------------------------------------------- /GoogleDriveExample/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /GoogleDriveExample/obj/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/obj/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /GoogleDriveExample/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /GoogleDriveExample/obj/Release/GoogleDriveExample.MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/obj/Release/GoogleDriveExample.MainForm.resources -------------------------------------------------------------------------------- /GoogleDriveExample/obj/Release/GoogleDriveExample.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/obj/Release/GoogleDriveExample.Properties.Resources.resources -------------------------------------------------------------------------------- /GoogleDriveExample/obj/Release/GoogleDriveExample.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/obj/Release/GoogleDriveExample.csproj.CopyComplete -------------------------------------------------------------------------------- /GoogleDriveExample/obj/Release/GoogleDriveExample.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 28394e50f4dcf4305d69edf8616d112ca193ff0c 2 | -------------------------------------------------------------------------------- /GoogleDriveExample/obj/Release/GoogleDriveExample.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Release\GoogleDriveExample.exe.config 2 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Release\GoogleDriveExample.exe 3 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Release\GoogleDriveExample.pdb 4 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Release\Google.Apis.Auth.dll 5 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Release\Google.Apis.Auth.PlatformServices.dll 6 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Release\Google.Apis.Core.dll 7 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Release\Google.Apis.dll 8 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Release\Google.Apis.Drive.v3.dll 9 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Release\Google.Apis.PlatformServices.dll 10 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Release\Newtonsoft.Json.dll 11 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Release\Google.Apis.pdb 12 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Release\Google.Apis.xml 13 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Release\Google.Apis.Auth.pdb 14 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Release\Google.Apis.Auth.xml 15 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Release\Google.Apis.Core.pdb 16 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Release\Google.Apis.Core.xml 17 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Release\Google.Apis.Drive.v3.pdb 18 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Release\Google.Apis.Drive.v3.xml 19 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Release\Newtonsoft.Json.xml 20 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\obj\Release\GoogleDriveExample.MainForm.resources 21 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\obj\Release\GoogleDriveExample.Properties.Resources.resources 22 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\obj\Release\GoogleDriveExample.csproj.GenerateResource.cache 23 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\obj\Release\GoogleDriveExample.csproj.CoreCompileInputs.cache 24 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\obj\Release\GoogleDriveExample.csproj.CopyComplete 25 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\obj\Release\GoogleDriveExample.exe 26 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\obj\Release\GoogleDriveExample.pdb 27 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Release\Microsoft.Bcl.AsyncInterfaces.dll 28 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Release\System.Runtime.CompilerServices.Unsafe.dll 29 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Release\System.Threading.Tasks.Extensions.dll 30 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Release\Microsoft.Bcl.AsyncInterfaces.xml 31 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Release\System.Runtime.CompilerServices.Unsafe.xml 32 | D:\Projeler\Makaleler\GoogleDriveExample\GoogleDriveExample\bin\Release\System.Threading.Tasks.Extensions.xml 33 | -------------------------------------------------------------------------------- /GoogleDriveExample/obj/Release/GoogleDriveExample.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/obj/Release/GoogleDriveExample.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /GoogleDriveExample/obj/Release/GoogleDriveExample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/obj/Release/GoogleDriveExample.exe -------------------------------------------------------------------------------- /GoogleDriveExample/obj/Release/GoogleDriveExample.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/GoogleDriveExample/obj/Release/GoogleDriveExample.pdb -------------------------------------------------------------------------------- /GoogleDriveExample/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # google-drive-api-using 2 | google drive api using with c# winforms 3 | 4 | 5 | bu uygulama ile drive dosyalarınızı görüntüleyebilir, indirebilir, silebilir, kopyalama ve taşıma işlemleri yapabilir, yeni klasörler oluşturup dosyalar yükleyebilirsiniz. 6 | 7 | ![app-image](http://enestas.net/upload/images/google-drive-islemler.gif) 8 | -------------------------------------------------------------------------------- /packages/Google.Apis.1.49.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.1.49.0/.signature.p7s -------------------------------------------------------------------------------- /packages/Google.Apis.1.49.0/Google.Apis.1.49.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.1.49.0/Google.Apis.1.49.0.nupkg -------------------------------------------------------------------------------- /packages/Google.Apis.1.49.0/LICENSE: -------------------------------------------------------------------------------- 1 | 2 | 3 | Apache License 4 | Version 2.0, January 2004 5 | http://www.apache.org/licenses/ 6 | 7 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 8 | 9 | 1. Definitions. 10 | 11 | "License" shall mean the terms and conditions for use, reproduction, 12 | and distribution as defined by Sections 1 through 9 of this document. 13 | 14 | "Licensor" shall mean the copyright owner or entity authorized by 15 | the copyright owner that is granting the License. 16 | 17 | "Legal Entity" shall mean the union of the acting entity and all 18 | other entities that control, are controlled by, or are under common 19 | control with that entity. For the purposes of this definition, 20 | "control" means (i) the power, direct or indirect, to cause the 21 | direction or management of such entity, whether by contract or 22 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 23 | outstanding shares, or (iii) beneficial ownership of such entity. 24 | 25 | "You" (or "Your") shall mean an individual or Legal Entity 26 | exercising permissions granted by this License. 27 | 28 | "Source" form shall mean the preferred form for making modifications, 29 | including but not limited to software source code, documentation 30 | source, and configuration files. 31 | 32 | "Object" form shall mean any form resulting from mechanical 33 | transformation or translation of a Source form, including but 34 | not limited to compiled object code, generated documentation, 35 | and conversions to other media types. 36 | 37 | "Work" shall mean the work of authorship, whether in Source or 38 | Object form, made available under the License, as indicated by a 39 | copyright notice that is included in or attached to the work 40 | (an example is provided in the Appendix below). 41 | 42 | "Derivative Works" shall mean any work, whether in Source or Object 43 | form, that is based on (or derived from) the Work and for which the 44 | editorial revisions, annotations, elaborations, or other modifications 45 | represent, as a whole, an original work of authorship. For the purposes 46 | of this License, Derivative Works shall not include works that remain 47 | separable from, or merely link (or bind by name) to the interfaces of, 48 | the Work and Derivative Works thereof. 49 | 50 | "Contribution" shall mean any work of authorship, including 51 | the original version of the Work and any modifications or additions 52 | to that Work or Derivative Works thereof, that is intentionally 53 | submitted to Licensor for inclusion in the Work by the copyright owner 54 | or by an individual or Legal Entity authorized to submit on behalf of 55 | the copyright owner. For the purposes of this definition, "submitted" 56 | means any form of electronic, verbal, or written communication sent 57 | to the Licensor or its representatives, including but not limited to 58 | communication on electronic mailing lists, source code control systems, 59 | and issue tracking systems that are managed by, or on behalf of, the 60 | Licensor for the purpose of discussing and improving the Work, but 61 | excluding communication that is conspicuously marked or otherwise 62 | designated in writing by the copyright owner as "Not a Contribution." 63 | 64 | "Contributor" shall mean Licensor and any individual or Legal Entity 65 | on behalf of whom a Contribution has been received by Licensor and 66 | subsequently incorporated within the Work. 67 | 68 | 2. Grant of Copyright License. Subject to the terms and conditions of 69 | this License, each Contributor hereby grants to You a perpetual, 70 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 71 | copyright license to reproduce, prepare Derivative Works of, 72 | publicly display, publicly perform, sublicense, and distribute the 73 | Work and such Derivative Works in Source or Object form. 74 | 75 | 3. Grant of Patent License. Subject to the terms and conditions of 76 | this License, each Contributor hereby grants to You a perpetual, 77 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 78 | (except as stated in this section) patent license to make, have made, 79 | use, offer to sell, sell, import, and otherwise transfer the Work, 80 | where such license applies only to those patent claims licensable 81 | by such Contributor that are necessarily infringed by their 82 | Contribution(s) alone or by combination of their Contribution(s) 83 | with the Work to which such Contribution(s) was submitted. If You 84 | institute patent litigation against any entity (including a 85 | cross-claim or counterclaim in a lawsuit) alleging that the Work 86 | or a Contribution incorporated within the Work constitutes direct 87 | or contributory patent infringement, then any patent licenses 88 | granted to You under this License for that Work shall terminate 89 | as of the date such litigation is filed. 90 | 91 | 4. Redistribution. You may reproduce and distribute copies of the 92 | Work or Derivative Works thereof in any medium, with or without 93 | modifications, and in Source or Object form, provided that You 94 | meet the following conditions: 95 | 96 | (a) You must give any other recipients of the Work or 97 | Derivative Works a copy of this License; and 98 | 99 | (b) You must cause any modified files to carry prominent notices 100 | stating that You changed the files; and 101 | 102 | (c) You must retain, in the Source form of any Derivative Works 103 | that You distribute, all copyright, patent, trademark, and 104 | attribution notices from the Source form of the Work, 105 | excluding those notices that do not pertain to any part of 106 | the Derivative Works; and 107 | 108 | (d) If the Work includes a "NOTICE" text file as part of its 109 | distribution, then any Derivative Works that You distribute must 110 | include a readable copy of the attribution notices contained 111 | within such NOTICE file, excluding those notices that do not 112 | pertain to any part of the Derivative Works, in at least one 113 | of the following places: within a NOTICE text file distributed 114 | as part of the Derivative Works; within the Source form or 115 | documentation, if provided along with the Derivative Works; or, 116 | within a display generated by the Derivative Works, if and 117 | wherever such third-party notices normally appear. The contents 118 | of the NOTICE file are for informational purposes only and 119 | do not modify the License. You may add Your own attribution 120 | notices within Derivative Works that You distribute, alongside 121 | or as an addendum to the NOTICE text from the Work, provided 122 | that such additional attribution notices cannot be construed 123 | as modifying the License. 124 | 125 | You may add Your own copyright statement to Your modifications and 126 | may provide additional or different license terms and conditions 127 | for use, reproduction, or distribution of Your modifications, or 128 | for any such Derivative Works as a whole, provided Your use, 129 | reproduction, and distribution of the Work otherwise complies with 130 | the conditions stated in this License. 131 | 132 | 5. Submission of Contributions. Unless You explicitly state otherwise, 133 | any Contribution intentionally submitted for inclusion in the Work 134 | by You to the Licensor shall be under the terms and conditions of 135 | this License, without any additional terms or conditions. 136 | Notwithstanding the above, nothing herein shall supersede or modify 137 | the terms of any separate license agreement you may have executed 138 | with Licensor regarding such Contributions. 139 | 140 | 6. Trademarks. This License does not grant permission to use the trade 141 | names, trademarks, service marks, or product names of the Licensor, 142 | except as required for reasonable and customary use in describing the 143 | origin of the Work and reproducing the content of the NOTICE file. 144 | 145 | 7. Disclaimer of Warranty. Unless required by applicable law or 146 | agreed to in writing, Licensor provides the Work (and each 147 | Contributor provides its Contributions) on an "AS IS" BASIS, 148 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 149 | implied, including, without limitation, any warranties or conditions 150 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 151 | PARTICULAR PURPOSE. You are solely responsible for determining the 152 | appropriateness of using or redistributing the Work and assume any 153 | risks associated with Your exercise of permissions under this License. 154 | 155 | 8. Limitation of Liability. In no event and under no legal theory, 156 | whether in tort (including negligence), contract, or otherwise, 157 | unless required by applicable law (such as deliberate and grossly 158 | negligent acts) or agreed to in writing, shall any Contributor be 159 | liable to You for damages, including any direct, indirect, special, 160 | incidental, or consequential damages of any character arising as a 161 | result of this License or out of the use or inability to use the 162 | Work (including but not limited to damages for loss of goodwill, 163 | work stoppage, computer failure or malfunction, or any and all 164 | other commercial damages or losses), even if such Contributor 165 | has been advised of the possibility of such damages. 166 | 167 | 9. Accepting Warranty or Additional Liability. While redistributing 168 | the Work or Derivative Works thereof, You may choose to offer, 169 | and charge a fee for, acceptance of support, warranty, indemnity, 170 | or other liability obligations and/or rights consistent with this 171 | License. However, in accepting such obligations, You may act only 172 | on Your own behalf and on Your sole responsibility, not on behalf 173 | of any other Contributor, and only if You agree to indemnify, 174 | defend, and hold each Contributor harmless for any liability 175 | incurred by, or claims asserted against, such Contributor by reason 176 | of your accepting any such warranty or additional liability. -------------------------------------------------------------------------------- /packages/Google.Apis.1.49.0/NuGetIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.1.49.0/NuGetIcon.png -------------------------------------------------------------------------------- /packages/Google.Apis.1.49.0/lib/net45/Google.Apis.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.1.49.0/lib/net45/Google.Apis.PlatformServices.dll -------------------------------------------------------------------------------- /packages/Google.Apis.1.49.0/lib/net45/Google.Apis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.1.49.0/lib/net45/Google.Apis.dll -------------------------------------------------------------------------------- /packages/Google.Apis.1.49.0/lib/net45/Google.Apis.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.1.49.0/lib/net45/Google.Apis.pdb -------------------------------------------------------------------------------- /packages/Google.Apis.1.49.0/lib/netstandard1.3/Google.Apis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.1.49.0/lib/netstandard1.3/Google.Apis.dll -------------------------------------------------------------------------------- /packages/Google.Apis.1.49.0/lib/netstandard1.3/Google.Apis.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.1.49.0/lib/netstandard1.3/Google.Apis.pdb -------------------------------------------------------------------------------- /packages/Google.Apis.1.49.0/lib/netstandard2.0/Google.Apis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.1.49.0/lib/netstandard2.0/Google.Apis.dll -------------------------------------------------------------------------------- /packages/Google.Apis.1.49.0/lib/netstandard2.0/Google.Apis.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.1.49.0/lib/netstandard2.0/Google.Apis.pdb -------------------------------------------------------------------------------- /packages/Google.Apis.Auth.1.49.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.Auth.1.49.0/.signature.p7s -------------------------------------------------------------------------------- /packages/Google.Apis.Auth.1.49.0/Google.Apis.Auth.1.49.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.Auth.1.49.0/Google.Apis.Auth.1.49.0.nupkg -------------------------------------------------------------------------------- /packages/Google.Apis.Auth.1.49.0/LICENSE: -------------------------------------------------------------------------------- 1 | 2 | 3 | Apache License 4 | Version 2.0, January 2004 5 | http://www.apache.org/licenses/ 6 | 7 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 8 | 9 | 1. Definitions. 10 | 11 | "License" shall mean the terms and conditions for use, reproduction, 12 | and distribution as defined by Sections 1 through 9 of this document. 13 | 14 | "Licensor" shall mean the copyright owner or entity authorized by 15 | the copyright owner that is granting the License. 16 | 17 | "Legal Entity" shall mean the union of the acting entity and all 18 | other entities that control, are controlled by, or are under common 19 | control with that entity. For the purposes of this definition, 20 | "control" means (i) the power, direct or indirect, to cause the 21 | direction or management of such entity, whether by contract or 22 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 23 | outstanding shares, or (iii) beneficial ownership of such entity. 24 | 25 | "You" (or "Your") shall mean an individual or Legal Entity 26 | exercising permissions granted by this License. 27 | 28 | "Source" form shall mean the preferred form for making modifications, 29 | including but not limited to software source code, documentation 30 | source, and configuration files. 31 | 32 | "Object" form shall mean any form resulting from mechanical 33 | transformation or translation of a Source form, including but 34 | not limited to compiled object code, generated documentation, 35 | and conversions to other media types. 36 | 37 | "Work" shall mean the work of authorship, whether in Source or 38 | Object form, made available under the License, as indicated by a 39 | copyright notice that is included in or attached to the work 40 | (an example is provided in the Appendix below). 41 | 42 | "Derivative Works" shall mean any work, whether in Source or Object 43 | form, that is based on (or derived from) the Work and for which the 44 | editorial revisions, annotations, elaborations, or other modifications 45 | represent, as a whole, an original work of authorship. For the purposes 46 | of this License, Derivative Works shall not include works that remain 47 | separable from, or merely link (or bind by name) to the interfaces of, 48 | the Work and Derivative Works thereof. 49 | 50 | "Contribution" shall mean any work of authorship, including 51 | the original version of the Work and any modifications or additions 52 | to that Work or Derivative Works thereof, that is intentionally 53 | submitted to Licensor for inclusion in the Work by the copyright owner 54 | or by an individual or Legal Entity authorized to submit on behalf of 55 | the copyright owner. For the purposes of this definition, "submitted" 56 | means any form of electronic, verbal, or written communication sent 57 | to the Licensor or its representatives, including but not limited to 58 | communication on electronic mailing lists, source code control systems, 59 | and issue tracking systems that are managed by, or on behalf of, the 60 | Licensor for the purpose of discussing and improving the Work, but 61 | excluding communication that is conspicuously marked or otherwise 62 | designated in writing by the copyright owner as "Not a Contribution." 63 | 64 | "Contributor" shall mean Licensor and any individual or Legal Entity 65 | on behalf of whom a Contribution has been received by Licensor and 66 | subsequently incorporated within the Work. 67 | 68 | 2. Grant of Copyright License. Subject to the terms and conditions of 69 | this License, each Contributor hereby grants to You a perpetual, 70 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 71 | copyright license to reproduce, prepare Derivative Works of, 72 | publicly display, publicly perform, sublicense, and distribute the 73 | Work and such Derivative Works in Source or Object form. 74 | 75 | 3. Grant of Patent License. Subject to the terms and conditions of 76 | this License, each Contributor hereby grants to You a perpetual, 77 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 78 | (except as stated in this section) patent license to make, have made, 79 | use, offer to sell, sell, import, and otherwise transfer the Work, 80 | where such license applies only to those patent claims licensable 81 | by such Contributor that are necessarily infringed by their 82 | Contribution(s) alone or by combination of their Contribution(s) 83 | with the Work to which such Contribution(s) was submitted. If You 84 | institute patent litigation against any entity (including a 85 | cross-claim or counterclaim in a lawsuit) alleging that the Work 86 | or a Contribution incorporated within the Work constitutes direct 87 | or contributory patent infringement, then any patent licenses 88 | granted to You under this License for that Work shall terminate 89 | as of the date such litigation is filed. 90 | 91 | 4. Redistribution. You may reproduce and distribute copies of the 92 | Work or Derivative Works thereof in any medium, with or without 93 | modifications, and in Source or Object form, provided that You 94 | meet the following conditions: 95 | 96 | (a) You must give any other recipients of the Work or 97 | Derivative Works a copy of this License; and 98 | 99 | (b) You must cause any modified files to carry prominent notices 100 | stating that You changed the files; and 101 | 102 | (c) You must retain, in the Source form of any Derivative Works 103 | that You distribute, all copyright, patent, trademark, and 104 | attribution notices from the Source form of the Work, 105 | excluding those notices that do not pertain to any part of 106 | the Derivative Works; and 107 | 108 | (d) If the Work includes a "NOTICE" text file as part of its 109 | distribution, then any Derivative Works that You distribute must 110 | include a readable copy of the attribution notices contained 111 | within such NOTICE file, excluding those notices that do not 112 | pertain to any part of the Derivative Works, in at least one 113 | of the following places: within a NOTICE text file distributed 114 | as part of the Derivative Works; within the Source form or 115 | documentation, if provided along with the Derivative Works; or, 116 | within a display generated by the Derivative Works, if and 117 | wherever such third-party notices normally appear. The contents 118 | of the NOTICE file are for informational purposes only and 119 | do not modify the License. You may add Your own attribution 120 | notices within Derivative Works that You distribute, alongside 121 | or as an addendum to the NOTICE text from the Work, provided 122 | that such additional attribution notices cannot be construed 123 | as modifying the License. 124 | 125 | You may add Your own copyright statement to Your modifications and 126 | may provide additional or different license terms and conditions 127 | for use, reproduction, or distribution of Your modifications, or 128 | for any such Derivative Works as a whole, provided Your use, 129 | reproduction, and distribution of the Work otherwise complies with 130 | the conditions stated in this License. 131 | 132 | 5. Submission of Contributions. Unless You explicitly state otherwise, 133 | any Contribution intentionally submitted for inclusion in the Work 134 | by You to the Licensor shall be under the terms and conditions of 135 | this License, without any additional terms or conditions. 136 | Notwithstanding the above, nothing herein shall supersede or modify 137 | the terms of any separate license agreement you may have executed 138 | with Licensor regarding such Contributions. 139 | 140 | 6. Trademarks. This License does not grant permission to use the trade 141 | names, trademarks, service marks, or product names of the Licensor, 142 | except as required for reasonable and customary use in describing the 143 | origin of the Work and reproducing the content of the NOTICE file. 144 | 145 | 7. Disclaimer of Warranty. Unless required by applicable law or 146 | agreed to in writing, Licensor provides the Work (and each 147 | Contributor provides its Contributions) on an "AS IS" BASIS, 148 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 149 | implied, including, without limitation, any warranties or conditions 150 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 151 | PARTICULAR PURPOSE. You are solely responsible for determining the 152 | appropriateness of using or redistributing the Work and assume any 153 | risks associated with Your exercise of permissions under this License. 154 | 155 | 8. Limitation of Liability. In no event and under no legal theory, 156 | whether in tort (including negligence), contract, or otherwise, 157 | unless required by applicable law (such as deliberate and grossly 158 | negligent acts) or agreed to in writing, shall any Contributor be 159 | liable to You for damages, including any direct, indirect, special, 160 | incidental, or consequential damages of any character arising as a 161 | result of this License or out of the use or inability to use the 162 | Work (including but not limited to damages for loss of goodwill, 163 | work stoppage, computer failure or malfunction, or any and all 164 | other commercial damages or losses), even if such Contributor 165 | has been advised of the possibility of such damages. 166 | 167 | 9. Accepting Warranty or Additional Liability. While redistributing 168 | the Work or Derivative Works thereof, You may choose to offer, 169 | and charge a fee for, acceptance of support, warranty, indemnity, 170 | or other liability obligations and/or rights consistent with this 171 | License. However, in accepting such obligations, You may act only 172 | on Your own behalf and on Your sole responsibility, not on behalf 173 | of any other Contributor, and only if You agree to indemnify, 174 | defend, and hold each Contributor harmless for any liability 175 | incurred by, or claims asserted against, such Contributor by reason 176 | of your accepting any such warranty or additional liability. -------------------------------------------------------------------------------- /packages/Google.Apis.Auth.1.49.0/NuGetIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.Auth.1.49.0/NuGetIcon.png -------------------------------------------------------------------------------- /packages/Google.Apis.Auth.1.49.0/lib/net45/Google.Apis.Auth.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.Auth.1.49.0/lib/net45/Google.Apis.Auth.PlatformServices.dll -------------------------------------------------------------------------------- /packages/Google.Apis.Auth.1.49.0/lib/net45/Google.Apis.Auth.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.Auth.1.49.0/lib/net45/Google.Apis.Auth.dll -------------------------------------------------------------------------------- /packages/Google.Apis.Auth.1.49.0/lib/net45/Google.Apis.Auth.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.Auth.1.49.0/lib/net45/Google.Apis.Auth.pdb -------------------------------------------------------------------------------- /packages/Google.Apis.Auth.1.49.0/lib/netstandard1.3/Google.Apis.Auth.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.Auth.1.49.0/lib/netstandard1.3/Google.Apis.Auth.PlatformServices.dll -------------------------------------------------------------------------------- /packages/Google.Apis.Auth.1.49.0/lib/netstandard1.3/Google.Apis.Auth.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.Auth.1.49.0/lib/netstandard1.3/Google.Apis.Auth.dll -------------------------------------------------------------------------------- /packages/Google.Apis.Auth.1.49.0/lib/netstandard1.3/Google.Apis.Auth.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.Auth.1.49.0/lib/netstandard1.3/Google.Apis.Auth.pdb -------------------------------------------------------------------------------- /packages/Google.Apis.Auth.1.49.0/lib/netstandard2.0/Google.Apis.Auth.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.Auth.1.49.0/lib/netstandard2.0/Google.Apis.Auth.PlatformServices.dll -------------------------------------------------------------------------------- /packages/Google.Apis.Auth.1.49.0/lib/netstandard2.0/Google.Apis.Auth.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.Auth.1.49.0/lib/netstandard2.0/Google.Apis.Auth.dll -------------------------------------------------------------------------------- /packages/Google.Apis.Auth.1.49.0/lib/netstandard2.0/Google.Apis.Auth.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.Auth.1.49.0/lib/netstandard2.0/Google.Apis.Auth.pdb -------------------------------------------------------------------------------- /packages/Google.Apis.Core.1.49.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.Core.1.49.0/.signature.p7s -------------------------------------------------------------------------------- /packages/Google.Apis.Core.1.49.0/Google.Apis.Core.1.49.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.Core.1.49.0/Google.Apis.Core.1.49.0.nupkg -------------------------------------------------------------------------------- /packages/Google.Apis.Core.1.49.0/LICENSE: -------------------------------------------------------------------------------- 1 | 2 | 3 | Apache License 4 | Version 2.0, January 2004 5 | http://www.apache.org/licenses/ 6 | 7 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 8 | 9 | 1. Definitions. 10 | 11 | "License" shall mean the terms and conditions for use, reproduction, 12 | and distribution as defined by Sections 1 through 9 of this document. 13 | 14 | "Licensor" shall mean the copyright owner or entity authorized by 15 | the copyright owner that is granting the License. 16 | 17 | "Legal Entity" shall mean the union of the acting entity and all 18 | other entities that control, are controlled by, or are under common 19 | control with that entity. For the purposes of this definition, 20 | "control" means (i) the power, direct or indirect, to cause the 21 | direction or management of such entity, whether by contract or 22 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 23 | outstanding shares, or (iii) beneficial ownership of such entity. 24 | 25 | "You" (or "Your") shall mean an individual or Legal Entity 26 | exercising permissions granted by this License. 27 | 28 | "Source" form shall mean the preferred form for making modifications, 29 | including but not limited to software source code, documentation 30 | source, and configuration files. 31 | 32 | "Object" form shall mean any form resulting from mechanical 33 | transformation or translation of a Source form, including but 34 | not limited to compiled object code, generated documentation, 35 | and conversions to other media types. 36 | 37 | "Work" shall mean the work of authorship, whether in Source or 38 | Object form, made available under the License, as indicated by a 39 | copyright notice that is included in or attached to the work 40 | (an example is provided in the Appendix below). 41 | 42 | "Derivative Works" shall mean any work, whether in Source or Object 43 | form, that is based on (or derived from) the Work and for which the 44 | editorial revisions, annotations, elaborations, or other modifications 45 | represent, as a whole, an original work of authorship. For the purposes 46 | of this License, Derivative Works shall not include works that remain 47 | separable from, or merely link (or bind by name) to the interfaces of, 48 | the Work and Derivative Works thereof. 49 | 50 | "Contribution" shall mean any work of authorship, including 51 | the original version of the Work and any modifications or additions 52 | to that Work or Derivative Works thereof, that is intentionally 53 | submitted to Licensor for inclusion in the Work by the copyright owner 54 | or by an individual or Legal Entity authorized to submit on behalf of 55 | the copyright owner. For the purposes of this definition, "submitted" 56 | means any form of electronic, verbal, or written communication sent 57 | to the Licensor or its representatives, including but not limited to 58 | communication on electronic mailing lists, source code control systems, 59 | and issue tracking systems that are managed by, or on behalf of, the 60 | Licensor for the purpose of discussing and improving the Work, but 61 | excluding communication that is conspicuously marked or otherwise 62 | designated in writing by the copyright owner as "Not a Contribution." 63 | 64 | "Contributor" shall mean Licensor and any individual or Legal Entity 65 | on behalf of whom a Contribution has been received by Licensor and 66 | subsequently incorporated within the Work. 67 | 68 | 2. Grant of Copyright License. Subject to the terms and conditions of 69 | this License, each Contributor hereby grants to You a perpetual, 70 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 71 | copyright license to reproduce, prepare Derivative Works of, 72 | publicly display, publicly perform, sublicense, and distribute the 73 | Work and such Derivative Works in Source or Object form. 74 | 75 | 3. Grant of Patent License. Subject to the terms and conditions of 76 | this License, each Contributor hereby grants to You a perpetual, 77 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 78 | (except as stated in this section) patent license to make, have made, 79 | use, offer to sell, sell, import, and otherwise transfer the Work, 80 | where such license applies only to those patent claims licensable 81 | by such Contributor that are necessarily infringed by their 82 | Contribution(s) alone or by combination of their Contribution(s) 83 | with the Work to which such Contribution(s) was submitted. If You 84 | institute patent litigation against any entity (including a 85 | cross-claim or counterclaim in a lawsuit) alleging that the Work 86 | or a Contribution incorporated within the Work constitutes direct 87 | or contributory patent infringement, then any patent licenses 88 | granted to You under this License for that Work shall terminate 89 | as of the date such litigation is filed. 90 | 91 | 4. Redistribution. You may reproduce and distribute copies of the 92 | Work or Derivative Works thereof in any medium, with or without 93 | modifications, and in Source or Object form, provided that You 94 | meet the following conditions: 95 | 96 | (a) You must give any other recipients of the Work or 97 | Derivative Works a copy of this License; and 98 | 99 | (b) You must cause any modified files to carry prominent notices 100 | stating that You changed the files; and 101 | 102 | (c) You must retain, in the Source form of any Derivative Works 103 | that You distribute, all copyright, patent, trademark, and 104 | attribution notices from the Source form of the Work, 105 | excluding those notices that do not pertain to any part of 106 | the Derivative Works; and 107 | 108 | (d) If the Work includes a "NOTICE" text file as part of its 109 | distribution, then any Derivative Works that You distribute must 110 | include a readable copy of the attribution notices contained 111 | within such NOTICE file, excluding those notices that do not 112 | pertain to any part of the Derivative Works, in at least one 113 | of the following places: within a NOTICE text file distributed 114 | as part of the Derivative Works; within the Source form or 115 | documentation, if provided along with the Derivative Works; or, 116 | within a display generated by the Derivative Works, if and 117 | wherever such third-party notices normally appear. The contents 118 | of the NOTICE file are for informational purposes only and 119 | do not modify the License. You may add Your own attribution 120 | notices within Derivative Works that You distribute, alongside 121 | or as an addendum to the NOTICE text from the Work, provided 122 | that such additional attribution notices cannot be construed 123 | as modifying the License. 124 | 125 | You may add Your own copyright statement to Your modifications and 126 | may provide additional or different license terms and conditions 127 | for use, reproduction, or distribution of Your modifications, or 128 | for any such Derivative Works as a whole, provided Your use, 129 | reproduction, and distribution of the Work otherwise complies with 130 | the conditions stated in this License. 131 | 132 | 5. Submission of Contributions. Unless You explicitly state otherwise, 133 | any Contribution intentionally submitted for inclusion in the Work 134 | by You to the Licensor shall be under the terms and conditions of 135 | this License, without any additional terms or conditions. 136 | Notwithstanding the above, nothing herein shall supersede or modify 137 | the terms of any separate license agreement you may have executed 138 | with Licensor regarding such Contributions. 139 | 140 | 6. Trademarks. This License does not grant permission to use the trade 141 | names, trademarks, service marks, or product names of the Licensor, 142 | except as required for reasonable and customary use in describing the 143 | origin of the Work and reproducing the content of the NOTICE file. 144 | 145 | 7. Disclaimer of Warranty. Unless required by applicable law or 146 | agreed to in writing, Licensor provides the Work (and each 147 | Contributor provides its Contributions) on an "AS IS" BASIS, 148 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 149 | implied, including, without limitation, any warranties or conditions 150 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 151 | PARTICULAR PURPOSE. You are solely responsible for determining the 152 | appropriateness of using or redistributing the Work and assume any 153 | risks associated with Your exercise of permissions under this License. 154 | 155 | 8. Limitation of Liability. In no event and under no legal theory, 156 | whether in tort (including negligence), contract, or otherwise, 157 | unless required by applicable law (such as deliberate and grossly 158 | negligent acts) or agreed to in writing, shall any Contributor be 159 | liable to You for damages, including any direct, indirect, special, 160 | incidental, or consequential damages of any character arising as a 161 | result of this License or out of the use or inability to use the 162 | Work (including but not limited to damages for loss of goodwill, 163 | work stoppage, computer failure or malfunction, or any and all 164 | other commercial damages or losses), even if such Contributor 165 | has been advised of the possibility of such damages. 166 | 167 | 9. Accepting Warranty or Additional Liability. While redistributing 168 | the Work or Derivative Works thereof, You may choose to offer, 169 | and charge a fee for, acceptance of support, warranty, indemnity, 170 | or other liability obligations and/or rights consistent with this 171 | License. However, in accepting such obligations, You may act only 172 | on Your own behalf and on Your sole responsibility, not on behalf 173 | of any other Contributor, and only if You agree to indemnify, 174 | defend, and hold each Contributor harmless for any liability 175 | incurred by, or claims asserted against, such Contributor by reason 176 | of your accepting any such warranty or additional liability. -------------------------------------------------------------------------------- /packages/Google.Apis.Core.1.49.0/NuGetIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.Core.1.49.0/NuGetIcon.png -------------------------------------------------------------------------------- /packages/Google.Apis.Core.1.49.0/lib/net45/Google.Apis.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.Core.1.49.0/lib/net45/Google.Apis.Core.dll -------------------------------------------------------------------------------- /packages/Google.Apis.Core.1.49.0/lib/net45/Google.Apis.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.Core.1.49.0/lib/net45/Google.Apis.Core.pdb -------------------------------------------------------------------------------- /packages/Google.Apis.Core.1.49.0/lib/netstandard1.3/Google.Apis.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.Core.1.49.0/lib/netstandard1.3/Google.Apis.Core.dll -------------------------------------------------------------------------------- /packages/Google.Apis.Core.1.49.0/lib/netstandard1.3/Google.Apis.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.Core.1.49.0/lib/netstandard1.3/Google.Apis.Core.pdb -------------------------------------------------------------------------------- /packages/Google.Apis.Core.1.49.0/lib/netstandard2.0/Google.Apis.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.Core.1.49.0/lib/netstandard2.0/Google.Apis.Core.dll -------------------------------------------------------------------------------- /packages/Google.Apis.Core.1.49.0/lib/netstandard2.0/Google.Apis.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.Core.1.49.0/lib/netstandard2.0/Google.Apis.Core.pdb -------------------------------------------------------------------------------- /packages/Google.Apis.Drive.v3.1.49.0.2060/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.Drive.v3.1.49.0.2060/.signature.p7s -------------------------------------------------------------------------------- /packages/Google.Apis.Drive.v3.1.49.0.2060/Google.Apis.Drive.v3.1.49.0.2060.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.Drive.v3.1.49.0.2060/Google.Apis.Drive.v3.1.49.0.2060.nupkg -------------------------------------------------------------------------------- /packages/Google.Apis.Drive.v3.1.49.0.2060/LICENSE: -------------------------------------------------------------------------------- 1 | 2 | 3 | Apache License 4 | Version 2.0, January 2004 5 | http://www.apache.org/licenses/ 6 | 7 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 8 | 9 | 1. Definitions. 10 | 11 | "License" shall mean the terms and conditions for use, reproduction, 12 | and distribution as defined by Sections 1 through 9 of this document. 13 | 14 | "Licensor" shall mean the copyright owner or entity authorized by 15 | the copyright owner that is granting the License. 16 | 17 | "Legal Entity" shall mean the union of the acting entity and all 18 | other entities that control, are controlled by, or are under common 19 | control with that entity. For the purposes of this definition, 20 | "control" means (i) the power, direct or indirect, to cause the 21 | direction or management of such entity, whether by contract or 22 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 23 | outstanding shares, or (iii) beneficial ownership of such entity. 24 | 25 | "You" (or "Your") shall mean an individual or Legal Entity 26 | exercising permissions granted by this License. 27 | 28 | "Source" form shall mean the preferred form for making modifications, 29 | including but not limited to software source code, documentation 30 | source, and configuration files. 31 | 32 | "Object" form shall mean any form resulting from mechanical 33 | transformation or translation of a Source form, including but 34 | not limited to compiled object code, generated documentation, 35 | and conversions to other media types. 36 | 37 | "Work" shall mean the work of authorship, whether in Source or 38 | Object form, made available under the License, as indicated by a 39 | copyright notice that is included in or attached to the work 40 | (an example is provided in the Appendix below). 41 | 42 | "Derivative Works" shall mean any work, whether in Source or Object 43 | form, that is based on (or derived from) the Work and for which the 44 | editorial revisions, annotations, elaborations, or other modifications 45 | represent, as a whole, an original work of authorship. For the purposes 46 | of this License, Derivative Works shall not include works that remain 47 | separable from, or merely link (or bind by name) to the interfaces of, 48 | the Work and Derivative Works thereof. 49 | 50 | "Contribution" shall mean any work of authorship, including 51 | the original version of the Work and any modifications or additions 52 | to that Work or Derivative Works thereof, that is intentionally 53 | submitted to Licensor for inclusion in the Work by the copyright owner 54 | or by an individual or Legal Entity authorized to submit on behalf of 55 | the copyright owner. For the purposes of this definition, "submitted" 56 | means any form of electronic, verbal, or written communication sent 57 | to the Licensor or its representatives, including but not limited to 58 | communication on electronic mailing lists, source code control systems, 59 | and issue tracking systems that are managed by, or on behalf of, the 60 | Licensor for the purpose of discussing and improving the Work, but 61 | excluding communication that is conspicuously marked or otherwise 62 | designated in writing by the copyright owner as "Not a Contribution." 63 | 64 | "Contributor" shall mean Licensor and any individual or Legal Entity 65 | on behalf of whom a Contribution has been received by Licensor and 66 | subsequently incorporated within the Work. 67 | 68 | 2. Grant of Copyright License. Subject to the terms and conditions of 69 | this License, each Contributor hereby grants to You a perpetual, 70 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 71 | copyright license to reproduce, prepare Derivative Works of, 72 | publicly display, publicly perform, sublicense, and distribute the 73 | Work and such Derivative Works in Source or Object form. 74 | 75 | 3. Grant of Patent License. Subject to the terms and conditions of 76 | this License, each Contributor hereby grants to You a perpetual, 77 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 78 | (except as stated in this section) patent license to make, have made, 79 | use, offer to sell, sell, import, and otherwise transfer the Work, 80 | where such license applies only to those patent claims licensable 81 | by such Contributor that are necessarily infringed by their 82 | Contribution(s) alone or by combination of their Contribution(s) 83 | with the Work to which such Contribution(s) was submitted. If You 84 | institute patent litigation against any entity (including a 85 | cross-claim or counterclaim in a lawsuit) alleging that the Work 86 | or a Contribution incorporated within the Work constitutes direct 87 | or contributory patent infringement, then any patent licenses 88 | granted to You under this License for that Work shall terminate 89 | as of the date such litigation is filed. 90 | 91 | 4. Redistribution. You may reproduce and distribute copies of the 92 | Work or Derivative Works thereof in any medium, with or without 93 | modifications, and in Source or Object form, provided that You 94 | meet the following conditions: 95 | 96 | (a) You must give any other recipients of the Work or 97 | Derivative Works a copy of this License; and 98 | 99 | (b) You must cause any modified files to carry prominent notices 100 | stating that You changed the files; and 101 | 102 | (c) You must retain, in the Source form of any Derivative Works 103 | that You distribute, all copyright, patent, trademark, and 104 | attribution notices from the Source form of the Work, 105 | excluding those notices that do not pertain to any part of 106 | the Derivative Works; and 107 | 108 | (d) If the Work includes a "NOTICE" text file as part of its 109 | distribution, then any Derivative Works that You distribute must 110 | include a readable copy of the attribution notices contained 111 | within such NOTICE file, excluding those notices that do not 112 | pertain to any part of the Derivative Works, in at least one 113 | of the following places: within a NOTICE text file distributed 114 | as part of the Derivative Works; within the Source form or 115 | documentation, if provided along with the Derivative Works; or, 116 | within a display generated by the Derivative Works, if and 117 | wherever such third-party notices normally appear. The contents 118 | of the NOTICE file are for informational purposes only and 119 | do not modify the License. You may add Your own attribution 120 | notices within Derivative Works that You distribute, alongside 121 | or as an addendum to the NOTICE text from the Work, provided 122 | that such additional attribution notices cannot be construed 123 | as modifying the License. 124 | 125 | You may add Your own copyright statement to Your modifications and 126 | may provide additional or different license terms and conditions 127 | for use, reproduction, or distribution of Your modifications, or 128 | for any such Derivative Works as a whole, provided Your use, 129 | reproduction, and distribution of the Work otherwise complies with 130 | the conditions stated in this License. 131 | 132 | 5. Submission of Contributions. Unless You explicitly state otherwise, 133 | any Contribution intentionally submitted for inclusion in the Work 134 | by You to the Licensor shall be under the terms and conditions of 135 | this License, without any additional terms or conditions. 136 | Notwithstanding the above, nothing herein shall supersede or modify 137 | the terms of any separate license agreement you may have executed 138 | with Licensor regarding such Contributions. 139 | 140 | 6. Trademarks. This License does not grant permission to use the trade 141 | names, trademarks, service marks, or product names of the Licensor, 142 | except as required for reasonable and customary use in describing the 143 | origin of the Work and reproducing the content of the NOTICE file. 144 | 145 | 7. Disclaimer of Warranty. Unless required by applicable law or 146 | agreed to in writing, Licensor provides the Work (and each 147 | Contributor provides its Contributions) on an "AS IS" BASIS, 148 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 149 | implied, including, without limitation, any warranties or conditions 150 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 151 | PARTICULAR PURPOSE. You are solely responsible for determining the 152 | appropriateness of using or redistributing the Work and assume any 153 | risks associated with Your exercise of permissions under this License. 154 | 155 | 8. Limitation of Liability. In no event and under no legal theory, 156 | whether in tort (including negligence), contract, or otherwise, 157 | unless required by applicable law (such as deliberate and grossly 158 | negligent acts) or agreed to in writing, shall any Contributor be 159 | liable to You for damages, including any direct, indirect, special, 160 | incidental, or consequential damages of any character arising as a 161 | result of this License or out of the use or inability to use the 162 | Work (including but not limited to damages for loss of goodwill, 163 | work stoppage, computer failure or malfunction, or any and all 164 | other commercial damages or losses), even if such Contributor 165 | has been advised of the possibility of such damages. 166 | 167 | 9. Accepting Warranty or Additional Liability. While redistributing 168 | the Work or Derivative Works thereof, You may choose to offer, 169 | and charge a fee for, acceptance of support, warranty, indemnity, 170 | or other liability obligations and/or rights consistent with this 171 | License. However, in accepting such obligations, You may act only 172 | on Your own behalf and on Your sole responsibility, not on behalf 173 | of any other Contributor, and only if You agree to indemnify, 174 | defend, and hold each Contributor harmless for any liability 175 | incurred by, or claims asserted against, such Contributor by reason 176 | of your accepting any such warranty or additional liability. -------------------------------------------------------------------------------- /packages/Google.Apis.Drive.v3.1.49.0.2060/lib/net40/Google.Apis.Drive.v3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.Drive.v3.1.49.0.2060/lib/net40/Google.Apis.Drive.v3.dll -------------------------------------------------------------------------------- /packages/Google.Apis.Drive.v3.1.49.0.2060/lib/net40/Google.Apis.Drive.v3.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.Drive.v3.1.49.0.2060/lib/net40/Google.Apis.Drive.v3.pdb -------------------------------------------------------------------------------- /packages/Google.Apis.Drive.v3.1.49.0.2060/lib/net45/Google.Apis.Drive.v3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.Drive.v3.1.49.0.2060/lib/net45/Google.Apis.Drive.v3.dll -------------------------------------------------------------------------------- /packages/Google.Apis.Drive.v3.1.49.0.2060/lib/net45/Google.Apis.Drive.v3.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.Drive.v3.1.49.0.2060/lib/net45/Google.Apis.Drive.v3.pdb -------------------------------------------------------------------------------- /packages/Google.Apis.Drive.v3.1.49.0.2060/lib/netstandard1.0/Google.Apis.Drive.v3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.Drive.v3.1.49.0.2060/lib/netstandard1.0/Google.Apis.Drive.v3.dll -------------------------------------------------------------------------------- /packages/Google.Apis.Drive.v3.1.49.0.2060/lib/netstandard1.0/Google.Apis.Drive.v3.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.Drive.v3.1.49.0.2060/lib/netstandard1.0/Google.Apis.Drive.v3.pdb -------------------------------------------------------------------------------- /packages/Google.Apis.Drive.v3.1.49.0.2060/lib/netstandard1.3/Google.Apis.Drive.v3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.Drive.v3.1.49.0.2060/lib/netstandard1.3/Google.Apis.Drive.v3.dll -------------------------------------------------------------------------------- /packages/Google.Apis.Drive.v3.1.49.0.2060/lib/netstandard1.3/Google.Apis.Drive.v3.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.Drive.v3.1.49.0.2060/lib/netstandard1.3/Google.Apis.Drive.v3.pdb -------------------------------------------------------------------------------- /packages/Google.Apis.Drive.v3.1.49.0.2060/lib/netstandard2.0/Google.Apis.Drive.v3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.Drive.v3.1.49.0.2060/lib/netstandard2.0/Google.Apis.Drive.v3.dll -------------------------------------------------------------------------------- /packages/Google.Apis.Drive.v3.1.49.0.2060/lib/netstandard2.0/Google.Apis.Drive.v3.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Google.Apis.Drive.v3.1.49.0.2060/lib/netstandard2.0/Google.Apis.Drive.v3.pdb -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.1.1.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Microsoft.Bcl.AsyncInterfaces.1.1.1/.signature.p7s -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.1.1.1/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Microsoft.Bcl.AsyncInterfaces.1.1.1/Icon.png -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.1.1.1/LICENSE.TXT: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) .NET Foundation and Contributors 4 | 5 | All rights reserved. 6 | 7 | Permission is hereby granted, free of charge, to any person obtaining a copy 8 | of this software and associated documentation files (the "Software"), to deal 9 | in the Software without restriction, including without limitation the rights 10 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 11 | copies of the Software, and to permit persons to whom the Software is 12 | furnished to do so, subject to the following conditions: 13 | 14 | The above copyright notice and this permission notice shall be included in all 15 | copies or substantial portions of the Software. 16 | 17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 20 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 21 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 22 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 23 | SOFTWARE. 24 | -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.1.1.1/Microsoft.Bcl.AsyncInterfaces.1.1.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Microsoft.Bcl.AsyncInterfaces.1.1.1/Microsoft.Bcl.AsyncInterfaces.1.1.1.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.1.1.1/lib/net461/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Microsoft.Bcl.AsyncInterfaces.1.1.1/lib/net461/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.1.1.1/lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Microsoft.Bcl.AsyncInterfaces.1.1.1/lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.1.1.1/lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Microsoft.Bcl.AsyncInterfaces.1.1.1/lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.1.1.1/lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.Bcl.AsyncInterfaces 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.1.1.1/ref/net461/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Microsoft.Bcl.AsyncInterfaces.1.1.1/ref/net461/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.1.1.1/ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Microsoft.Bcl.AsyncInterfaces.1.1.1/ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.1.1.1/ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Microsoft.Bcl.AsyncInterfaces.1.1.1/ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.1.1.1/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Microsoft.Bcl.AsyncInterfaces.1.1.1/useSharedDesignerContext.txt -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.AsyncInterfaces.1.1.1/version.txt: -------------------------------------------------------------------------------- 1 | c4164928b270ee2369808ab347d33423ef765216 2 | -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Newtonsoft.Json.12.0.3/.signature.p7s -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2007 James Newton-King 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | the Software, and to permit persons to whom the Software is furnished to do so, 10 | subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/Newtonsoft.Json.12.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Newtonsoft.Json.12.0.3/Newtonsoft.Json.12.0.3.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/packageIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/Newtonsoft.Json.12.0.3/packageIcon.png -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.5.3/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.5.3/LICENSE.TXT: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) .NET Foundation and Contributors 4 | 5 | All rights reserved. 6 | 7 | Permission is hereby granted, free of charge, to any person obtaining a copy 8 | of this software and associated documentation files (the "Software"), to deal 9 | in the Software without restriction, including without limitation the rights 10 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 11 | copies of the Software, and to permit persons to whom the Software is 12 | furnished to do so, subject to the following conditions: 13 | 14 | The above copyright notice and this permission notice shall be included in all 15 | copies or substantial portions of the Software. 16 | 17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 20 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 21 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 22 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 23 | SOFTWARE. 24 | -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.5.3/System.Runtime.CompilerServices.Unsafe.4.5.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/System.Runtime.CompilerServices.Unsafe.4.5.3.nupkg -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.5.3/lib/net461/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/lib/net461/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.5.3/lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.5.3/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.5.3/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.5.3/ref/net461/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/ref/net461/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.5.3/ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.5.3/ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.5.3/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/useSharedDesignerContext.txt -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.5.3/version.txt: -------------------------------------------------------------------------------- 1 | 7601f4f6225089ffb291dc7d58293c7bbf5c5d4f 2 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/System.Threading.Tasks.Extensions.4.5.4/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/LICENSE.TXT: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) .NET Foundation and Contributors 4 | 5 | All rights reserved. 6 | 7 | Permission is hereby granted, free of charge, to any person obtaining a copy 8 | of this software and associated documentation files (the "Software"), to deal 9 | in the Software without restriction, including without limitation the rights 10 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 11 | copies of the Software, and to permit persons to whom the Software is 12 | furnished to do so, subject to the following conditions: 13 | 14 | The above copyright notice and this permission notice shall be included in all 15 | copies or substantial portions of the Software. 16 | 17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 20 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 21 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 22 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 23 | SOFTWARE. 24 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/System.Threading.Tasks.Extensions.4.5.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/System.Threading.Tasks.Extensions.4.5.4/System.Threading.Tasks.Extensions.4.5.4.nupkg -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/System.Threading.Tasks.Extensions.4.5.4/lib/MonoAndroid10/_._ -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/System.Threading.Tasks.Extensions.4.5.4/lib/MonoTouch10/_._ -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/net461/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/System.Threading.Tasks.Extensions.4.5.4/lib/net461/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/net461/System.Threading.Tasks.Extensions.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | System.Threading.Tasks.Extensions 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Provides a value type that wraps a and a TResult, only one of which is used. 23 | The result. 24 | 25 | 26 | Initializes a new instance of the class using the supplied task that represents the operation. 27 | The task. 28 | The task argument is null. 29 | 30 | 31 | Initializes a new instance of the class using the supplied result of a successful operation. 32 | The result. 33 | 34 | 35 | Retrieves a object that represents this . 36 | The object that is wrapped in this if one exists, or a new object that represents the result. 37 | 38 | 39 | Configures an awaiter for this value. 40 | true to attempt to marshal the continuation back to the captured context; otherwise, false. 41 | The configured awaiter. 42 | 43 | 44 | Creates a method builder for use with an async method. 45 | The created builder. 46 | 47 | 48 | Determines whether the specified object is equal to the current object. 49 | The object to compare with the current object. 50 | true if the specified object is equal to the current object; otherwise, false. 51 | 52 | 53 | Determines whether the specified object is equal to the current object. 54 | The object to compare with the current object. 55 | true if the specified object is equal to the current object; otherwise, false. 56 | 57 | 58 | Creates an awaiter for this value. 59 | The awaiter. 60 | 61 | 62 | Returns the hash code for this instance. 63 | The hash code for the current object. 64 | 65 | 66 | Gets a value that indicates whether this object represents a canceled operation. 67 | true if this object represents a canceled operation; otherwise, false. 68 | 69 | 70 | Gets a value that indicates whether this object represents a completed operation. 71 | true if this object represents a completed operation; otherwise, false. 72 | 73 | 74 | Gets a value that indicates whether this object represents a successfully completed operation. 75 | true if this object represents a successfully completed operation; otherwise, false. 76 | 77 | 78 | Gets a value that indicates whether this object represents a failed operation. 79 | true if this object represents a failed operation; otherwise, false. 80 | 81 | 82 | Compares two values for equality. 83 | The first value to compare. 84 | The second value to compare. 85 | true if the two values are equal; otherwise, false. 86 | 87 | 88 | Determines whether two values are unequal. 89 | The first value to compare. 90 | The seconed value to compare. 91 | true if the two values are not equal; otherwise, false. 92 | 93 | 94 | Gets the result. 95 | The result. 96 | 97 | 98 | Returns a string that represents the current object. 99 | A string that represents the current object. 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/netcoreapp2.1/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/System.Threading.Tasks.Extensions.4.5.4/lib/netcoreapp2.1/_._ -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/netstandard1.0/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/System.Threading.Tasks.Extensions.4.5.4/lib/netstandard1.0/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/netstandard1.0/System.Threading.Tasks.Extensions.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | System.Threading.Tasks.Extensions 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Provides a value type that wraps a and a TResult, only one of which is used. 23 | The result. 24 | 25 | 26 | Initializes a new instance of the class using the supplied task that represents the operation. 27 | The task. 28 | The task argument is null. 29 | 30 | 31 | Initializes a new instance of the class using the supplied result of a successful operation. 32 | The result. 33 | 34 | 35 | Retrieves a object that represents this . 36 | The object that is wrapped in this if one exists, or a new object that represents the result. 37 | 38 | 39 | Configures an awaiter for this value. 40 | true to attempt to marshal the continuation back to the captured context; otherwise, false. 41 | The configured awaiter. 42 | 43 | 44 | Creates a method builder for use with an async method. 45 | The created builder. 46 | 47 | 48 | Determines whether the specified object is equal to the current object. 49 | The object to compare with the current object. 50 | true if the specified object is equal to the current object; otherwise, false. 51 | 52 | 53 | Determines whether the specified object is equal to the current object. 54 | The object to compare with the current object. 55 | true if the specified object is equal to the current object; otherwise, false. 56 | 57 | 58 | Creates an awaiter for this value. 59 | The awaiter. 60 | 61 | 62 | Returns the hash code for this instance. 63 | The hash code for the current object. 64 | 65 | 66 | Gets a value that indicates whether this object represents a canceled operation. 67 | true if this object represents a canceled operation; otherwise, false. 68 | 69 | 70 | Gets a value that indicates whether this object represents a completed operation. 71 | true if this object represents a completed operation; otherwise, false. 72 | 73 | 74 | Gets a value that indicates whether this object represents a successfully completed operation. 75 | true if this object represents a successfully completed operation; otherwise, false. 76 | 77 | 78 | Gets a value that indicates whether this object represents a failed operation. 79 | true if this object represents a failed operation; otherwise, false. 80 | 81 | 82 | Compares two values for equality. 83 | The first value to compare. 84 | The second value to compare. 85 | true if the two values are equal; otherwise, false. 86 | 87 | 88 | Determines whether two values are unequal. 89 | The first value to compare. 90 | The seconed value to compare. 91 | true if the two values are not equal; otherwise, false. 92 | 93 | 94 | Gets the result. 95 | The result. 96 | 97 | 98 | Returns a string that represents the current object. 99 | A string that represents the current object. 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/netstandard2.0/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/System.Threading.Tasks.Extensions.4.5.4/lib/netstandard2.0/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/netstandard2.0/System.Threading.Tasks.Extensions.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | System.Threading.Tasks.Extensions 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Provides a value type that wraps a and a TResult, only one of which is used. 23 | The result. 24 | 25 | 26 | Initializes a new instance of the class using the supplied task that represents the operation. 27 | The task. 28 | The task argument is null. 29 | 30 | 31 | Initializes a new instance of the class using the supplied result of a successful operation. 32 | The result. 33 | 34 | 35 | Retrieves a object that represents this . 36 | The object that is wrapped in this if one exists, or a new object that represents the result. 37 | 38 | 39 | Configures an awaiter for this value. 40 | true to attempt to marshal the continuation back to the captured context; otherwise, false. 41 | The configured awaiter. 42 | 43 | 44 | Creates a method builder for use with an async method. 45 | The created builder. 46 | 47 | 48 | Determines whether the specified object is equal to the current object. 49 | The object to compare with the current object. 50 | true if the specified object is equal to the current object; otherwise, false. 51 | 52 | 53 | Determines whether the specified object is equal to the current object. 54 | The object to compare with the current object. 55 | true if the specified object is equal to the current object; otherwise, false. 56 | 57 | 58 | Creates an awaiter for this value. 59 | The awaiter. 60 | 61 | 62 | Returns the hash code for this instance. 63 | The hash code for the current object. 64 | 65 | 66 | Gets a value that indicates whether this object represents a canceled operation. 67 | true if this object represents a canceled operation; otherwise, false. 68 | 69 | 70 | Gets a value that indicates whether this object represents a completed operation. 71 | true if this object represents a completed operation; otherwise, false. 72 | 73 | 74 | Gets a value that indicates whether this object represents a successfully completed operation. 75 | true if this object represents a successfully completed operation; otherwise, false. 76 | 77 | 78 | Gets a value that indicates whether this object represents a failed operation. 79 | true if this object represents a failed operation; otherwise, false. 80 | 81 | 82 | Compares two values for equality. 83 | The first value to compare. 84 | The second value to compare. 85 | true if the two values are equal; otherwise, false. 86 | 87 | 88 | Determines whether two values are unequal. 89 | The first value to compare. 90 | The seconed value to compare. 91 | true if the two values are not equal; otherwise, false. 92 | 93 | 94 | Gets the result. 95 | The result. 96 | 97 | 98 | Returns a string that represents the current object. 99 | A string that represents the current object. 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/System.Threading.Tasks.Extensions.4.5.4/lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | System.Threading.Tasks.Extensions 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Provides a value type that wraps a and a TResult, only one of which is used. 23 | The result. 24 | 25 | 26 | Initializes a new instance of the class using the supplied task that represents the operation. 27 | The task. 28 | The task argument is null. 29 | 30 | 31 | Initializes a new instance of the class using the supplied result of a successful operation. 32 | The result. 33 | 34 | 35 | Retrieves a object that represents this . 36 | The object that is wrapped in this if one exists, or a new object that represents the result. 37 | 38 | 39 | Configures an awaiter for this value. 40 | true to attempt to marshal the continuation back to the captured context; otherwise, false. 41 | The configured awaiter. 42 | 43 | 44 | Creates a method builder for use with an async method. 45 | The created builder. 46 | 47 | 48 | Determines whether the specified object is equal to the current object. 49 | The object to compare with the current object. 50 | true if the specified object is equal to the current object; otherwise, false. 51 | 52 | 53 | Determines whether the specified object is equal to the current object. 54 | The object to compare with the current object. 55 | true if the specified object is equal to the current object; otherwise, false. 56 | 57 | 58 | Creates an awaiter for this value. 59 | The awaiter. 60 | 61 | 62 | Returns the hash code for this instance. 63 | The hash code for the current object. 64 | 65 | 66 | Gets a value that indicates whether this object represents a canceled operation. 67 | true if this object represents a canceled operation; otherwise, false. 68 | 69 | 70 | Gets a value that indicates whether this object represents a completed operation. 71 | true if this object represents a completed operation; otherwise, false. 72 | 73 | 74 | Gets a value that indicates whether this object represents a successfully completed operation. 75 | true if this object represents a successfully completed operation; otherwise, false. 76 | 77 | 78 | Gets a value that indicates whether this object represents a failed operation. 79 | true if this object represents a failed operation; otherwise, false. 80 | 81 | 82 | Compares two values for equality. 83 | The first value to compare. 84 | The second value to compare. 85 | true if the two values are equal; otherwise, false. 86 | 87 | 88 | Determines whether two values are unequal. 89 | The first value to compare. 90 | The seconed value to compare. 91 | true if the two values are not equal; otherwise, false. 92 | 93 | 94 | Gets the result. 95 | The result. 96 | 97 | 98 | Returns a string that represents the current object. 99 | A string that represents the current object. 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/xamarinios10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/System.Threading.Tasks.Extensions.4.5.4/lib/xamarinios10/_._ -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/System.Threading.Tasks.Extensions.4.5.4/lib/xamarinmac20/_._ -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/System.Threading.Tasks.Extensions.4.5.4/lib/xamarintvos10/_._ -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/System.Threading.Tasks.Extensions.4.5.4/lib/xamarinwatchos10/_._ -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/System.Threading.Tasks.Extensions.4.5.4/ref/MonoAndroid10/_._ -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/System.Threading.Tasks.Extensions.4.5.4/ref/MonoTouch10/_._ -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/ref/netcoreapp2.1/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/System.Threading.Tasks.Extensions.4.5.4/ref/netcoreapp2.1/_._ -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/ref/xamarinios10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/System.Threading.Tasks.Extensions.4.5.4/ref/xamarinios10/_._ -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/System.Threading.Tasks.Extensions.4.5.4/ref/xamarinmac20/_._ -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/System.Threading.Tasks.Extensions.4.5.4/ref/xamarintvos10/_._ -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/System.Threading.Tasks.Extensions.4.5.4/ref/xamarinwatchos10/_._ -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enestas/google-drive-api-using/bb41dc214263b017b4768243d40c208bdcb6be49/packages/System.Threading.Tasks.Extensions.4.5.4/useSharedDesignerContext.txt -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/version.txt: -------------------------------------------------------------------------------- 1 | 7601f4f6225089ffb291dc7d58293c7bbf5c5d4f 2 | --------------------------------------------------------------------------------