├── .gitattributes ├── .gitignore ├── CloudFS.Authentication ├── AuthenticatedEventArgs.cs ├── BrowserLogOn.cs ├── CloudFS.Authentication.csproj ├── Configuration │ └── SynchronizedFileSettingsProvider.cs ├── DirectLogOn.cs ├── GlobalSuppressions.cs ├── LogOnBase.cs ├── LogOnWindow.xaml ├── LogOnWindow.xaml.cs ├── OAuth │ └── Constants.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── QueryStringBuilder.cs ├── StringCipher.cs └── UIThread.cs ├── CloudFS.AuthenticationTests ├── CloudFS.AuthenticationTests.csproj ├── GlobalSuppressions.cs ├── Properties │ └── AssemblyInfo.cs ├── StringCipherTests.cs └── TestCategories.cs ├── CloudFS.GatewayTests ├── App.Signed.config ├── App.config ├── CloudFS.GatewayTests.csproj ├── CompositionInitializer.cs ├── Config │ ├── ConfigStringExtensions.cs │ ├── GatewayElement.cs │ ├── GatewayElementCollection.cs │ ├── GatewayType.cs │ └── TestSection.cs ├── GatewayTestsFixture.cs ├── GenericAsyncGatewayTests.Fixture.cs ├── GenericAsyncGatewayTests.SpecialCharacters.txt ├── GenericAsyncGatewayTests.cs ├── GenericGatewayTests.Fixture.cs ├── GenericGatewayTests.cs ├── GlobalSuppressions.cs ├── NullProgressReporter.cs ├── Properties │ └── AssemblyInfo.cs ├── Secrets.cs ├── StringExtensions.cs ├── TestCategories.cs └── packages.config ├── CloudFS.Gateways.Box ├── App.config ├── BoxGateway.cs ├── BoxItemExtensions.cs ├── CloudFS.Gateways.Box.csproj ├── GlobalSuppressions.cs ├── OAuth │ ├── OAuthAuthenticator.cs │ └── RefreshTokenSetting.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Secrets.cs └── packages.config ├── CloudFS.Gateways.Copy ├── App.config ├── CloudFS.Gateways.Copy.csproj ├── CopyGateway.cs ├── FileSystemExtensions.cs ├── GlobalSuppressions.cs ├── OAuth │ ├── OAuthAuthenticator.cs │ └── RefreshTokenSetting.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Secrets.cs └── packages.config ├── CloudFS.Gateways.File ├── CloudFS.Gateways.File.csproj ├── DirectoryInfoExtensions.cs ├── FileGateway.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx └── packages.config ├── CloudFS.Gateways.GDrive-V2 ├── App.config ├── CloudFS.Gateways.GDrive-V2.csproj ├── FileExtensions.cs ├── GDriveGateway.cs ├── GlobalSuppressions.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Secrets.cs └── packages.config ├── CloudFS.Gateways.GDrive ├── CloudFS.Gateways.GDrive.csproj ├── FileExtensions.cs ├── GDriveGateway.cs ├── GlobalSuppressions.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── RequestExtensions.cs ├── Secrets.cs ├── app.config └── packages.config ├── CloudFS.Gateways.GoogleCloudStorage ├── App.config ├── CloudFS.Gateways.GoogleCloudStorage.csproj ├── GoogleCloudStorageGateway.cs ├── ObjectExtensions.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── StorageObjectId.cs └── packages.config ├── CloudFS.Gateways.MediaFire ├── ApiExtensions │ ├── MediaFireCopyFileResponse.cs │ └── MediaFireCopyFolderResponse.cs ├── App.config ├── Auth │ ├── Authenticator.cs │ └── RefreshTokenSetting.cs ├── CloudFS.Gateways.MediaFire.csproj ├── GlobalSuppressions.cs ├── MediaFireFileExtensions.cs ├── MediaFireFolderExtensions.cs ├── MediaFireGateway.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Secrets.cs └── packages.config ├── CloudFS.Gateways.Mega ├── App.config ├── Auth │ ├── Authenticator.cs │ └── RefreshTokenSetting.cs ├── CloudFS.Gateways.Mega.csproj ├── GlobalSuppressions.cs ├── MegaGateway.cs ├── NodeExtensions.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Secrets.cs └── packages.config ├── CloudFS.Gateways.OneDrive-Legacy ├── App.config ├── CloudFS.Gateways.OneDrive-Legacy.csproj ├── EnumExtensions.cs ├── GlobalSuppressions.cs ├── OAuth │ ├── OAuthAuthenticator.cs │ ├── RefreshTokenSetting.cs │ └── Scope.cs ├── ODItemExtensions.cs ├── OneDriveGateway.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Secrets.cs └── packages.config ├── CloudFS.Gateways.OneDrive-V1 ├── App.config ├── CloudFS.Gateways.OneDrive-V1.csproj ├── GlobalSuppressions.cs ├── ItemExtensions.cs ├── OAuth │ ├── OAuthAuthenticator.cs │ └── RefreshTokenSetting.cs ├── OneDriveGateway.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Secrets.cs └── packages.config ├── CloudFS.Gateways.OneDrive ├── App.config ├── CloudFS.Gateways.OneDrive.csproj ├── GlobalSuppressions.cs ├── ItemExtensions.cs ├── OAuth │ ├── OAuthAuthenticator.cs │ └── RefreshTokenSetting.cs ├── OneDriveGateway.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Secrets.cs └── packages.config ├── CloudFS.Gateways.WebDAV ├── Auth │ ├── Authenticator.cs │ └── CredentialsSetting.cs ├── CloudFS.Gateways.WebDAV.csproj ├── GlobalSuppressions.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── WebDAVGateway.cs ├── WebDavResourceExtensions.cs ├── app.config └── packages.config ├── CloudFS.Gateways.Yandex ├── App.config ├── CloudFS.Gateways.Yandex.csproj ├── GlobalSuppressions.cs ├── OAuth │ ├── OAuthAuthenticator.cs │ └── RefreshTokenSetting.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── ResourceExtensions.cs ├── Secrets.cs ├── YandexGateway.cs └── packages.config ├── CloudFS.Gateways.hubiC ├── CloudFS.Gateways.hubiC.csproj ├── DirectoryIdExtensions.cs ├── FileSystemIdExtensions.cs ├── GlobalSuppressions.cs ├── OAuth │ ├── OAuthAuthenticator.cs │ └── RefreshTokenSetting.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Secrets.cs ├── SwiftObjectModelExtensions.cs ├── app.config ├── hubiCGateway.cs ├── hubiCInfo.cs └── packages.config ├── CloudFS.Gateways.pCloud ├── App.config ├── Auth │ ├── Authenticator.cs │ └── RefreshTokenSetting.cs ├── CloudFS.Gateways.pCloud.csproj ├── GlobalSuppressions.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── StorageItemExtensions.cs ├── pCloudGateway.cs └── packages.config ├── CloudFS.Interface ├── CloudFS.Interface.csproj ├── Composition │ ├── CloudGatewayMetadata.cs │ ├── ExportAsAsyncCloudGatewayAttribute.cs │ ├── ExportAsCloudGatewayAttribute.cs │ ├── ExportContracts.cs │ ├── IAsyncCloudGateway.cs │ └── ICloudGateway.cs ├── GatewayCapabilities.cs ├── GlobalSuppressions.cs ├── IO │ ├── DirectoryId.cs │ ├── DirectoryInfoContract.cs │ ├── DriveId.cs │ ├── DriveInfoContract.cs │ ├── FileId.cs │ ├── FileInfoContract.cs │ ├── FileSize.cs │ ├── FileSystemId.cs │ ├── FileSystemInfoContract.cs │ ├── FileSystemInfoLocator.cs │ ├── ProducerConsumerStream.cs │ ├── ProgressStream.cs │ ├── ProgressValue.cs │ ├── ProxyFileInfoContract.cs │ └── RootDirectoryInfoContract.cs ├── IPersistGatewaySettings.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── RootName.cs └── packages.config ├── CloudFS.InterfaceTests ├── CloudFS.InterfaceTests.csproj ├── Composition │ ├── AttributeBasedCompositionTests.Fixture.cs │ └── AttributeBasedCompositionTests.cs ├── IO │ ├── FileSizeTests.Configuration.xml │ ├── FileSizeTests.cs │ ├── ProducerConsumerStreamTests.Fixture.cs │ ├── ProducerConsumerStreamTests.cs │ ├── ProgressStreamTests.Fixture.cs │ └── ProgressStreamTests.cs ├── Properties │ └── AssemblyInfo.cs ├── RetryPolicyTests.Fixture.cs ├── RetryPolicyTests.cs ├── TestCategories.cs └── packages.config ├── CloudFS.Legacy.nuspec ├── CloudFS.Signed.nuspec ├── CloudFS.nuspec ├── CloudFS.sln ├── CommonAssemblyInfo.cs ├── LICENSE.md ├── Library ├── IgorSoft.AppDomainResolver.dll ├── IgorSoft.AppDomainResolver.pdb ├── MediaFireSDK.LICENSE ├── MediaFireSDK.dll ├── OneDriveSDK-Legacy.LICENSE ├── OneDriveSDK-Legacy.dll ├── OneDriveSDK-Legacy.pdb ├── pCloud.NET SDK.dll └── pCloud.NET SDK.pdb ├── README.md ├── SignAssembly.cmd ├── SignedLibrary ├── CopyRestAPI.dll ├── IgorSoft.AppDomainResolver.dll ├── LazyCache.dll ├── MediaFireSDK.LICENSE ├── MediaFireSDK.dll ├── OneDriveSDK-Legacy.LICENSE ├── OneDriveSDK-Legacy.dll ├── SwiftClient.dll ├── YandexDisk.Client.dll ├── bouncy_castle_hmac_sha_pcl.dll └── pCloud.NET SDK.dll ├── TestAssemblies.ruleset └── appveyor.yml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/.gitignore -------------------------------------------------------------------------------- /CloudFS.Authentication/AuthenticatedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Authentication/AuthenticatedEventArgs.cs -------------------------------------------------------------------------------- /CloudFS.Authentication/BrowserLogOn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Authentication/BrowserLogOn.cs -------------------------------------------------------------------------------- /CloudFS.Authentication/CloudFS.Authentication.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Authentication/CloudFS.Authentication.csproj -------------------------------------------------------------------------------- /CloudFS.Authentication/Configuration/SynchronizedFileSettingsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Authentication/Configuration/SynchronizedFileSettingsProvider.cs -------------------------------------------------------------------------------- /CloudFS.Authentication/DirectLogOn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Authentication/DirectLogOn.cs -------------------------------------------------------------------------------- /CloudFS.Authentication/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Authentication/GlobalSuppressions.cs -------------------------------------------------------------------------------- /CloudFS.Authentication/LogOnBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Authentication/LogOnBase.cs -------------------------------------------------------------------------------- /CloudFS.Authentication/LogOnWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Authentication/LogOnWindow.xaml -------------------------------------------------------------------------------- /CloudFS.Authentication/LogOnWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Authentication/LogOnWindow.xaml.cs -------------------------------------------------------------------------------- /CloudFS.Authentication/OAuth/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Authentication/OAuth/Constants.cs -------------------------------------------------------------------------------- /CloudFS.Authentication/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Authentication/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CloudFS.Authentication/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Authentication/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CloudFS.Authentication/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Authentication/Properties/Resources.resx -------------------------------------------------------------------------------- /CloudFS.Authentication/QueryStringBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Authentication/QueryStringBuilder.cs -------------------------------------------------------------------------------- /CloudFS.Authentication/StringCipher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Authentication/StringCipher.cs -------------------------------------------------------------------------------- /CloudFS.Authentication/UIThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Authentication/UIThread.cs -------------------------------------------------------------------------------- /CloudFS.AuthenticationTests/CloudFS.AuthenticationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.AuthenticationTests/CloudFS.AuthenticationTests.csproj -------------------------------------------------------------------------------- /CloudFS.AuthenticationTests/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.AuthenticationTests/GlobalSuppressions.cs -------------------------------------------------------------------------------- /CloudFS.AuthenticationTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.AuthenticationTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CloudFS.AuthenticationTests/StringCipherTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.AuthenticationTests/StringCipherTests.cs -------------------------------------------------------------------------------- /CloudFS.AuthenticationTests/TestCategories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.AuthenticationTests/TestCategories.cs -------------------------------------------------------------------------------- /CloudFS.GatewayTests/App.Signed.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.GatewayTests/App.Signed.config -------------------------------------------------------------------------------- /CloudFS.GatewayTests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.GatewayTests/App.config -------------------------------------------------------------------------------- /CloudFS.GatewayTests/CloudFS.GatewayTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.GatewayTests/CloudFS.GatewayTests.csproj -------------------------------------------------------------------------------- /CloudFS.GatewayTests/CompositionInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.GatewayTests/CompositionInitializer.cs -------------------------------------------------------------------------------- /CloudFS.GatewayTests/Config/ConfigStringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.GatewayTests/Config/ConfigStringExtensions.cs -------------------------------------------------------------------------------- /CloudFS.GatewayTests/Config/GatewayElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.GatewayTests/Config/GatewayElement.cs -------------------------------------------------------------------------------- /CloudFS.GatewayTests/Config/GatewayElementCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.GatewayTests/Config/GatewayElementCollection.cs -------------------------------------------------------------------------------- /CloudFS.GatewayTests/Config/GatewayType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.GatewayTests/Config/GatewayType.cs -------------------------------------------------------------------------------- /CloudFS.GatewayTests/Config/TestSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.GatewayTests/Config/TestSection.cs -------------------------------------------------------------------------------- /CloudFS.GatewayTests/GatewayTestsFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.GatewayTests/GatewayTestsFixture.cs -------------------------------------------------------------------------------- /CloudFS.GatewayTests/GenericAsyncGatewayTests.Fixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.GatewayTests/GenericAsyncGatewayTests.Fixture.cs -------------------------------------------------------------------------------- /CloudFS.GatewayTests/GenericAsyncGatewayTests.SpecialCharacters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.GatewayTests/GenericAsyncGatewayTests.SpecialCharacters.txt -------------------------------------------------------------------------------- /CloudFS.GatewayTests/GenericAsyncGatewayTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.GatewayTests/GenericAsyncGatewayTests.cs -------------------------------------------------------------------------------- /CloudFS.GatewayTests/GenericGatewayTests.Fixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.GatewayTests/GenericGatewayTests.Fixture.cs -------------------------------------------------------------------------------- /CloudFS.GatewayTests/GenericGatewayTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.GatewayTests/GenericGatewayTests.cs -------------------------------------------------------------------------------- /CloudFS.GatewayTests/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.GatewayTests/GlobalSuppressions.cs -------------------------------------------------------------------------------- /CloudFS.GatewayTests/NullProgressReporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.GatewayTests/NullProgressReporter.cs -------------------------------------------------------------------------------- /CloudFS.GatewayTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.GatewayTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CloudFS.GatewayTests/Secrets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.GatewayTests/Secrets.cs -------------------------------------------------------------------------------- /CloudFS.GatewayTests/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.GatewayTests/StringExtensions.cs -------------------------------------------------------------------------------- /CloudFS.GatewayTests/TestCategories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.GatewayTests/TestCategories.cs -------------------------------------------------------------------------------- /CloudFS.GatewayTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.GatewayTests/packages.config -------------------------------------------------------------------------------- /CloudFS.Gateways.Box/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Box/App.config -------------------------------------------------------------------------------- /CloudFS.Gateways.Box/BoxGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Box/BoxGateway.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.Box/BoxItemExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Box/BoxItemExtensions.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.Box/CloudFS.Gateways.Box.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Box/CloudFS.Gateways.Box.csproj -------------------------------------------------------------------------------- /CloudFS.Gateways.Box/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Box/GlobalSuppressions.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.Box/OAuth/OAuthAuthenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Box/OAuth/OAuthAuthenticator.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.Box/OAuth/RefreshTokenSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Box/OAuth/RefreshTokenSetting.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.Box/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Box/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.Box/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Box/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.Box/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Box/Properties/Resources.resx -------------------------------------------------------------------------------- /CloudFS.Gateways.Box/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Box/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.Box/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Box/Properties/Settings.settings -------------------------------------------------------------------------------- /CloudFS.Gateways.Box/Secrets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Box/Secrets.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.Box/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Box/packages.config -------------------------------------------------------------------------------- /CloudFS.Gateways.Copy/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Copy/App.config -------------------------------------------------------------------------------- /CloudFS.Gateways.Copy/CloudFS.Gateways.Copy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Copy/CloudFS.Gateways.Copy.csproj -------------------------------------------------------------------------------- /CloudFS.Gateways.Copy/CopyGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Copy/CopyGateway.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.Copy/FileSystemExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Copy/FileSystemExtensions.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.Copy/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Copy/GlobalSuppressions.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.Copy/OAuth/OAuthAuthenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Copy/OAuth/OAuthAuthenticator.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.Copy/OAuth/RefreshTokenSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Copy/OAuth/RefreshTokenSetting.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.Copy/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Copy/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.Copy/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Copy/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.Copy/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Copy/Properties/Resources.resx -------------------------------------------------------------------------------- /CloudFS.Gateways.Copy/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Copy/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.Copy/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Copy/Properties/Settings.settings -------------------------------------------------------------------------------- /CloudFS.Gateways.Copy/Secrets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Copy/Secrets.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.Copy/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Copy/packages.config -------------------------------------------------------------------------------- /CloudFS.Gateways.File/CloudFS.Gateways.File.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.File/CloudFS.Gateways.File.csproj -------------------------------------------------------------------------------- /CloudFS.Gateways.File/DirectoryInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.File/DirectoryInfoExtensions.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.File/FileGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.File/FileGateway.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.File/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.File/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.File/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.File/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.File/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.File/Properties/Resources.resx -------------------------------------------------------------------------------- /CloudFS.Gateways.File/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.File/packages.config -------------------------------------------------------------------------------- /CloudFS.Gateways.GDrive-V2/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.GDrive-V2/App.config -------------------------------------------------------------------------------- /CloudFS.Gateways.GDrive-V2/CloudFS.Gateways.GDrive-V2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.GDrive-V2/CloudFS.Gateways.GDrive-V2.csproj -------------------------------------------------------------------------------- /CloudFS.Gateways.GDrive-V2/FileExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.GDrive-V2/FileExtensions.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.GDrive-V2/GDriveGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.GDrive-V2/GDriveGateway.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.GDrive-V2/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.GDrive-V2/GlobalSuppressions.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.GDrive-V2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.GDrive-V2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.GDrive-V2/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.GDrive-V2/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.GDrive-V2/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.GDrive-V2/Properties/Resources.resx -------------------------------------------------------------------------------- /CloudFS.Gateways.GDrive-V2/Secrets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.GDrive-V2/Secrets.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.GDrive-V2/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.GDrive-V2/packages.config -------------------------------------------------------------------------------- /CloudFS.Gateways.GDrive/CloudFS.Gateways.GDrive.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.GDrive/CloudFS.Gateways.GDrive.csproj -------------------------------------------------------------------------------- /CloudFS.Gateways.GDrive/FileExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.GDrive/FileExtensions.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.GDrive/GDriveGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.GDrive/GDriveGateway.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.GDrive/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.GDrive/GlobalSuppressions.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.GDrive/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.GDrive/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.GDrive/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.GDrive/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.GDrive/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.GDrive/Properties/Resources.resx -------------------------------------------------------------------------------- /CloudFS.Gateways.GDrive/RequestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.GDrive/RequestExtensions.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.GDrive/Secrets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.GDrive/Secrets.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.GDrive/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.GDrive/app.config -------------------------------------------------------------------------------- /CloudFS.Gateways.GDrive/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.GDrive/packages.config -------------------------------------------------------------------------------- /CloudFS.Gateways.GoogleCloudStorage/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.GoogleCloudStorage/App.config -------------------------------------------------------------------------------- /CloudFS.Gateways.GoogleCloudStorage/CloudFS.Gateways.GoogleCloudStorage.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.GoogleCloudStorage/CloudFS.Gateways.GoogleCloudStorage.csproj -------------------------------------------------------------------------------- /CloudFS.Gateways.GoogleCloudStorage/GoogleCloudStorageGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.GoogleCloudStorage/GoogleCloudStorageGateway.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.GoogleCloudStorage/ObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.GoogleCloudStorage/ObjectExtensions.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.GoogleCloudStorage/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.GoogleCloudStorage/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.GoogleCloudStorage/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.GoogleCloudStorage/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.GoogleCloudStorage/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.GoogleCloudStorage/Properties/Resources.resx -------------------------------------------------------------------------------- /CloudFS.Gateways.GoogleCloudStorage/StorageObjectId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.GoogleCloudStorage/StorageObjectId.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.GoogleCloudStorage/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.GoogleCloudStorage/packages.config -------------------------------------------------------------------------------- /CloudFS.Gateways.MediaFire/ApiExtensions/MediaFireCopyFileResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.MediaFire/ApiExtensions/MediaFireCopyFileResponse.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.MediaFire/ApiExtensions/MediaFireCopyFolderResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.MediaFire/ApiExtensions/MediaFireCopyFolderResponse.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.MediaFire/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.MediaFire/App.config -------------------------------------------------------------------------------- /CloudFS.Gateways.MediaFire/Auth/Authenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.MediaFire/Auth/Authenticator.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.MediaFire/Auth/RefreshTokenSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.MediaFire/Auth/RefreshTokenSetting.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.MediaFire/CloudFS.Gateways.MediaFire.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.MediaFire/CloudFS.Gateways.MediaFire.csproj -------------------------------------------------------------------------------- /CloudFS.Gateways.MediaFire/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.MediaFire/GlobalSuppressions.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.MediaFire/MediaFireFileExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.MediaFire/MediaFireFileExtensions.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.MediaFire/MediaFireFolderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.MediaFire/MediaFireFolderExtensions.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.MediaFire/MediaFireGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.MediaFire/MediaFireGateway.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.MediaFire/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.MediaFire/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.MediaFire/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.MediaFire/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.MediaFire/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.MediaFire/Properties/Resources.resx -------------------------------------------------------------------------------- /CloudFS.Gateways.MediaFire/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.MediaFire/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.MediaFire/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.MediaFire/Properties/Settings.settings -------------------------------------------------------------------------------- /CloudFS.Gateways.MediaFire/Secrets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.MediaFire/Secrets.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.MediaFire/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.MediaFire/packages.config -------------------------------------------------------------------------------- /CloudFS.Gateways.Mega/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Mega/App.config -------------------------------------------------------------------------------- /CloudFS.Gateways.Mega/Auth/Authenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Mega/Auth/Authenticator.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.Mega/Auth/RefreshTokenSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Mega/Auth/RefreshTokenSetting.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.Mega/CloudFS.Gateways.Mega.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Mega/CloudFS.Gateways.Mega.csproj -------------------------------------------------------------------------------- /CloudFS.Gateways.Mega/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Mega/GlobalSuppressions.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.Mega/MegaGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Mega/MegaGateway.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.Mega/NodeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Mega/NodeExtensions.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.Mega/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Mega/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.Mega/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Mega/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.Mega/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Mega/Properties/Resources.resx -------------------------------------------------------------------------------- /CloudFS.Gateways.Mega/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Mega/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.Mega/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Mega/Properties/Settings.settings -------------------------------------------------------------------------------- /CloudFS.Gateways.Mega/Secrets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Mega/Secrets.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.Mega/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Mega/packages.config -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive-Legacy/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive-Legacy/App.config -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive-Legacy/CloudFS.Gateways.OneDrive-Legacy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive-Legacy/CloudFS.Gateways.OneDrive-Legacy.csproj -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive-Legacy/EnumExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive-Legacy/EnumExtensions.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive-Legacy/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive-Legacy/GlobalSuppressions.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive-Legacy/OAuth/OAuthAuthenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive-Legacy/OAuth/OAuthAuthenticator.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive-Legacy/OAuth/RefreshTokenSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive-Legacy/OAuth/RefreshTokenSetting.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive-Legacy/OAuth/Scope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive-Legacy/OAuth/Scope.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive-Legacy/ODItemExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive-Legacy/ODItemExtensions.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive-Legacy/OneDriveGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive-Legacy/OneDriveGateway.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive-Legacy/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive-Legacy/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive-Legacy/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive-Legacy/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive-Legacy/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive-Legacy/Properties/Resources.resx -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive-Legacy/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive-Legacy/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive-Legacy/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive-Legacy/Properties/Settings.settings -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive-Legacy/Secrets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive-Legacy/Secrets.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive-Legacy/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive-Legacy/packages.config -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive-V1/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive-V1/App.config -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive-V1/CloudFS.Gateways.OneDrive-V1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive-V1/CloudFS.Gateways.OneDrive-V1.csproj -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive-V1/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive-V1/GlobalSuppressions.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive-V1/ItemExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive-V1/ItemExtensions.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive-V1/OAuth/OAuthAuthenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive-V1/OAuth/OAuthAuthenticator.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive-V1/OAuth/RefreshTokenSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive-V1/OAuth/RefreshTokenSetting.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive-V1/OneDriveGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive-V1/OneDriveGateway.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive-V1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive-V1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive-V1/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive-V1/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive-V1/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive-V1/Properties/Resources.resx -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive-V1/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive-V1/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive-V1/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive-V1/Properties/Settings.settings -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive-V1/Secrets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive-V1/Secrets.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive-V1/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive-V1/packages.config -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive/App.config -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive/CloudFS.Gateways.OneDrive.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive/CloudFS.Gateways.OneDrive.csproj -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive/GlobalSuppressions.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive/ItemExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive/ItemExtensions.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive/OAuth/OAuthAuthenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive/OAuth/OAuthAuthenticator.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive/OAuth/RefreshTokenSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive/OAuth/RefreshTokenSetting.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive/OneDriveGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive/OneDriveGateway.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive/Properties/Resources.resx -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive/Properties/Settings.settings -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive/Secrets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive/Secrets.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.OneDrive/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.OneDrive/packages.config -------------------------------------------------------------------------------- /CloudFS.Gateways.WebDAV/Auth/Authenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.WebDAV/Auth/Authenticator.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.WebDAV/Auth/CredentialsSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.WebDAV/Auth/CredentialsSetting.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.WebDAV/CloudFS.Gateways.WebDAV.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.WebDAV/CloudFS.Gateways.WebDAV.csproj -------------------------------------------------------------------------------- /CloudFS.Gateways.WebDAV/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.WebDAV/GlobalSuppressions.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.WebDAV/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.WebDAV/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.WebDAV/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.WebDAV/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.WebDAV/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.WebDAV/Properties/Resources.resx -------------------------------------------------------------------------------- /CloudFS.Gateways.WebDAV/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.WebDAV/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.WebDAV/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.WebDAV/Properties/Settings.settings -------------------------------------------------------------------------------- /CloudFS.Gateways.WebDAV/WebDAVGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.WebDAV/WebDAVGateway.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.WebDAV/WebDavResourceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.WebDAV/WebDavResourceExtensions.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.WebDAV/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.WebDAV/app.config -------------------------------------------------------------------------------- /CloudFS.Gateways.WebDAV/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.WebDAV/packages.config -------------------------------------------------------------------------------- /CloudFS.Gateways.Yandex/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Yandex/App.config -------------------------------------------------------------------------------- /CloudFS.Gateways.Yandex/CloudFS.Gateways.Yandex.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Yandex/CloudFS.Gateways.Yandex.csproj -------------------------------------------------------------------------------- /CloudFS.Gateways.Yandex/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Yandex/GlobalSuppressions.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.Yandex/OAuth/OAuthAuthenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Yandex/OAuth/OAuthAuthenticator.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.Yandex/OAuth/RefreshTokenSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Yandex/OAuth/RefreshTokenSetting.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.Yandex/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Yandex/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.Yandex/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Yandex/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.Yandex/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Yandex/Properties/Resources.resx -------------------------------------------------------------------------------- /CloudFS.Gateways.Yandex/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Yandex/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.Yandex/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Yandex/Properties/Settings.settings -------------------------------------------------------------------------------- /CloudFS.Gateways.Yandex/ResourceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Yandex/ResourceExtensions.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.Yandex/Secrets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Yandex/Secrets.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.Yandex/YandexGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Yandex/YandexGateway.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.Yandex/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.Yandex/packages.config -------------------------------------------------------------------------------- /CloudFS.Gateways.hubiC/CloudFS.Gateways.hubiC.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.hubiC/CloudFS.Gateways.hubiC.csproj -------------------------------------------------------------------------------- /CloudFS.Gateways.hubiC/DirectoryIdExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.hubiC/DirectoryIdExtensions.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.hubiC/FileSystemIdExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.hubiC/FileSystemIdExtensions.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.hubiC/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.hubiC/GlobalSuppressions.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.hubiC/OAuth/OAuthAuthenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.hubiC/OAuth/OAuthAuthenticator.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.hubiC/OAuth/RefreshTokenSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.hubiC/OAuth/RefreshTokenSetting.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.hubiC/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.hubiC/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.hubiC/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.hubiC/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.hubiC/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.hubiC/Properties/Resources.resx -------------------------------------------------------------------------------- /CloudFS.Gateways.hubiC/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.hubiC/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.hubiC/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.hubiC/Properties/Settings.settings -------------------------------------------------------------------------------- /CloudFS.Gateways.hubiC/Secrets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.hubiC/Secrets.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.hubiC/SwiftObjectModelExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.hubiC/SwiftObjectModelExtensions.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.hubiC/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.hubiC/app.config -------------------------------------------------------------------------------- /CloudFS.Gateways.hubiC/hubiCGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.hubiC/hubiCGateway.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.hubiC/hubiCInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.hubiC/hubiCInfo.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.hubiC/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.hubiC/packages.config -------------------------------------------------------------------------------- /CloudFS.Gateways.pCloud/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.pCloud/App.config -------------------------------------------------------------------------------- /CloudFS.Gateways.pCloud/Auth/Authenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.pCloud/Auth/Authenticator.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.pCloud/Auth/RefreshTokenSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.pCloud/Auth/RefreshTokenSetting.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.pCloud/CloudFS.Gateways.pCloud.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.pCloud/CloudFS.Gateways.pCloud.csproj -------------------------------------------------------------------------------- /CloudFS.Gateways.pCloud/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.pCloud/GlobalSuppressions.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.pCloud/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.pCloud/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.pCloud/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.pCloud/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.pCloud/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.pCloud/Properties/Resources.resx -------------------------------------------------------------------------------- /CloudFS.Gateways.pCloud/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.pCloud/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.pCloud/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.pCloud/Properties/Settings.settings -------------------------------------------------------------------------------- /CloudFS.Gateways.pCloud/StorageItemExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.pCloud/StorageItemExtensions.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.pCloud/pCloudGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.pCloud/pCloudGateway.cs -------------------------------------------------------------------------------- /CloudFS.Gateways.pCloud/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Gateways.pCloud/packages.config -------------------------------------------------------------------------------- /CloudFS.Interface/CloudFS.Interface.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Interface/CloudFS.Interface.csproj -------------------------------------------------------------------------------- /CloudFS.Interface/Composition/CloudGatewayMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Interface/Composition/CloudGatewayMetadata.cs -------------------------------------------------------------------------------- /CloudFS.Interface/Composition/ExportAsAsyncCloudGatewayAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Interface/Composition/ExportAsAsyncCloudGatewayAttribute.cs -------------------------------------------------------------------------------- /CloudFS.Interface/Composition/ExportAsCloudGatewayAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Interface/Composition/ExportAsCloudGatewayAttribute.cs -------------------------------------------------------------------------------- /CloudFS.Interface/Composition/ExportContracts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Interface/Composition/ExportContracts.cs -------------------------------------------------------------------------------- /CloudFS.Interface/Composition/IAsyncCloudGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Interface/Composition/IAsyncCloudGateway.cs -------------------------------------------------------------------------------- /CloudFS.Interface/Composition/ICloudGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Interface/Composition/ICloudGateway.cs -------------------------------------------------------------------------------- /CloudFS.Interface/GatewayCapabilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Interface/GatewayCapabilities.cs -------------------------------------------------------------------------------- /CloudFS.Interface/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Interface/GlobalSuppressions.cs -------------------------------------------------------------------------------- /CloudFS.Interface/IO/DirectoryId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Interface/IO/DirectoryId.cs -------------------------------------------------------------------------------- /CloudFS.Interface/IO/DirectoryInfoContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Interface/IO/DirectoryInfoContract.cs -------------------------------------------------------------------------------- /CloudFS.Interface/IO/DriveId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Interface/IO/DriveId.cs -------------------------------------------------------------------------------- /CloudFS.Interface/IO/DriveInfoContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Interface/IO/DriveInfoContract.cs -------------------------------------------------------------------------------- /CloudFS.Interface/IO/FileId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Interface/IO/FileId.cs -------------------------------------------------------------------------------- /CloudFS.Interface/IO/FileInfoContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Interface/IO/FileInfoContract.cs -------------------------------------------------------------------------------- /CloudFS.Interface/IO/FileSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Interface/IO/FileSize.cs -------------------------------------------------------------------------------- /CloudFS.Interface/IO/FileSystemId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Interface/IO/FileSystemId.cs -------------------------------------------------------------------------------- /CloudFS.Interface/IO/FileSystemInfoContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Interface/IO/FileSystemInfoContract.cs -------------------------------------------------------------------------------- /CloudFS.Interface/IO/FileSystemInfoLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Interface/IO/FileSystemInfoLocator.cs -------------------------------------------------------------------------------- /CloudFS.Interface/IO/ProducerConsumerStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Interface/IO/ProducerConsumerStream.cs -------------------------------------------------------------------------------- /CloudFS.Interface/IO/ProgressStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Interface/IO/ProgressStream.cs -------------------------------------------------------------------------------- /CloudFS.Interface/IO/ProgressValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Interface/IO/ProgressValue.cs -------------------------------------------------------------------------------- /CloudFS.Interface/IO/ProxyFileInfoContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Interface/IO/ProxyFileInfoContract.cs -------------------------------------------------------------------------------- /CloudFS.Interface/IO/RootDirectoryInfoContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Interface/IO/RootDirectoryInfoContract.cs -------------------------------------------------------------------------------- /CloudFS.Interface/IPersistGatewaySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Interface/IPersistGatewaySettings.cs -------------------------------------------------------------------------------- /CloudFS.Interface/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Interface/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CloudFS.Interface/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Interface/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CloudFS.Interface/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Interface/Properties/Resources.resx -------------------------------------------------------------------------------- /CloudFS.Interface/RootName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Interface/RootName.cs -------------------------------------------------------------------------------- /CloudFS.Interface/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Interface/packages.config -------------------------------------------------------------------------------- /CloudFS.InterfaceTests/CloudFS.InterfaceTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.InterfaceTests/CloudFS.InterfaceTests.csproj -------------------------------------------------------------------------------- /CloudFS.InterfaceTests/Composition/AttributeBasedCompositionTests.Fixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.InterfaceTests/Composition/AttributeBasedCompositionTests.Fixture.cs -------------------------------------------------------------------------------- /CloudFS.InterfaceTests/Composition/AttributeBasedCompositionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.InterfaceTests/Composition/AttributeBasedCompositionTests.cs -------------------------------------------------------------------------------- /CloudFS.InterfaceTests/IO/FileSizeTests.Configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.InterfaceTests/IO/FileSizeTests.Configuration.xml -------------------------------------------------------------------------------- /CloudFS.InterfaceTests/IO/FileSizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.InterfaceTests/IO/FileSizeTests.cs -------------------------------------------------------------------------------- /CloudFS.InterfaceTests/IO/ProducerConsumerStreamTests.Fixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.InterfaceTests/IO/ProducerConsumerStreamTests.Fixture.cs -------------------------------------------------------------------------------- /CloudFS.InterfaceTests/IO/ProducerConsumerStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.InterfaceTests/IO/ProducerConsumerStreamTests.cs -------------------------------------------------------------------------------- /CloudFS.InterfaceTests/IO/ProgressStreamTests.Fixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.InterfaceTests/IO/ProgressStreamTests.Fixture.cs -------------------------------------------------------------------------------- /CloudFS.InterfaceTests/IO/ProgressStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.InterfaceTests/IO/ProgressStreamTests.cs -------------------------------------------------------------------------------- /CloudFS.InterfaceTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.InterfaceTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CloudFS.InterfaceTests/RetryPolicyTests.Fixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.InterfaceTests/RetryPolicyTests.Fixture.cs -------------------------------------------------------------------------------- /CloudFS.InterfaceTests/RetryPolicyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.InterfaceTests/RetryPolicyTests.cs -------------------------------------------------------------------------------- /CloudFS.InterfaceTests/TestCategories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.InterfaceTests/TestCategories.cs -------------------------------------------------------------------------------- /CloudFS.InterfaceTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.InterfaceTests/packages.config -------------------------------------------------------------------------------- /CloudFS.Legacy.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Legacy.nuspec -------------------------------------------------------------------------------- /CloudFS.Signed.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.Signed.nuspec -------------------------------------------------------------------------------- /CloudFS.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.nuspec -------------------------------------------------------------------------------- /CloudFS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CloudFS.sln -------------------------------------------------------------------------------- /CommonAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/CommonAssemblyInfo.cs -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Library/IgorSoft.AppDomainResolver.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/Library/IgorSoft.AppDomainResolver.dll -------------------------------------------------------------------------------- /Library/IgorSoft.AppDomainResolver.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/Library/IgorSoft.AppDomainResolver.pdb -------------------------------------------------------------------------------- /Library/MediaFireSDK.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/Library/MediaFireSDK.LICENSE -------------------------------------------------------------------------------- /Library/MediaFireSDK.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/Library/MediaFireSDK.dll -------------------------------------------------------------------------------- /Library/OneDriveSDK-Legacy.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/Library/OneDriveSDK-Legacy.LICENSE -------------------------------------------------------------------------------- /Library/OneDriveSDK-Legacy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/Library/OneDriveSDK-Legacy.dll -------------------------------------------------------------------------------- /Library/OneDriveSDK-Legacy.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/Library/OneDriveSDK-Legacy.pdb -------------------------------------------------------------------------------- /Library/pCloud.NET SDK.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/Library/pCloud.NET SDK.dll -------------------------------------------------------------------------------- /Library/pCloud.NET SDK.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/Library/pCloud.NET SDK.pdb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/README.md -------------------------------------------------------------------------------- /SignAssembly.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/SignAssembly.cmd -------------------------------------------------------------------------------- /SignedLibrary/CopyRestAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/SignedLibrary/CopyRestAPI.dll -------------------------------------------------------------------------------- /SignedLibrary/IgorSoft.AppDomainResolver.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/SignedLibrary/IgorSoft.AppDomainResolver.dll -------------------------------------------------------------------------------- /SignedLibrary/LazyCache.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/SignedLibrary/LazyCache.dll -------------------------------------------------------------------------------- /SignedLibrary/MediaFireSDK.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/SignedLibrary/MediaFireSDK.LICENSE -------------------------------------------------------------------------------- /SignedLibrary/MediaFireSDK.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/SignedLibrary/MediaFireSDK.dll -------------------------------------------------------------------------------- /SignedLibrary/OneDriveSDK-Legacy.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/SignedLibrary/OneDriveSDK-Legacy.LICENSE -------------------------------------------------------------------------------- /SignedLibrary/OneDriveSDK-Legacy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/SignedLibrary/OneDriveSDK-Legacy.dll -------------------------------------------------------------------------------- /SignedLibrary/SwiftClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/SignedLibrary/SwiftClient.dll -------------------------------------------------------------------------------- /SignedLibrary/YandexDisk.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/SignedLibrary/YandexDisk.Client.dll -------------------------------------------------------------------------------- /SignedLibrary/bouncy_castle_hmac_sha_pcl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/SignedLibrary/bouncy_castle_hmac_sha_pcl.dll -------------------------------------------------------------------------------- /SignedLibrary/pCloud.NET SDK.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/SignedLibrary/pCloud.NET SDK.dll -------------------------------------------------------------------------------- /TestAssemblies.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/TestAssemblies.ruleset -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciousviper/CloudFS/HEAD/appveyor.yml --------------------------------------------------------------------------------