├── DavRelayUp.sln ├── DavRelayUp ├── App.config ├── AskTGT.cs ├── Asn1 │ ├── Asn1Extensions.cs │ ├── AsnElt.cs │ ├── AsnException.cs │ ├── AsnIO.cs │ └── AsnOID.cs ├── AuthTrigger │ ├── Efs.cs │ ├── EfsTrigger.cs │ ├── NativeMethods.cs │ └── RpcApi.cs ├── Costura64 │ ├── GoRelayServer.dll │ └── GoRelayServer.h ├── DSInternals.Common │ ├── Data │ │ ├── DNWithBinary.cs │ │ └── Hello │ │ │ ├── CustomKeyInformation.cs │ │ │ ├── KeyCredential.cs │ │ │ ├── KeyCredentialEntryType.cs │ │ │ ├── KeyCredentialVersion.cs │ │ │ ├── KeyFlags.cs │ │ │ ├── KeySource.cs │ │ │ ├── KeyStrength.cs │ │ │ ├── KeyUsage.cs │ │ │ └── VolumeType.cs │ ├── Extensions │ │ ├── ByteArrayExtensions.cs │ │ └── RSAExtensions.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ └── Validator.cs ├── DavRelayUp.csproj ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── Kerb │ ├── Crypto.cs │ ├── Helpers.cs │ ├── Interop.cs │ ├── Interop │ │ ├── Luid.cs │ │ └── NtException.cs │ ├── KDCKeyAgreement.cs │ ├── LSA.cs │ ├── Networking.cs │ ├── crypto │ │ ├── SafeNativeMethods.cs │ │ └── dh │ │ │ ├── DiffieHellmanKey.cs │ │ │ ├── IExchangeKey.cs │ │ │ ├── IKeyAgreement.cs │ │ │ ├── KeyAgreementAlgorithm.cs │ │ │ ├── ManagedDiffieHellman.cs │ │ │ ├── ManagedDiffieHellmanOakley14.cs │ │ │ ├── ManagedDiffieHellmanOakley2.cs │ │ │ └── Oakley.cs │ ├── krb_structures │ │ ├── ADIfRelevant.cs │ │ ├── ADKerbLocal.cs │ │ ├── ADRestrictionEntry.cs │ │ ├── ADWin2KPac.cs │ │ ├── AP_REQ.cs │ │ ├── AS_REP.cs │ │ ├── AS_REQ.cs │ │ ├── Authenticator.cs │ │ ├── AuthorizationData.cs │ │ ├── Checksum.cs │ │ ├── ETYPE_INFO2_ENTRY.cs │ │ ├── EncKDCRepPart.cs │ │ ├── EncKrbCredPart.cs │ │ ├── EncKrbPrivPart.cs │ │ ├── EncTicketPart.cs │ │ ├── EncryptedData.cs │ │ ├── EncryptionKey.cs │ │ ├── HostAddress.cs │ │ ├── KDC_PROXY_MESSAGE.cs │ │ ├── KDC_REQ_BODY.cs │ │ ├── KERB_PA_PAC_REQUEST.cs │ │ ├── KRB_CRED.cs │ │ ├── KRB_ERROR.cs │ │ ├── KRB_PRIV.cs │ │ ├── KrbAlgorithmIdentifier.cs │ │ ├── KrbAuthPack.cs │ │ ├── KrbCredInfo.cs │ │ ├── KrbDHRepInfo.cs │ │ ├── KrbKDCDHKeyInfo.cs │ │ ├── KrbPkAuthenticator.cs │ │ ├── KrbSubjectPublicKeyInfo.cs │ │ ├── LastReq.cs │ │ ├── PA_DATA.cs │ │ ├── PA_ENC_TS_ENC.cs │ │ ├── PA_FOR_USER.cs │ │ ├── PA_PAC_OPTIONS.cs │ │ ├── PA_PK_AS_REP.cs │ │ ├── PA_PK_AS_REQ.cs │ │ ├── PA_S4U_X509_USER.cs │ │ ├── PrincipalName.cs │ │ ├── S4UUserID.cs │ │ ├── TGS_REP.cs │ │ ├── TGS_REQ.cs │ │ ├── Ticket.cs │ │ ├── TransitedEncoding.cs │ │ └── pac │ │ │ ├── Attributes.cs │ │ │ ├── ClientName.cs │ │ │ ├── LogonInfo.cs │ │ │ ├── Ndr │ │ │ └── Kerberos_PAC.cs │ │ │ ├── PACTYPE.cs │ │ │ ├── PacCredentialInfo.cs │ │ │ ├── PacInfoBuffer.cs │ │ │ ├── Requestor.cs │ │ │ ├── S4UDelegationInfo.cs │ │ │ ├── SignatureData.cs │ │ │ └── UpnDns.cs │ ├── math │ │ ├── BigInteger.cs │ │ ├── ConfidenceFactor.cs │ │ ├── NextPrimeFinder.cs │ │ ├── PrimalityTest.cs │ │ ├── PrimeGeneratorBase.cs │ │ └── SequentialSearchPrimeGeneratorBase.cs │ └── ndr │ │ ├── Ndr │ │ ├── Marshal │ │ │ ├── INdrConformantStructure.cs │ │ │ ├── INdrNonEncapsulatedUnion.cs │ │ │ ├── INdrStructure.cs │ │ │ ├── NdrContextHandle.cs │ │ │ ├── NdrDataRepresentation.cs │ │ │ ├── NdrDeferralStack.cs │ │ │ ├── NdrEmbeddedPointer.cs │ │ │ ├── NdrEmpty.cs │ │ │ ├── NdrEnum16.cs │ │ │ ├── NdrInt3264.cs │ │ │ ├── NdrInterfacePointer.cs │ │ │ ├── NdrMarshalBuffer.cs │ │ │ ├── NdrPickledType.cs │ │ │ ├── NdrPipe.cs │ │ │ ├── NdrUnmarshalBuffer.cs │ │ │ └── NdrUnsupported.cs │ │ ├── NdrNativeUtils.cs │ │ └── NdrParser.cs │ │ ├── Utilities │ │ ├── Memory │ │ │ ├── CrossBitnessTypeAttribute.cs │ │ │ ├── IMemoryReader.cs │ │ │ └── SafeBufferWrapper.cs │ │ └── Text │ │ │ ├── BinaryEncoding.cs │ │ │ └── HexDumpBuilder.cs │ │ └── Win32 │ │ └── Rpc │ │ └── RpcUtils.cs ├── KrbSCM.cs ├── Native.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── S4U.cs ├── WebClientEnabler.cs └── packages.config ├── GoRelayServer ├── GoRelayServer.dll ├── GoRelayServer.h ├── go.mod ├── go.sum ├── lib │ ├── azure │ │ └── go-ntlmssp │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── authenticate_message.go │ │ │ ├── authheader.go │ │ │ ├── avids.go │ │ │ ├── challenge_message.go │ │ │ ├── messageheader.go │ │ │ ├── negotiate_flags.go │ │ │ ├── negotiate_message.go │ │ │ ├── negotiator.go │ │ │ ├── nlmp.go │ │ │ ├── nlmp_test.go │ │ │ ├── unicode.go │ │ │ ├── varfield.go │ │ │ └── version.go │ ├── go-ldap │ │ └── ldap │ │ │ └── v3 │ │ │ ├── LICENSE │ │ │ ├── add.go │ │ │ ├── bind.go │ │ │ ├── client.go │ │ │ ├── compare.go │ │ │ ├── conn.go │ │ │ ├── conn_test.go │ │ │ ├── control.go │ │ │ ├── control_test.go │ │ │ ├── debug.go │ │ │ ├── del.go │ │ │ ├── dn.go │ │ │ ├── dn_test.go │ │ │ ├── doc.go │ │ │ ├── error.go │ │ │ ├── error_test.go │ │ │ ├── examples_moddn_test.go │ │ │ ├── examples_test.go │ │ │ ├── filter.go │ │ │ ├── filter_test.go │ │ │ ├── ldap.go │ │ │ ├── ldap_test.go │ │ │ ├── moddn.go │ │ │ ├── modify.go │ │ │ ├── passwdmodify.go │ │ │ ├── request.go │ │ │ ├── search.go │ │ │ ├── search_test.go │ │ │ ├── unbind.go │ │ │ └── whoami.go │ └── webdav-server │ │ └── webdav_server.go └── main.go ├── Images ├── DavRelayUp Demo.mp4 └── example_rbcd.png ├── README.md └── packages ├── Costura.Fody.5.7.0 ├── .signature.p7s ├── Costura.Fody.5.7.0.nupkg ├── build │ ├── Costura.Fody.props │ └── Costura.Fody.targets ├── icon.png ├── lib │ └── netstandard1.0 │ │ ├── Costura.dll │ │ ├── Costura.pdb │ │ └── Costura.xml ├── netclassicweaver │ ├── Costura.Fody.dll │ └── Costura.Fody.xcf └── netstandardweaver │ ├── Costura.Fody.dll │ └── Costura.Fody.xcf ├── Fody.6.7.0 ├── .signature.p7s ├── Fody.6.7.0.nupkg ├── License.txt ├── build │ └── Fody.targets ├── netclassictask │ ├── Fody.dll │ ├── FodyCommon.dll │ ├── FodyHelpers.dll │ ├── FodyIsolated.dll │ ├── Mono.Cecil.Pdb.dll │ ├── Mono.Cecil.Pdb.pdb │ ├── Mono.Cecil.Rocks.dll │ ├── Mono.Cecil.Rocks.pdb │ ├── Mono.Cecil.dll │ └── Mono.Cecil.pdb └── netstandardtask │ ├── Fody.dll │ ├── FodyCommon.dll │ ├── FodyHelpers.dll │ ├── FodyIsolated.dll │ ├── Mono.Cecil.Pdb.dll │ ├── Mono.Cecil.Pdb.pdb │ ├── Mono.Cecil.Rocks.dll │ ├── Mono.Cecil.Rocks.pdb │ ├── Mono.Cecil.dll │ └── Mono.Cecil.pdb ├── Microsoft.NETCore.Platforms.1.1.0 ├── .signature.p7s ├── Microsoft.NETCore.Platforms.1.1.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ └── netstandard1.0 │ │ └── _._ └── runtime.json ├── Microsoft.Win32.Primitives.4.3.0 ├── .signature.p7s ├── Microsoft.Win32.Primitives.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net46 │ │ └── Microsoft.Win32.Primitives.dll │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net46 │ └── Microsoft.Win32.Primitives.dll │ ├── netstandard1.3 │ ├── Microsoft.Win32.Primitives.dll │ ├── Microsoft.Win32.Primitives.xml │ ├── de │ │ └── Microsoft.Win32.Primitives.xml │ ├── es │ │ └── Microsoft.Win32.Primitives.xml │ ├── fr │ │ └── Microsoft.Win32.Primitives.xml │ ├── it │ │ └── Microsoft.Win32.Primitives.xml │ ├── ja │ │ └── Microsoft.Win32.Primitives.xml │ ├── ko │ │ └── Microsoft.Win32.Primitives.xml │ ├── ru │ │ └── Microsoft.Win32.Primitives.xml │ ├── zh-hans │ │ └── Microsoft.Win32.Primitives.xml │ └── zh-hant │ │ └── Microsoft.Win32.Primitives.xml │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ ├── NETStandard.Library.1.6.1 ├── .signature.p7s ├── NETStandard.Library.1.6.1.nupkg ├── ThirdPartyNotices.txt └── dotnet_library_license.txt ├── System.AppContext.4.3.0 ├── .signature.p7s ├── System.AppContext.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net46 │ │ └── System.AppContext.dll │ ├── net463 │ │ └── System.AppContext.dll │ ├── netcore50 │ │ └── System.AppContext.dll │ ├── netstandard1.6 │ │ └── System.AppContext.dll │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ ├── ref │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net46 │ │ └── System.AppContext.dll │ ├── net463 │ │ └── System.AppContext.dll │ ├── netstandard │ │ └── _._ │ ├── netstandard1.3 │ │ ├── System.AppContext.dll │ │ ├── System.AppContext.xml │ │ ├── de │ │ │ └── System.AppContext.xml │ │ ├── es │ │ │ └── System.AppContext.xml │ │ ├── fr │ │ │ └── System.AppContext.xml │ │ ├── it │ │ │ └── System.AppContext.xml │ │ ├── ja │ │ │ └── System.AppContext.xml │ │ ├── ko │ │ │ └── System.AppContext.xml │ │ ├── ru │ │ │ └── System.AppContext.xml │ │ ├── zh-hans │ │ │ └── System.AppContext.xml │ │ └── zh-hant │ │ │ └── System.AppContext.xml │ ├── netstandard1.6 │ │ ├── System.AppContext.dll │ │ ├── System.AppContext.xml │ │ ├── de │ │ │ └── System.AppContext.xml │ │ ├── es │ │ │ └── System.AppContext.xml │ │ ├── fr │ │ │ └── System.AppContext.xml │ │ ├── it │ │ │ └── System.AppContext.xml │ │ ├── ja │ │ │ └── System.AppContext.xml │ │ ├── ko │ │ │ └── System.AppContext.xml │ │ ├── ru │ │ │ └── System.AppContext.xml │ │ ├── zh-hans │ │ │ └── System.AppContext.xml │ │ └── zh-hant │ │ │ └── System.AppContext.xml │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── runtimes │ └── aot │ └── lib │ └── netcore50 │ └── System.AppContext.dll ├── System.Collections.4.3.0 ├── .signature.p7s ├── System.Collections.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── portable-net45+win8+wp8+wpa81 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net45 │ └── _._ │ ├── netcore50 │ ├── System.Collections.dll │ ├── System.Collections.xml │ ├── de │ │ └── System.Collections.xml │ ├── es │ │ └── System.Collections.xml │ ├── fr │ │ └── System.Collections.xml │ ├── it │ │ └── System.Collections.xml │ ├── ja │ │ └── System.Collections.xml │ ├── ko │ │ └── System.Collections.xml │ ├── ru │ │ └── System.Collections.xml │ ├── zh-hans │ │ └── System.Collections.xml │ └── zh-hant │ │ └── System.Collections.xml │ ├── netstandard1.0 │ ├── System.Collections.dll │ ├── System.Collections.xml │ ├── de │ │ └── System.Collections.xml │ ├── es │ │ └── System.Collections.xml │ ├── fr │ │ └── System.Collections.xml │ ├── it │ │ └── System.Collections.xml │ ├── ja │ │ └── System.Collections.xml │ ├── ko │ │ └── System.Collections.xml │ ├── ru │ │ └── System.Collections.xml │ ├── zh-hans │ │ └── System.Collections.xml │ └── zh-hant │ │ └── System.Collections.xml │ ├── netstandard1.3 │ ├── System.Collections.dll │ ├── System.Collections.xml │ ├── de │ │ └── System.Collections.xml │ ├── es │ │ └── System.Collections.xml │ ├── fr │ │ └── System.Collections.xml │ ├── it │ │ └── System.Collections.xml │ ├── ja │ │ └── System.Collections.xml │ ├── ko │ │ └── System.Collections.xml │ ├── ru │ │ └── System.Collections.xml │ ├── zh-hans │ │ └── System.Collections.xml │ └── zh-hant │ │ └── System.Collections.xml │ ├── portable-net45+win8+wp8+wpa81 │ └── _._ │ ├── win8 │ └── _._ │ ├── wp80 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ ├── System.Collections.Concurrent.4.3.0 ├── .signature.p7s ├── System.Collections.Concurrent.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── netcore50 │ │ └── System.Collections.Concurrent.dll │ ├── netstandard1.3 │ │ └── System.Collections.Concurrent.dll │ ├── portable-net45+win8+wpa81 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net45 │ └── _._ │ ├── netcore50 │ ├── System.Collections.Concurrent.dll │ ├── System.Collections.Concurrent.xml │ ├── de │ │ └── System.Collections.Concurrent.xml │ ├── es │ │ └── System.Collections.Concurrent.xml │ ├── fr │ │ └── System.Collections.Concurrent.xml │ ├── it │ │ └── System.Collections.Concurrent.xml │ ├── ja │ │ └── System.Collections.Concurrent.xml │ ├── ko │ │ └── System.Collections.Concurrent.xml │ ├── ru │ │ └── System.Collections.Concurrent.xml │ ├── zh-hans │ │ └── System.Collections.Concurrent.xml │ └── zh-hant │ │ └── System.Collections.Concurrent.xml │ ├── netstandard1.1 │ ├── System.Collections.Concurrent.dll │ ├── System.Collections.Concurrent.xml │ ├── de │ │ └── System.Collections.Concurrent.xml │ ├── es │ │ └── System.Collections.Concurrent.xml │ ├── fr │ │ └── System.Collections.Concurrent.xml │ ├── it │ │ └── System.Collections.Concurrent.xml │ ├── ja │ │ └── System.Collections.Concurrent.xml │ ├── ko │ │ └── System.Collections.Concurrent.xml │ ├── ru │ │ └── System.Collections.Concurrent.xml │ ├── zh-hans │ │ └── System.Collections.Concurrent.xml │ └── zh-hant │ │ └── System.Collections.Concurrent.xml │ ├── netstandard1.3 │ ├── System.Collections.Concurrent.dll │ ├── System.Collections.Concurrent.xml │ ├── de │ │ └── System.Collections.Concurrent.xml │ ├── es │ │ └── System.Collections.Concurrent.xml │ ├── fr │ │ └── System.Collections.Concurrent.xml │ ├── it │ │ └── System.Collections.Concurrent.xml │ ├── ja │ │ └── System.Collections.Concurrent.xml │ ├── ko │ │ └── System.Collections.Concurrent.xml │ ├── ru │ │ └── System.Collections.Concurrent.xml │ ├── zh-hans │ │ └── System.Collections.Concurrent.xml │ └── zh-hant │ │ └── System.Collections.Concurrent.xml │ ├── portable-net45+win8+wpa81 │ └── _._ │ ├── win8 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ ├── System.Console.4.3.0 ├── .signature.p7s ├── System.Console.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net46 │ │ └── System.Console.dll │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net46 │ └── System.Console.dll │ ├── netstandard1.3 │ ├── System.Console.dll │ ├── System.Console.xml │ ├── de │ │ └── System.Console.xml │ ├── es │ │ └── System.Console.xml │ ├── fr │ │ └── System.Console.xml │ ├── it │ │ └── System.Console.xml │ ├── ja │ │ └── System.Console.xml │ ├── ko │ │ └── System.Console.xml │ ├── ru │ │ └── System.Console.xml │ ├── zh-hans │ │ └── System.Console.xml │ └── zh-hant │ │ └── System.Console.xml │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ ├── System.Diagnostics.Debug.4.3.0 ├── .signature.p7s ├── System.Diagnostics.Debug.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── portable-net45+win8+wp8+wpa81 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net45 │ └── _._ │ ├── netcore50 │ ├── System.Diagnostics.Debug.dll │ ├── System.Diagnostics.Debug.xml │ ├── de │ │ └── System.Diagnostics.Debug.xml │ ├── es │ │ └── System.Diagnostics.Debug.xml │ ├── fr │ │ └── System.Diagnostics.Debug.xml │ ├── it │ │ └── System.Diagnostics.Debug.xml │ ├── ja │ │ └── System.Diagnostics.Debug.xml │ ├── ko │ │ └── System.Diagnostics.Debug.xml │ ├── ru │ │ └── System.Diagnostics.Debug.xml │ ├── zh-hans │ │ └── System.Diagnostics.Debug.xml │ └── zh-hant │ │ └── System.Diagnostics.Debug.xml │ ├── netstandard1.0 │ ├── System.Diagnostics.Debug.dll │ ├── System.Diagnostics.Debug.xml │ ├── de │ │ └── System.Diagnostics.Debug.xml │ ├── es │ │ └── System.Diagnostics.Debug.xml │ ├── fr │ │ └── System.Diagnostics.Debug.xml │ ├── it │ │ └── System.Diagnostics.Debug.xml │ ├── ja │ │ └── System.Diagnostics.Debug.xml │ ├── ko │ │ └── System.Diagnostics.Debug.xml │ ├── ru │ │ └── System.Diagnostics.Debug.xml │ ├── zh-hans │ │ └── System.Diagnostics.Debug.xml │ └── zh-hant │ │ └── System.Diagnostics.Debug.xml │ ├── netstandard1.3 │ ├── System.Diagnostics.Debug.dll │ ├── System.Diagnostics.Debug.xml │ ├── de │ │ └── System.Diagnostics.Debug.xml │ ├── es │ │ └── System.Diagnostics.Debug.xml │ ├── fr │ │ └── System.Diagnostics.Debug.xml │ ├── it │ │ └── System.Diagnostics.Debug.xml │ ├── ja │ │ └── System.Diagnostics.Debug.xml │ ├── ko │ │ └── System.Diagnostics.Debug.xml │ ├── ru │ │ └── System.Diagnostics.Debug.xml │ ├── zh-hans │ │ └── System.Diagnostics.Debug.xml │ └── zh-hant │ │ └── System.Diagnostics.Debug.xml │ ├── portable-net45+win8+wp8+wpa81 │ └── _._ │ ├── win8 │ └── _._ │ ├── wp80 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ ├── System.Diagnostics.DiagnosticSource.4.3.0 ├── .signature.p7s ├── System.Diagnostics.DiagnosticSource.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt └── lib │ ├── net46 │ ├── System.Diagnostics.DiagnosticSource.dll │ └── System.Diagnostics.DiagnosticSource.xml │ ├── netstandard1.1 │ ├── System.Diagnostics.DiagnosticSource.dll │ └── System.Diagnostics.DiagnosticSource.xml │ ├── netstandard1.3 │ ├── System.Diagnostics.DiagnosticSource.dll │ └── System.Diagnostics.DiagnosticSource.xml │ └── portable-net45+win8+wpa81 │ ├── System.Diagnostics.DiagnosticSource.dll │ └── System.Diagnostics.DiagnosticSource.xml ├── System.Diagnostics.Tools.4.3.0 ├── .signature.p7s ├── System.Diagnostics.Tools.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── portable-net45+win8+wp8+wpa81 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net45 │ └── _._ │ ├── netcore50 │ ├── System.Diagnostics.Tools.dll │ ├── System.Diagnostics.Tools.xml │ ├── de │ │ └── System.Diagnostics.Tools.xml │ ├── es │ │ └── System.Diagnostics.Tools.xml │ ├── fr │ │ └── System.Diagnostics.Tools.xml │ ├── it │ │ └── System.Diagnostics.Tools.xml │ ├── ja │ │ └── System.Diagnostics.Tools.xml │ ├── ko │ │ └── System.Diagnostics.Tools.xml │ ├── ru │ │ └── System.Diagnostics.Tools.xml │ ├── zh-hans │ │ └── System.Diagnostics.Tools.xml │ └── zh-hant │ │ └── System.Diagnostics.Tools.xml │ ├── netstandard1.0 │ ├── System.Diagnostics.Tools.dll │ ├── System.Diagnostics.Tools.xml │ ├── de │ │ └── System.Diagnostics.Tools.xml │ ├── es │ │ └── System.Diagnostics.Tools.xml │ ├── fr │ │ └── System.Diagnostics.Tools.xml │ ├── it │ │ └── System.Diagnostics.Tools.xml │ ├── ja │ │ └── System.Diagnostics.Tools.xml │ ├── ko │ │ └── System.Diagnostics.Tools.xml │ ├── ru │ │ └── System.Diagnostics.Tools.xml │ ├── zh-hans │ │ └── System.Diagnostics.Tools.xml │ └── zh-hant │ │ └── System.Diagnostics.Tools.xml │ ├── portable-net45+win8+wp8+wpa81 │ └── _._ │ ├── win8 │ └── _._ │ ├── wp80 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ ├── System.Diagnostics.Tracing.4.3.0 ├── .signature.p7s ├── System.Diagnostics.Tracing.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── net462 │ │ └── System.Diagnostics.Tracing.dll │ ├── portable-net45+win8+wpa81 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net45 │ └── _._ │ ├── net462 │ └── System.Diagnostics.Tracing.dll │ ├── netcore50 │ ├── System.Diagnostics.Tracing.dll │ ├── System.Diagnostics.Tracing.xml │ ├── de │ │ └── System.Diagnostics.Tracing.xml │ ├── es │ │ └── System.Diagnostics.Tracing.xml │ ├── fr │ │ └── System.Diagnostics.Tracing.xml │ ├── it │ │ └── System.Diagnostics.Tracing.xml │ ├── ja │ │ └── System.Diagnostics.Tracing.xml │ ├── ko │ │ └── System.Diagnostics.Tracing.xml │ ├── ru │ │ └── System.Diagnostics.Tracing.xml │ ├── zh-hans │ │ └── System.Diagnostics.Tracing.xml │ └── zh-hant │ │ └── System.Diagnostics.Tracing.xml │ ├── netstandard1.1 │ ├── System.Diagnostics.Tracing.dll │ ├── System.Diagnostics.Tracing.xml │ ├── de │ │ └── System.Diagnostics.Tracing.xml │ ├── es │ │ └── System.Diagnostics.Tracing.xml │ ├── fr │ │ └── System.Diagnostics.Tracing.xml │ ├── it │ │ └── System.Diagnostics.Tracing.xml │ ├── ja │ │ └── System.Diagnostics.Tracing.xml │ ├── ko │ │ └── System.Diagnostics.Tracing.xml │ ├── ru │ │ └── System.Diagnostics.Tracing.xml │ ├── zh-hans │ │ └── System.Diagnostics.Tracing.xml │ └── zh-hant │ │ └── System.Diagnostics.Tracing.xml │ ├── netstandard1.2 │ ├── System.Diagnostics.Tracing.dll │ ├── System.Diagnostics.Tracing.xml │ ├── de │ │ └── System.Diagnostics.Tracing.xml │ ├── es │ │ └── System.Diagnostics.Tracing.xml │ ├── fr │ │ └── System.Diagnostics.Tracing.xml │ ├── it │ │ └── System.Diagnostics.Tracing.xml │ ├── ja │ │ └── System.Diagnostics.Tracing.xml │ ├── ko │ │ └── System.Diagnostics.Tracing.xml │ ├── ru │ │ └── System.Diagnostics.Tracing.xml │ ├── zh-hans │ │ └── System.Diagnostics.Tracing.xml │ └── zh-hant │ │ └── System.Diagnostics.Tracing.xml │ ├── netstandard1.3 │ ├── System.Diagnostics.Tracing.dll │ ├── System.Diagnostics.Tracing.xml │ ├── de │ │ └── System.Diagnostics.Tracing.xml │ ├── es │ │ └── System.Diagnostics.Tracing.xml │ ├── fr │ │ └── System.Diagnostics.Tracing.xml │ ├── it │ │ └── System.Diagnostics.Tracing.xml │ ├── ja │ │ └── System.Diagnostics.Tracing.xml │ ├── ko │ │ └── System.Diagnostics.Tracing.xml │ ├── ru │ │ └── System.Diagnostics.Tracing.xml │ ├── zh-hans │ │ └── System.Diagnostics.Tracing.xml │ └── zh-hant │ │ └── System.Diagnostics.Tracing.xml │ ├── netstandard1.5 │ ├── System.Diagnostics.Tracing.dll │ ├── System.Diagnostics.Tracing.xml │ ├── de │ │ └── System.Diagnostics.Tracing.xml │ ├── es │ │ └── System.Diagnostics.Tracing.xml │ ├── fr │ │ └── System.Diagnostics.Tracing.xml │ ├── it │ │ └── System.Diagnostics.Tracing.xml │ ├── ja │ │ └── System.Diagnostics.Tracing.xml │ ├── ko │ │ └── System.Diagnostics.Tracing.xml │ ├── ru │ │ └── System.Diagnostics.Tracing.xml │ ├── zh-hans │ │ └── System.Diagnostics.Tracing.xml │ └── zh-hant │ │ └── System.Diagnostics.Tracing.xml │ ├── portable-net45+win8+wpa81 │ └── _._ │ ├── win8 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ ├── System.Globalization.4.3.0 ├── .signature.p7s ├── System.Globalization.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── portable-net45+win8+wp8+wpa81 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net45 │ └── _._ │ ├── netcore50 │ ├── System.Globalization.dll │ ├── System.Globalization.xml │ ├── de │ │ └── System.Globalization.xml │ ├── es │ │ └── System.Globalization.xml │ ├── fr │ │ └── System.Globalization.xml │ ├── it │ │ └── System.Globalization.xml │ ├── ja │ │ └── System.Globalization.xml │ ├── ko │ │ └── System.Globalization.xml │ ├── ru │ │ └── System.Globalization.xml │ ├── zh-hans │ │ └── System.Globalization.xml │ └── zh-hant │ │ └── System.Globalization.xml │ ├── netstandard1.0 │ ├── System.Globalization.dll │ ├── System.Globalization.xml │ ├── de │ │ └── System.Globalization.xml │ ├── es │ │ └── System.Globalization.xml │ ├── fr │ │ └── System.Globalization.xml │ ├── it │ │ └── System.Globalization.xml │ ├── ja │ │ └── System.Globalization.xml │ ├── ko │ │ └── System.Globalization.xml │ ├── ru │ │ └── System.Globalization.xml │ ├── zh-hans │ │ └── System.Globalization.xml │ └── zh-hant │ │ └── System.Globalization.xml │ ├── netstandard1.3 │ ├── System.Globalization.dll │ ├── System.Globalization.xml │ ├── de │ │ └── System.Globalization.xml │ ├── es │ │ └── System.Globalization.xml │ ├── fr │ │ └── System.Globalization.xml │ ├── it │ │ └── System.Globalization.xml │ ├── ja │ │ └── System.Globalization.xml │ ├── ko │ │ └── System.Globalization.xml │ ├── ru │ │ └── System.Globalization.xml │ ├── zh-hans │ │ └── System.Globalization.xml │ └── zh-hant │ │ └── System.Globalization.xml │ ├── portable-net45+win8+wp8+wpa81 │ └── _._ │ ├── win8 │ └── _._ │ ├── wp80 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ ├── System.Globalization.Calendars.4.3.0 ├── .signature.p7s ├── System.Globalization.Calendars.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net46 │ │ └── System.Globalization.Calendars.dll │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net46 │ └── System.Globalization.Calendars.dll │ ├── netstandard1.3 │ ├── System.Globalization.Calendars.dll │ ├── System.Globalization.Calendars.xml │ ├── de │ │ └── System.Globalization.Calendars.xml │ ├── es │ │ └── System.Globalization.Calendars.xml │ ├── fr │ │ └── System.Globalization.Calendars.xml │ ├── it │ │ └── System.Globalization.Calendars.xml │ ├── ja │ │ └── System.Globalization.Calendars.xml │ ├── ko │ │ └── System.Globalization.Calendars.xml │ ├── ru │ │ └── System.Globalization.Calendars.xml │ ├── zh-hans │ │ └── System.Globalization.Calendars.xml │ └── zh-hant │ │ └── System.Globalization.Calendars.xml │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ ├── System.IO.4.3.0 ├── .signature.p7s ├── System.IO.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── net462 │ │ └── System.IO.dll │ ├── portable-net45+win8+wp8+wpa81 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net45 │ └── _._ │ ├── net462 │ └── System.IO.dll │ ├── netcore50 │ ├── System.IO.dll │ ├── System.IO.xml │ ├── de │ │ └── System.IO.xml │ ├── es │ │ └── System.IO.xml │ ├── fr │ │ └── System.IO.xml │ ├── it │ │ └── System.IO.xml │ ├── ja │ │ └── System.IO.xml │ ├── ko │ │ └── System.IO.xml │ ├── ru │ │ └── System.IO.xml │ ├── zh-hans │ │ └── System.IO.xml │ └── zh-hant │ │ └── System.IO.xml │ ├── netstandard1.0 │ ├── System.IO.dll │ ├── System.IO.xml │ ├── de │ │ └── System.IO.xml │ ├── es │ │ └── System.IO.xml │ ├── fr │ │ └── System.IO.xml │ ├── it │ │ └── System.IO.xml │ ├── ja │ │ └── System.IO.xml │ ├── ko │ │ └── System.IO.xml │ ├── ru │ │ └── System.IO.xml │ ├── zh-hans │ │ └── System.IO.xml │ └── zh-hant │ │ └── System.IO.xml │ ├── netstandard1.3 │ ├── System.IO.dll │ ├── System.IO.xml │ ├── de │ │ └── System.IO.xml │ ├── es │ │ └── System.IO.xml │ ├── fr │ │ └── System.IO.xml │ ├── it │ │ └── System.IO.xml │ ├── ja │ │ └── System.IO.xml │ ├── ko │ │ └── System.IO.xml │ ├── ru │ │ └── System.IO.xml │ ├── zh-hans │ │ └── System.IO.xml │ └── zh-hant │ │ └── System.IO.xml │ ├── netstandard1.5 │ ├── System.IO.dll │ ├── System.IO.xml │ ├── de │ │ └── System.IO.xml │ ├── es │ │ └── System.IO.xml │ ├── fr │ │ └── System.IO.xml │ ├── it │ │ └── System.IO.xml │ ├── ja │ │ └── System.IO.xml │ ├── ko │ │ └── System.IO.xml │ ├── ru │ │ └── System.IO.xml │ ├── zh-hans │ │ └── System.IO.xml │ └── zh-hant │ │ └── System.IO.xml │ ├── portable-net45+win8+wp8+wpa81 │ └── _._ │ ├── win8 │ └── _._ │ ├── wp80 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ ├── System.IO.Compression.4.3.0 ├── .signature.p7s ├── System.IO.Compression.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── net46 │ │ └── System.IO.Compression.dll │ ├── portable-net45+win8+wpa81 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ ├── ref │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── net46 │ │ └── System.IO.Compression.dll │ ├── netcore50 │ │ ├── System.IO.Compression.dll │ │ ├── System.IO.Compression.xml │ │ ├── de │ │ │ └── System.IO.Compression.xml │ │ ├── es │ │ │ └── System.IO.Compression.xml │ │ ├── fr │ │ │ └── System.IO.Compression.xml │ │ ├── it │ │ │ └── System.IO.Compression.xml │ │ ├── ja │ │ │ └── System.IO.Compression.xml │ │ ├── ko │ │ │ └── System.IO.Compression.xml │ │ ├── ru │ │ │ └── System.IO.Compression.xml │ │ ├── zh-hans │ │ │ └── System.IO.Compression.xml │ │ └── zh-hant │ │ │ └── System.IO.Compression.xml │ ├── netstandard1.1 │ │ ├── System.IO.Compression.dll │ │ ├── System.IO.Compression.xml │ │ ├── de │ │ │ └── System.IO.Compression.xml │ │ ├── es │ │ │ └── System.IO.Compression.xml │ │ ├── fr │ │ │ └── System.IO.Compression.xml │ │ ├── it │ │ │ └── System.IO.Compression.xml │ │ ├── ja │ │ │ └── System.IO.Compression.xml │ │ ├── ko │ │ │ └── System.IO.Compression.xml │ │ ├── ru │ │ │ └── System.IO.Compression.xml │ │ ├── zh-hans │ │ │ └── System.IO.Compression.xml │ │ └── zh-hant │ │ │ └── System.IO.Compression.xml │ ├── netstandard1.3 │ │ ├── System.IO.Compression.dll │ │ ├── System.IO.Compression.xml │ │ ├── de │ │ │ └── System.IO.Compression.xml │ │ ├── es │ │ │ └── System.IO.Compression.xml │ │ ├── fr │ │ │ └── System.IO.Compression.xml │ │ ├── it │ │ │ └── System.IO.Compression.xml │ │ ├── ja │ │ │ └── System.IO.Compression.xml │ │ ├── ko │ │ │ └── System.IO.Compression.xml │ │ ├── ru │ │ │ └── System.IO.Compression.xml │ │ ├── zh-hans │ │ │ └── System.IO.Compression.xml │ │ └── zh-hant │ │ │ └── System.IO.Compression.xml │ ├── portable-net45+win8+wpa81 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── runtimes │ ├── unix │ └── lib │ │ └── netstandard1.3 │ │ └── System.IO.Compression.dll │ └── win │ └── lib │ ├── net46 │ └── System.IO.Compression.dll │ └── netstandard1.3 │ └── System.IO.Compression.dll ├── System.IO.Compression.ZipFile.4.3.0 ├── .signature.p7s ├── System.IO.Compression.ZipFile.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net46 │ │ └── System.IO.Compression.ZipFile.dll │ ├── netstandard1.3 │ │ └── System.IO.Compression.ZipFile.dll │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net46 │ └── System.IO.Compression.ZipFile.dll │ ├── netstandard1.3 │ ├── System.IO.Compression.ZipFile.dll │ ├── System.IO.Compression.ZipFile.xml │ ├── de │ │ └── System.IO.Compression.ZipFile.xml │ ├── es │ │ └── System.IO.Compression.ZipFile.xml │ ├── fr │ │ └── System.IO.Compression.ZipFile.xml │ ├── it │ │ └── System.IO.Compression.ZipFile.xml │ ├── ja │ │ └── System.IO.Compression.ZipFile.xml │ ├── ko │ │ └── System.IO.Compression.ZipFile.xml │ ├── ru │ │ └── System.IO.Compression.ZipFile.xml │ ├── zh-hans │ │ └── System.IO.Compression.ZipFile.xml │ └── zh-hant │ │ └── System.IO.Compression.ZipFile.xml │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ ├── System.IO.FileSystem.4.3.0 ├── .signature.p7s ├── System.IO.FileSystem.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net46 │ │ └── System.IO.FileSystem.dll │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net46 │ └── System.IO.FileSystem.dll │ ├── netstandard1.3 │ ├── System.IO.FileSystem.dll │ ├── System.IO.FileSystem.xml │ ├── de │ │ └── System.IO.FileSystem.xml │ ├── es │ │ └── System.IO.FileSystem.xml │ ├── fr │ │ └── System.IO.FileSystem.xml │ ├── it │ │ └── System.IO.FileSystem.xml │ ├── ja │ │ └── System.IO.FileSystem.xml │ ├── ko │ │ └── System.IO.FileSystem.xml │ ├── ru │ │ └── System.IO.FileSystem.xml │ ├── zh-hans │ │ └── System.IO.FileSystem.xml │ └── zh-hant │ │ └── System.IO.FileSystem.xml │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ ├── System.IO.FileSystem.Primitives.4.3.0 ├── .signature.p7s ├── System.IO.FileSystem.Primitives.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net46 │ │ └── System.IO.FileSystem.Primitives.dll │ ├── netstandard1.3 │ │ └── System.IO.FileSystem.Primitives.dll │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net46 │ └── System.IO.FileSystem.Primitives.dll │ ├── netstandard1.3 │ ├── System.IO.FileSystem.Primitives.dll │ ├── System.IO.FileSystem.Primitives.xml │ ├── de │ │ └── System.IO.FileSystem.Primitives.xml │ ├── es │ │ └── System.IO.FileSystem.Primitives.xml │ ├── fr │ │ └── System.IO.FileSystem.Primitives.xml │ ├── it │ │ └── System.IO.FileSystem.Primitives.xml │ ├── ja │ │ └── System.IO.FileSystem.Primitives.xml │ ├── ko │ │ └── System.IO.FileSystem.Primitives.xml │ ├── ru │ │ └── System.IO.FileSystem.Primitives.xml │ ├── zh-hans │ │ └── System.IO.FileSystem.Primitives.xml │ └── zh-hant │ │ └── System.IO.FileSystem.Primitives.xml │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ ├── System.Linq.4.3.0 ├── .signature.p7s ├── System.Linq.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── net463 │ │ └── System.Linq.dll │ ├── netcore50 │ │ └── System.Linq.dll │ ├── netstandard1.6 │ │ └── System.Linq.dll │ ├── portable-net45+win8+wp8+wpa81 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net45 │ └── _._ │ ├── net463 │ └── System.Linq.dll │ ├── netcore50 │ ├── System.Linq.dll │ ├── System.Linq.xml │ ├── de │ │ └── System.Linq.xml │ ├── es │ │ └── System.Linq.xml │ ├── fr │ │ └── System.Linq.xml │ ├── it │ │ └── System.Linq.xml │ ├── ja │ │ └── System.Linq.xml │ ├── ko │ │ └── System.Linq.xml │ ├── ru │ │ └── System.Linq.xml │ ├── zh-hans │ │ └── System.Linq.xml │ └── zh-hant │ │ └── System.Linq.xml │ ├── netstandard1.0 │ ├── System.Linq.dll │ ├── System.Linq.xml │ ├── de │ │ └── System.Linq.xml │ ├── es │ │ └── System.Linq.xml │ ├── fr │ │ └── System.Linq.xml │ ├── it │ │ └── System.Linq.xml │ ├── ja │ │ └── System.Linq.xml │ ├── ko │ │ └── System.Linq.xml │ ├── ru │ │ └── System.Linq.xml │ ├── zh-hans │ │ └── System.Linq.xml │ └── zh-hant │ │ └── System.Linq.xml │ ├── netstandard1.6 │ ├── System.Linq.dll │ ├── System.Linq.xml │ ├── de │ │ └── System.Linq.xml │ ├── es │ │ └── System.Linq.xml │ ├── fr │ │ └── System.Linq.xml │ ├── it │ │ └── System.Linq.xml │ ├── ja │ │ └── System.Linq.xml │ ├── ko │ │ └── System.Linq.xml │ ├── ru │ │ └── System.Linq.xml │ ├── zh-hans │ │ └── System.Linq.xml │ └── zh-hant │ │ └── System.Linq.xml │ ├── portable-net45+win8+wp8+wpa81 │ └── _._ │ ├── win8 │ └── _._ │ ├── wp80 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ ├── System.Linq.Expressions.4.3.0 ├── .signature.p7s ├── System.Linq.Expressions.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── net463 │ │ └── System.Linq.Expressions.dll │ ├── netcore50 │ │ └── System.Linq.Expressions.dll │ ├── netstandard1.6 │ │ └── System.Linq.Expressions.dll │ ├── portable-net45+win8+wp8+wpa81 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ ├── ref │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── net463 │ │ └── System.Linq.Expressions.dll │ ├── netcore50 │ │ ├── System.Linq.Expressions.dll │ │ ├── System.Linq.Expressions.xml │ │ ├── de │ │ │ └── System.Linq.Expressions.xml │ │ ├── es │ │ │ └── System.Linq.Expressions.xml │ │ ├── fr │ │ │ └── System.Linq.Expressions.xml │ │ ├── it │ │ │ └── System.Linq.Expressions.xml │ │ ├── ja │ │ │ └── System.Linq.Expressions.xml │ │ ├── ko │ │ │ └── System.Linq.Expressions.xml │ │ ├── ru │ │ │ └── System.Linq.Expressions.xml │ │ ├── zh-hans │ │ │ └── System.Linq.Expressions.xml │ │ └── zh-hant │ │ │ └── System.Linq.Expressions.xml │ ├── netstandard1.0 │ │ ├── System.Linq.Expressions.dll │ │ ├── System.Linq.Expressions.xml │ │ ├── de │ │ │ └── System.Linq.Expressions.xml │ │ ├── es │ │ │ └── System.Linq.Expressions.xml │ │ ├── fr │ │ │ └── System.Linq.Expressions.xml │ │ ├── it │ │ │ └── System.Linq.Expressions.xml │ │ ├── ja │ │ │ └── System.Linq.Expressions.xml │ │ ├── ko │ │ │ └── System.Linq.Expressions.xml │ │ ├── ru │ │ │ └── System.Linq.Expressions.xml │ │ ├── zh-hans │ │ │ └── System.Linq.Expressions.xml │ │ └── zh-hant │ │ │ └── System.Linq.Expressions.xml │ ├── netstandard1.3 │ │ ├── System.Linq.Expressions.dll │ │ ├── System.Linq.Expressions.xml │ │ ├── de │ │ │ └── System.Linq.Expressions.xml │ │ ├── es │ │ │ └── System.Linq.Expressions.xml │ │ ├── fr │ │ │ └── System.Linq.Expressions.xml │ │ ├── it │ │ │ └── System.Linq.Expressions.xml │ │ ├── ja │ │ │ └── System.Linq.Expressions.xml │ │ ├── ko │ │ │ └── System.Linq.Expressions.xml │ │ ├── ru │ │ │ └── System.Linq.Expressions.xml │ │ ├── zh-hans │ │ │ └── System.Linq.Expressions.xml │ │ └── zh-hant │ │ │ └── System.Linq.Expressions.xml │ ├── netstandard1.6 │ │ ├── System.Linq.Expressions.dll │ │ ├── System.Linq.Expressions.xml │ │ ├── de │ │ │ └── System.Linq.Expressions.xml │ │ ├── es │ │ │ └── System.Linq.Expressions.xml │ │ ├── fr │ │ │ └── System.Linq.Expressions.xml │ │ ├── it │ │ │ └── System.Linq.Expressions.xml │ │ ├── ja │ │ │ └── System.Linq.Expressions.xml │ │ ├── ko │ │ │ └── System.Linq.Expressions.xml │ │ ├── ru │ │ │ └── System.Linq.Expressions.xml │ │ ├── zh-hans │ │ │ └── System.Linq.Expressions.xml │ │ └── zh-hant │ │ │ └── System.Linq.Expressions.xml │ ├── portable-net45+win8+wp8+wpa81 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── runtimes │ └── aot │ └── lib │ └── netcore50 │ └── System.Linq.Expressions.dll ├── System.Net.Http.4.3.0 ├── .signature.p7s ├── System.Net.Http.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── Xamarinmac20 │ │ └── _._ │ ├── monoandroid10 │ │ └── _._ │ ├── monotouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── net46 │ │ └── System.Net.Http.dll │ ├── portable-net45+win8+wpa81 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ ├── ref │ ├── Xamarinmac20 │ │ └── _._ │ ├── monoandroid10 │ │ └── _._ │ ├── monotouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── net46 │ │ ├── System.Net.Http.dll │ │ ├── System.Net.Http.xml │ │ ├── de │ │ │ └── System.Net.Http.xml │ │ ├── es │ │ │ └── System.Net.Http.xml │ │ ├── fr │ │ │ └── System.Net.Http.xml │ │ ├── it │ │ │ └── System.Net.Http.xml │ │ ├── ja │ │ │ └── System.Net.Http.xml │ │ ├── ko │ │ │ └── System.Net.Http.xml │ │ ├── ru │ │ │ └── System.Net.Http.xml │ │ ├── zh-hans │ │ │ └── System.Net.Http.xml │ │ └── zh-hant │ │ │ └── System.Net.Http.xml │ ├── netcore50 │ │ ├── System.Net.Http.dll │ │ ├── System.Net.Http.xml │ │ ├── de │ │ │ └── System.Net.Http.xml │ │ ├── es │ │ │ └── System.Net.Http.xml │ │ ├── fr │ │ │ └── System.Net.Http.xml │ │ ├── it │ │ │ └── System.Net.Http.xml │ │ ├── ja │ │ │ └── System.Net.Http.xml │ │ ├── ko │ │ │ └── System.Net.Http.xml │ │ ├── ru │ │ │ └── System.Net.Http.xml │ │ ├── zh-hans │ │ │ └── System.Net.Http.xml │ │ └── zh-hant │ │ │ └── System.Net.Http.xml │ ├── netstandard1.1 │ │ ├── System.Net.Http.dll │ │ ├── System.Net.Http.xml │ │ ├── de │ │ │ └── System.Net.Http.xml │ │ ├── es │ │ │ └── System.Net.Http.xml │ │ ├── fr │ │ │ └── System.Net.Http.xml │ │ ├── it │ │ │ └── System.Net.Http.xml │ │ ├── ja │ │ │ └── System.Net.Http.xml │ │ ├── ko │ │ │ └── System.Net.Http.xml │ │ ├── ru │ │ │ └── System.Net.Http.xml │ │ ├── zh-hans │ │ │ └── System.Net.Http.xml │ │ └── zh-hant │ │ │ └── System.Net.Http.xml │ ├── netstandard1.3 │ │ ├── System.Net.Http.dll │ │ ├── System.Net.Http.xml │ │ ├── de │ │ │ └── System.Net.Http.xml │ │ ├── es │ │ │ └── System.Net.Http.xml │ │ ├── fr │ │ │ └── System.Net.Http.xml │ │ ├── it │ │ │ └── System.Net.Http.xml │ │ ├── ja │ │ │ └── System.Net.Http.xml │ │ ├── ko │ │ │ └── System.Net.Http.xml │ │ ├── ru │ │ │ └── System.Net.Http.xml │ │ ├── zh-hans │ │ │ └── System.Net.Http.xml │ │ └── zh-hant │ │ │ └── System.Net.Http.xml │ ├── portable-net45+win8+wpa81 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── runtimes │ ├── unix │ └── lib │ │ └── netstandard1.6 │ │ └── System.Net.Http.dll │ └── win │ └── lib │ ├── net46 │ └── System.Net.Http.dll │ ├── netcore50 │ └── System.Net.Http.dll │ └── netstandard1.3 │ └── System.Net.Http.dll ├── System.Net.Primitives.4.3.0 ├── .signature.p7s ├── System.Net.Primitives.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── portable-net45+win8+wp8+wpa81 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net45 │ └── _._ │ ├── netcore50 │ ├── System.Net.Primitives.dll │ ├── System.Net.Primitives.xml │ ├── de │ │ └── System.Net.Primitives.xml │ ├── es │ │ └── System.Net.Primitives.xml │ ├── fr │ │ └── System.Net.Primitives.xml │ ├── it │ │ └── System.Net.Primitives.xml │ ├── ja │ │ └── System.Net.Primitives.xml │ ├── ko │ │ └── System.Net.Primitives.xml │ ├── ru │ │ └── System.Net.Primitives.xml │ ├── zh-hans │ │ └── System.Net.Primitives.xml │ └── zh-hant │ │ └── System.Net.Primitives.xml │ ├── netstandard1.0 │ ├── System.Net.Primitives.dll │ ├── System.Net.Primitives.xml │ ├── de │ │ └── System.Net.Primitives.xml │ ├── es │ │ └── System.Net.Primitives.xml │ ├── fr │ │ └── System.Net.Primitives.xml │ ├── it │ │ └── System.Net.Primitives.xml │ ├── ja │ │ └── System.Net.Primitives.xml │ ├── ko │ │ └── System.Net.Primitives.xml │ ├── ru │ │ └── System.Net.Primitives.xml │ ├── zh-hans │ │ └── System.Net.Primitives.xml │ └── zh-hant │ │ └── System.Net.Primitives.xml │ ├── netstandard1.1 │ ├── System.Net.Primitives.dll │ ├── System.Net.Primitives.xml │ ├── de │ │ └── System.Net.Primitives.xml │ ├── es │ │ └── System.Net.Primitives.xml │ ├── fr │ │ └── System.Net.Primitives.xml │ ├── it │ │ └── System.Net.Primitives.xml │ ├── ja │ │ └── System.Net.Primitives.xml │ ├── ko │ │ └── System.Net.Primitives.xml │ ├── ru │ │ └── System.Net.Primitives.xml │ ├── zh-hans │ │ └── System.Net.Primitives.xml │ └── zh-hant │ │ └── System.Net.Primitives.xml │ ├── netstandard1.3 │ ├── System.Net.Primitives.dll │ ├── System.Net.Primitives.xml │ ├── de │ │ └── System.Net.Primitives.xml │ ├── es │ │ └── System.Net.Primitives.xml │ ├── fr │ │ └── System.Net.Primitives.xml │ ├── it │ │ └── System.Net.Primitives.xml │ ├── ja │ │ └── System.Net.Primitives.xml │ ├── ko │ │ └── System.Net.Primitives.xml │ ├── ru │ │ └── System.Net.Primitives.xml │ ├── zh-hans │ │ └── System.Net.Primitives.xml │ └── zh-hant │ │ └── System.Net.Primitives.xml │ ├── portable-net45+win8+wp8+wpa81 │ └── _._ │ ├── win8 │ └── _._ │ ├── wp80 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ ├── System.Net.Sockets.4.3.0 ├── .signature.p7s ├── System.Net.Sockets.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net46 │ │ └── System.Net.Sockets.dll │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net46 │ └── System.Net.Sockets.dll │ ├── netstandard1.3 │ ├── System.Net.Sockets.dll │ ├── System.Net.Sockets.xml │ ├── de │ │ └── System.Net.Sockets.xml │ ├── es │ │ └── System.Net.Sockets.xml │ ├── fr │ │ └── System.Net.Sockets.xml │ ├── it │ │ └── System.Net.Sockets.xml │ ├── ja │ │ └── System.Net.Sockets.xml │ ├── ko │ │ └── System.Net.Sockets.xml │ ├── ru │ │ └── System.Net.Sockets.xml │ ├── zh-hans │ │ └── System.Net.Sockets.xml │ └── zh-hant │ │ └── System.Net.Sockets.xml │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ ├── System.ObjectModel.4.3.0 ├── .signature.p7s ├── System.ObjectModel.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── netcore50 │ │ └── System.ObjectModel.dll │ ├── netstandard1.3 │ │ └── System.ObjectModel.dll │ ├── portable-net45+win8+wp8+wpa81 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net45 │ └── _._ │ ├── netcore50 │ ├── System.ObjectModel.dll │ ├── System.ObjectModel.xml │ ├── de │ │ └── System.ObjectModel.xml │ ├── es │ │ └── System.ObjectModel.xml │ ├── fr │ │ └── System.ObjectModel.xml │ ├── it │ │ └── System.ObjectModel.xml │ ├── ja │ │ └── System.ObjectModel.xml │ ├── ko │ │ └── System.ObjectModel.xml │ ├── ru │ │ └── System.ObjectModel.xml │ ├── zh-hans │ │ └── System.ObjectModel.xml │ └── zh-hant │ │ └── System.ObjectModel.xml │ ├── netstandard1.0 │ ├── System.ObjectModel.dll │ ├── System.ObjectModel.xml │ ├── de │ │ └── System.ObjectModel.xml │ ├── es │ │ └── System.ObjectModel.xml │ ├── fr │ │ └── System.ObjectModel.xml │ ├── it │ │ └── System.ObjectModel.xml │ ├── ja │ │ └── System.ObjectModel.xml │ ├── ko │ │ └── System.ObjectModel.xml │ ├── ru │ │ └── System.ObjectModel.xml │ ├── zh-hans │ │ └── System.ObjectModel.xml │ └── zh-hant │ │ └── System.ObjectModel.xml │ ├── netstandard1.3 │ ├── System.ObjectModel.dll │ ├── System.ObjectModel.xml │ ├── de │ │ └── System.ObjectModel.xml │ ├── es │ │ └── System.ObjectModel.xml │ ├── fr │ │ └── System.ObjectModel.xml │ ├── it │ │ └── System.ObjectModel.xml │ ├── ja │ │ └── System.ObjectModel.xml │ ├── ko │ │ └── System.ObjectModel.xml │ ├── ru │ │ └── System.ObjectModel.xml │ ├── zh-hans │ │ └── System.ObjectModel.xml │ └── zh-hant │ │ └── System.ObjectModel.xml │ ├── portable-net45+win8+wp8+wpa81 │ └── _._ │ ├── win8 │ └── _._ │ ├── wp80 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ ├── System.Reflection.4.3.0 ├── .signature.p7s ├── System.Reflection.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── net462 │ │ └── System.Reflection.dll │ ├── portable-net45+win8+wp8+wpa81 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net45 │ └── _._ │ ├── net462 │ └── System.Reflection.dll │ ├── netcore50 │ ├── System.Reflection.dll │ ├── System.Reflection.xml │ ├── de │ │ └── System.Reflection.xml │ ├── es │ │ └── System.Reflection.xml │ ├── fr │ │ └── System.Reflection.xml │ ├── it │ │ └── System.Reflection.xml │ ├── ja │ │ └── System.Reflection.xml │ ├── ko │ │ └── System.Reflection.xml │ ├── ru │ │ └── System.Reflection.xml │ ├── zh-hans │ │ └── System.Reflection.xml │ └── zh-hant │ │ └── System.Reflection.xml │ ├── netstandard1.0 │ ├── System.Reflection.dll │ ├── System.Reflection.xml │ ├── de │ │ └── System.Reflection.xml │ ├── es │ │ └── System.Reflection.xml │ ├── fr │ │ └── System.Reflection.xml │ ├── it │ │ └── System.Reflection.xml │ ├── ja │ │ └── System.Reflection.xml │ ├── ko │ │ └── System.Reflection.xml │ ├── ru │ │ └── System.Reflection.xml │ ├── zh-hans │ │ └── System.Reflection.xml │ └── zh-hant │ │ └── System.Reflection.xml │ ├── netstandard1.3 │ ├── System.Reflection.dll │ ├── System.Reflection.xml │ ├── de │ │ └── System.Reflection.xml │ ├── es │ │ └── System.Reflection.xml │ ├── fr │ │ └── System.Reflection.xml │ ├── it │ │ └── System.Reflection.xml │ ├── ja │ │ └── System.Reflection.xml │ ├── ko │ │ └── System.Reflection.xml │ ├── ru │ │ └── System.Reflection.xml │ ├── zh-hans │ │ └── System.Reflection.xml │ └── zh-hant │ │ └── System.Reflection.xml │ ├── netstandard1.5 │ ├── System.Reflection.dll │ ├── System.Reflection.xml │ ├── de │ │ └── System.Reflection.xml │ ├── es │ │ └── System.Reflection.xml │ ├── fr │ │ └── System.Reflection.xml │ ├── it │ │ └── System.Reflection.xml │ ├── ja │ │ └── System.Reflection.xml │ ├── ko │ │ └── System.Reflection.xml │ ├── ru │ │ └── System.Reflection.xml │ ├── zh-hans │ │ └── System.Reflection.xml │ └── zh-hant │ │ └── System.Reflection.xml │ ├── portable-net45+win8+wp8+wpa81 │ └── _._ │ ├── win8 │ └── _._ │ ├── wp80 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ ├── System.Reflection.Extensions.4.3.0 ├── .signature.p7s ├── System.Reflection.Extensions.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── portable-net45+win8+wp8+wpa81 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net45 │ └── _._ │ ├── netcore50 │ ├── System.Reflection.Extensions.dll │ ├── System.Reflection.Extensions.xml │ ├── de │ │ └── System.Reflection.Extensions.xml │ ├── es │ │ └── System.Reflection.Extensions.xml │ ├── fr │ │ └── System.Reflection.Extensions.xml │ ├── it │ │ └── System.Reflection.Extensions.xml │ ├── ja │ │ └── System.Reflection.Extensions.xml │ ├── ko │ │ └── System.Reflection.Extensions.xml │ ├── ru │ │ └── System.Reflection.Extensions.xml │ ├── zh-hans │ │ └── System.Reflection.Extensions.xml │ └── zh-hant │ │ └── System.Reflection.Extensions.xml │ ├── netstandard1.0 │ ├── System.Reflection.Extensions.dll │ ├── System.Reflection.Extensions.xml │ ├── de │ │ └── System.Reflection.Extensions.xml │ ├── es │ │ └── System.Reflection.Extensions.xml │ ├── fr │ │ └── System.Reflection.Extensions.xml │ ├── it │ │ └── System.Reflection.Extensions.xml │ ├── ja │ │ └── System.Reflection.Extensions.xml │ ├── ko │ │ └── System.Reflection.Extensions.xml │ ├── ru │ │ └── System.Reflection.Extensions.xml │ ├── zh-hans │ │ └── System.Reflection.Extensions.xml │ └── zh-hant │ │ └── System.Reflection.Extensions.xml │ ├── portable-net45+win8+wp8+wpa81 │ └── _._ │ ├── win8 │ └── _._ │ ├── wp80 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ ├── System.Reflection.Primitives.4.3.0 ├── .signature.p7s ├── System.Reflection.Primitives.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── portable-net45+win8+wp8+wpa81 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net45 │ └── _._ │ ├── netcore50 │ ├── System.Reflection.Primitives.dll │ ├── System.Reflection.Primitives.xml │ ├── de │ │ └── System.Reflection.Primitives.xml │ ├── es │ │ └── System.Reflection.Primitives.xml │ ├── fr │ │ └── System.Reflection.Primitives.xml │ ├── it │ │ └── System.Reflection.Primitives.xml │ ├── ja │ │ └── System.Reflection.Primitives.xml │ ├── ko │ │ └── System.Reflection.Primitives.xml │ ├── ru │ │ └── System.Reflection.Primitives.xml │ ├── zh-hans │ │ └── System.Reflection.Primitives.xml │ └── zh-hant │ │ └── System.Reflection.Primitives.xml │ ├── netstandard1.0 │ ├── System.Reflection.Primitives.dll │ ├── System.Reflection.Primitives.xml │ ├── de │ │ └── System.Reflection.Primitives.xml │ ├── es │ │ └── System.Reflection.Primitives.xml │ ├── fr │ │ └── System.Reflection.Primitives.xml │ ├── it │ │ └── System.Reflection.Primitives.xml │ ├── ja │ │ └── System.Reflection.Primitives.xml │ ├── ko │ │ └── System.Reflection.Primitives.xml │ ├── ru │ │ └── System.Reflection.Primitives.xml │ ├── zh-hans │ │ └── System.Reflection.Primitives.xml │ └── zh-hant │ │ └── System.Reflection.Primitives.xml │ ├── portable-net45+win8+wp8+wpa81 │ └── _._ │ ├── win8 │ └── _._ │ ├── wp80 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ ├── System.Resources.ResourceManager.4.3.0 ├── .signature.p7s ├── System.Resources.ResourceManager.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── portable-net45+win8+wp8+wpa81 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net45 │ └── _._ │ ├── netcore50 │ ├── System.Resources.ResourceManager.dll │ ├── System.Resources.ResourceManager.xml │ ├── de │ │ └── System.Resources.ResourceManager.xml │ ├── es │ │ └── System.Resources.ResourceManager.xml │ ├── fr │ │ └── System.Resources.ResourceManager.xml │ ├── it │ │ └── System.Resources.ResourceManager.xml │ ├── ja │ │ └── System.Resources.ResourceManager.xml │ ├── ko │ │ └── System.Resources.ResourceManager.xml │ ├── ru │ │ └── System.Resources.ResourceManager.xml │ ├── zh-hans │ │ └── System.Resources.ResourceManager.xml │ └── zh-hant │ │ └── System.Resources.ResourceManager.xml │ ├── netstandard1.0 │ ├── System.Resources.ResourceManager.dll │ ├── System.Resources.ResourceManager.xml │ ├── de │ │ └── System.Resources.ResourceManager.xml │ ├── es │ │ └── System.Resources.ResourceManager.xml │ ├── fr │ │ └── System.Resources.ResourceManager.xml │ ├── it │ │ └── System.Resources.ResourceManager.xml │ ├── ja │ │ └── System.Resources.ResourceManager.xml │ ├── ko │ │ └── System.Resources.ResourceManager.xml │ ├── ru │ │ └── System.Resources.ResourceManager.xml │ ├── zh-hans │ │ └── System.Resources.ResourceManager.xml │ └── zh-hant │ │ └── System.Resources.ResourceManager.xml │ ├── portable-net45+win8+wp8+wpa81 │ └── _._ │ ├── win8 │ └── _._ │ ├── wp80 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ ├── System.Runtime.4.3.0 ├── .signature.p7s ├── System.Runtime.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── net462 │ │ └── System.Runtime.dll │ ├── portable-net45+win8+wp80+wpa81 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net45 │ └── _._ │ ├── net462 │ └── System.Runtime.dll │ ├── netcore50 │ ├── System.Runtime.dll │ ├── System.Runtime.xml │ ├── de │ │ └── System.Runtime.xml │ ├── es │ │ └── System.Runtime.xml │ ├── fr │ │ └── System.Runtime.xml │ ├── it │ │ └── System.Runtime.xml │ ├── ja │ │ └── System.Runtime.xml │ ├── ko │ │ └── System.Runtime.xml │ ├── ru │ │ └── System.Runtime.xml │ ├── zh-hans │ │ └── System.Runtime.xml │ └── zh-hant │ │ └── System.Runtime.xml │ ├── netstandard1.0 │ ├── System.Runtime.dll │ ├── System.Runtime.xml │ ├── de │ │ └── System.Runtime.xml │ ├── es │ │ └── System.Runtime.xml │ ├── fr │ │ └── System.Runtime.xml │ ├── it │ │ └── System.Runtime.xml │ ├── ja │ │ └── System.Runtime.xml │ ├── ko │ │ └── System.Runtime.xml │ ├── ru │ │ └── System.Runtime.xml │ ├── zh-hans │ │ └── System.Runtime.xml │ └── zh-hant │ │ └── System.Runtime.xml │ ├── netstandard1.2 │ ├── System.Runtime.dll │ ├── System.Runtime.xml │ ├── de │ │ └── System.Runtime.xml │ ├── es │ │ └── System.Runtime.xml │ ├── fr │ │ └── System.Runtime.xml │ ├── it │ │ └── System.Runtime.xml │ ├── ja │ │ └── System.Runtime.xml │ ├── ko │ │ └── System.Runtime.xml │ ├── ru │ │ └── System.Runtime.xml │ ├── zh-hans │ │ └── System.Runtime.xml │ └── zh-hant │ │ └── System.Runtime.xml │ ├── netstandard1.3 │ ├── System.Runtime.dll │ ├── System.Runtime.xml │ ├── de │ │ └── System.Runtime.xml │ ├── es │ │ └── System.Runtime.xml │ ├── fr │ │ └── System.Runtime.xml │ ├── it │ │ └── System.Runtime.xml │ ├── ja │ │ └── System.Runtime.xml │ ├── ko │ │ └── System.Runtime.xml │ ├── ru │ │ └── System.Runtime.xml │ ├── zh-hans │ │ └── System.Runtime.xml │ └── zh-hant │ │ └── System.Runtime.xml │ ├── netstandard1.5 │ ├── System.Runtime.dll │ ├── System.Runtime.xml │ ├── de │ │ └── System.Runtime.xml │ ├── es │ │ └── System.Runtime.xml │ ├── fr │ │ └── System.Runtime.xml │ ├── it │ │ └── System.Runtime.xml │ ├── ja │ │ └── System.Runtime.xml │ ├── ko │ │ └── System.Runtime.xml │ ├── ru │ │ └── System.Runtime.xml │ ├── zh-hans │ │ └── System.Runtime.xml │ └── zh-hant │ │ └── System.Runtime.xml │ ├── portable-net45+win8+wp80+wpa81 │ └── _._ │ ├── win8 │ └── _._ │ ├── wp80 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ ├── System.Runtime.Extensions.4.3.0 ├── .signature.p7s ├── System.Runtime.Extensions.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── net462 │ │ └── System.Runtime.Extensions.dll │ ├── portable-net45+win8+wp8+wpa81 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net45 │ └── _._ │ ├── net462 │ └── System.Runtime.Extensions.dll │ ├── netcore50 │ ├── System.Runtime.Extensions.dll │ ├── System.Runtime.Extensions.xml │ ├── de │ │ └── System.Runtime.Extensions.xml │ ├── es │ │ └── System.Runtime.Extensions.xml │ ├── fr │ │ └── System.Runtime.Extensions.xml │ ├── it │ │ └── System.Runtime.Extensions.xml │ ├── ja │ │ └── System.Runtime.Extensions.xml │ ├── ko │ │ └── System.Runtime.Extensions.xml │ ├── ru │ │ └── System.Runtime.Extensions.xml │ ├── zh-hans │ │ └── System.Runtime.Extensions.xml │ └── zh-hant │ │ └── System.Runtime.Extensions.xml │ ├── netstandard1.0 │ ├── System.Runtime.Extensions.dll │ ├── System.Runtime.Extensions.xml │ ├── de │ │ └── System.Runtime.Extensions.xml │ ├── es │ │ └── System.Runtime.Extensions.xml │ ├── fr │ │ └── System.Runtime.Extensions.xml │ ├── it │ │ └── System.Runtime.Extensions.xml │ ├── ja │ │ └── System.Runtime.Extensions.xml │ ├── ko │ │ └── System.Runtime.Extensions.xml │ ├── ru │ │ └── System.Runtime.Extensions.xml │ ├── zh-hans │ │ └── System.Runtime.Extensions.xml │ └── zh-hant │ │ └── System.Runtime.Extensions.xml │ ├── netstandard1.3 │ ├── System.Runtime.Extensions.dll │ ├── System.Runtime.Extensions.xml │ ├── de │ │ └── System.Runtime.Extensions.xml │ ├── es │ │ └── System.Runtime.Extensions.xml │ ├── fr │ │ └── System.Runtime.Extensions.xml │ ├── it │ │ └── System.Runtime.Extensions.xml │ ├── ja │ │ └── System.Runtime.Extensions.xml │ ├── ko │ │ └── System.Runtime.Extensions.xml │ ├── ru │ │ └── System.Runtime.Extensions.xml │ ├── zh-hans │ │ └── System.Runtime.Extensions.xml │ └── zh-hant │ │ └── System.Runtime.Extensions.xml │ ├── netstandard1.5 │ ├── System.Runtime.Extensions.dll │ ├── System.Runtime.Extensions.xml │ ├── de │ │ └── System.Runtime.Extensions.xml │ ├── es │ │ └── System.Runtime.Extensions.xml │ ├── fr │ │ └── System.Runtime.Extensions.xml │ ├── it │ │ └── System.Runtime.Extensions.xml │ ├── ja │ │ └── System.Runtime.Extensions.xml │ ├── ko │ │ └── System.Runtime.Extensions.xml │ ├── ru │ │ └── System.Runtime.Extensions.xml │ ├── zh-hans │ │ └── System.Runtime.Extensions.xml │ └── zh-hant │ │ └── System.Runtime.Extensions.xml │ ├── portable-net45+win8+wp8+wpa81 │ └── _._ │ ├── win8 │ └── _._ │ ├── wp80 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ ├── System.Runtime.Handles.4.3.0 ├── .signature.p7s ├── System.Runtime.Handles.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net46 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net46 │ └── _._ │ ├── netstandard1.3 │ ├── System.Runtime.Handles.dll │ ├── System.Runtime.Handles.xml │ ├── de │ │ └── System.Runtime.Handles.xml │ ├── es │ │ └── System.Runtime.Handles.xml │ ├── fr │ │ └── System.Runtime.Handles.xml │ ├── it │ │ └── System.Runtime.Handles.xml │ ├── ja │ │ └── System.Runtime.Handles.xml │ ├── ko │ │ └── System.Runtime.Handles.xml │ ├── ru │ │ └── System.Runtime.Handles.xml │ ├── zh-hans │ │ └── System.Runtime.Handles.xml │ └── zh-hant │ │ └── System.Runtime.Handles.xml │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ ├── System.Runtime.InteropServices.4.3.0 ├── .signature.p7s ├── System.Runtime.InteropServices.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── net462 │ │ └── System.Runtime.InteropServices.dll │ ├── net463 │ │ └── System.Runtime.InteropServices.dll │ ├── portable-net45+win8+wpa81 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net45 │ └── _._ │ ├── net462 │ └── System.Runtime.InteropServices.dll │ ├── net463 │ └── System.Runtime.InteropServices.dll │ ├── netcore50 │ ├── System.Runtime.InteropServices.dll │ ├── System.Runtime.InteropServices.xml │ ├── de │ │ └── System.Runtime.InteropServices.xml │ ├── es │ │ └── System.Runtime.InteropServices.xml │ ├── fr │ │ └── System.Runtime.InteropServices.xml │ ├── it │ │ └── System.Runtime.InteropServices.xml │ ├── ja │ │ └── System.Runtime.InteropServices.xml │ ├── ko │ │ └── System.Runtime.InteropServices.xml │ ├── ru │ │ └── System.Runtime.InteropServices.xml │ ├── zh-hans │ │ └── System.Runtime.InteropServices.xml │ └── zh-hant │ │ └── System.Runtime.InteropServices.xml │ ├── netcoreapp1.1 │ └── System.Runtime.InteropServices.dll │ ├── netstandard1.1 │ ├── System.Runtime.InteropServices.dll │ ├── System.Runtime.InteropServices.xml │ ├── de │ │ └── System.Runtime.InteropServices.xml │ ├── es │ │ └── System.Runtime.InteropServices.xml │ ├── fr │ │ └── System.Runtime.InteropServices.xml │ ├── it │ │ └── System.Runtime.InteropServices.xml │ ├── ja │ │ └── System.Runtime.InteropServices.xml │ ├── ko │ │ └── System.Runtime.InteropServices.xml │ ├── ru │ │ └── System.Runtime.InteropServices.xml │ ├── zh-hans │ │ └── System.Runtime.InteropServices.xml │ └── zh-hant │ │ └── System.Runtime.InteropServices.xml │ ├── netstandard1.2 │ ├── System.Runtime.InteropServices.dll │ ├── System.Runtime.InteropServices.xml │ ├── de │ │ └── System.Runtime.InteropServices.xml │ ├── es │ │ └── System.Runtime.InteropServices.xml │ ├── fr │ │ └── System.Runtime.InteropServices.xml │ ├── it │ │ └── System.Runtime.InteropServices.xml │ ├── ja │ │ └── System.Runtime.InteropServices.xml │ ├── ko │ │ └── System.Runtime.InteropServices.xml │ ├── ru │ │ └── System.Runtime.InteropServices.xml │ ├── zh-hans │ │ └── System.Runtime.InteropServices.xml │ └── zh-hant │ │ └── System.Runtime.InteropServices.xml │ ├── netstandard1.3 │ ├── System.Runtime.InteropServices.dll │ ├── System.Runtime.InteropServices.xml │ ├── de │ │ └── System.Runtime.InteropServices.xml │ ├── es │ │ └── System.Runtime.InteropServices.xml │ ├── fr │ │ └── System.Runtime.InteropServices.xml │ ├── it │ │ └── System.Runtime.InteropServices.xml │ ├── ja │ │ └── System.Runtime.InteropServices.xml │ ├── ko │ │ └── System.Runtime.InteropServices.xml │ ├── ru │ │ └── System.Runtime.InteropServices.xml │ ├── zh-hans │ │ └── System.Runtime.InteropServices.xml │ └── zh-hant │ │ └── System.Runtime.InteropServices.xml │ ├── netstandard1.5 │ ├── System.Runtime.InteropServices.dll │ ├── System.Runtime.InteropServices.xml │ ├── de │ │ └── System.Runtime.InteropServices.xml │ ├── es │ │ └── System.Runtime.InteropServices.xml │ ├── fr │ │ └── System.Runtime.InteropServices.xml │ ├── it │ │ └── System.Runtime.InteropServices.xml │ ├── ja │ │ └── System.Runtime.InteropServices.xml │ ├── ko │ │ └── System.Runtime.InteropServices.xml │ ├── ru │ │ └── System.Runtime.InteropServices.xml │ ├── zh-hans │ │ └── System.Runtime.InteropServices.xml │ └── zh-hant │ │ └── System.Runtime.InteropServices.xml │ ├── portable-net45+win8+wpa81 │ └── _._ │ ├── win8 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ ├── System.Runtime.InteropServices.RuntimeInformation.4.3.0 ├── .signature.p7s ├── System.Runtime.InteropServices.RuntimeInformation.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── System.Runtime.InteropServices.RuntimeInformation.dll │ ├── netstandard1.1 │ │ └── System.Runtime.InteropServices.RuntimeInformation.dll │ ├── win8 │ │ └── System.Runtime.InteropServices.RuntimeInformation.dll │ ├── wpa81 │ │ └── System.Runtime.InteropServices.RuntimeInformation.dll │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ ├── ref │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── netstandard1.1 │ │ └── System.Runtime.InteropServices.RuntimeInformation.dll │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── runtimes │ ├── aot │ └── lib │ │ └── netcore50 │ │ └── System.Runtime.InteropServices.RuntimeInformation.dll │ ├── unix │ └── lib │ │ └── netstandard1.1 │ │ └── System.Runtime.InteropServices.RuntimeInformation.dll │ └── win │ └── lib │ ├── net45 │ └── System.Runtime.InteropServices.RuntimeInformation.dll │ ├── netcore50 │ └── System.Runtime.InteropServices.RuntimeInformation.dll │ └── netstandard1.1 │ └── System.Runtime.InteropServices.RuntimeInformation.dll ├── System.Runtime.Numerics.4.3.0 ├── .signature.p7s ├── System.Runtime.Numerics.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── netcore50 │ │ └── System.Runtime.Numerics.dll │ ├── netstandard1.3 │ │ └── System.Runtime.Numerics.dll │ ├── portable-net45+win8+wpa81 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net45 │ └── _._ │ ├── netcore50 │ ├── System.Runtime.Numerics.dll │ ├── System.Runtime.Numerics.xml │ ├── de │ │ └── System.Runtime.Numerics.xml │ ├── es │ │ └── System.Runtime.Numerics.xml │ ├── fr │ │ └── System.Runtime.Numerics.xml │ ├── it │ │ └── System.Runtime.Numerics.xml │ ├── ja │ │ └── System.Runtime.Numerics.xml │ ├── ko │ │ └── System.Runtime.Numerics.xml │ ├── ru │ │ └── System.Runtime.Numerics.xml │ ├── zh-hans │ │ └── System.Runtime.Numerics.xml │ └── zh-hant │ │ └── System.Runtime.Numerics.xml │ ├── netstandard1.1 │ ├── System.Runtime.Numerics.dll │ ├── System.Runtime.Numerics.xml │ ├── de │ │ └── System.Runtime.Numerics.xml │ ├── es │ │ └── System.Runtime.Numerics.xml │ ├── fr │ │ └── System.Runtime.Numerics.xml │ ├── it │ │ └── System.Runtime.Numerics.xml │ ├── ja │ │ └── System.Runtime.Numerics.xml │ ├── ko │ │ └── System.Runtime.Numerics.xml │ ├── ru │ │ └── System.Runtime.Numerics.xml │ ├── zh-hans │ │ └── System.Runtime.Numerics.xml │ └── zh-hant │ │ └── System.Runtime.Numerics.xml │ ├── portable-net45+win8+wpa81 │ └── _._ │ ├── win8 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ ├── System.Security.Cryptography.Algorithms.4.3.0 ├── .signature.p7s ├── System.Security.Cryptography.Algorithms.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net46 │ │ └── System.Security.Cryptography.Algorithms.dll │ ├── net461 │ │ └── System.Security.Cryptography.Algorithms.dll │ ├── net463 │ │ └── System.Security.Cryptography.Algorithms.dll │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ ├── ref │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net46 │ │ └── System.Security.Cryptography.Algorithms.dll │ ├── net461 │ │ └── System.Security.Cryptography.Algorithms.dll │ ├── net463 │ │ └── System.Security.Cryptography.Algorithms.dll │ ├── netstandard1.3 │ │ └── System.Security.Cryptography.Algorithms.dll │ ├── netstandard1.4 │ │ └── System.Security.Cryptography.Algorithms.dll │ ├── netstandard1.6 │ │ └── System.Security.Cryptography.Algorithms.dll │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── runtimes │ ├── osx │ └── lib │ │ └── netstandard1.6 │ │ └── System.Security.Cryptography.Algorithms.dll │ ├── unix │ └── lib │ │ └── netstandard1.6 │ │ └── System.Security.Cryptography.Algorithms.dll │ └── win │ └── lib │ ├── net46 │ └── System.Security.Cryptography.Algorithms.dll │ ├── net461 │ └── System.Security.Cryptography.Algorithms.dll │ ├── net463 │ └── System.Security.Cryptography.Algorithms.dll │ ├── netcore50 │ └── System.Security.Cryptography.Algorithms.dll │ └── netstandard1.6 │ └── System.Security.Cryptography.Algorithms.dll ├── System.Security.Cryptography.Encoding.4.3.0 ├── .signature.p7s ├── System.Security.Cryptography.Encoding.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net46 │ │ └── System.Security.Cryptography.Encoding.dll │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ ├── ref │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net46 │ │ └── System.Security.Cryptography.Encoding.dll │ ├── netstandard1.3 │ │ ├── System.Security.Cryptography.Encoding.dll │ │ ├── System.Security.Cryptography.Encoding.xml │ │ ├── de │ │ │ └── System.Security.Cryptography.Encoding.xml │ │ ├── es │ │ │ └── System.Security.Cryptography.Encoding.xml │ │ ├── fr │ │ │ └── System.Security.Cryptography.Encoding.xml │ │ ├── it │ │ │ └── System.Security.Cryptography.Encoding.xml │ │ ├── ja │ │ │ └── System.Security.Cryptography.Encoding.xml │ │ ├── ko │ │ │ └── System.Security.Cryptography.Encoding.xml │ │ ├── ru │ │ │ └── System.Security.Cryptography.Encoding.xml │ │ ├── zh-hans │ │ │ └── System.Security.Cryptography.Encoding.xml │ │ └── zh-hant │ │ │ └── System.Security.Cryptography.Encoding.xml │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── runtimes │ ├── unix │ └── lib │ │ └── netstandard1.3 │ │ └── System.Security.Cryptography.Encoding.dll │ └── win │ └── lib │ ├── net46 │ └── System.Security.Cryptography.Encoding.dll │ └── netstandard1.3 │ └── System.Security.Cryptography.Encoding.dll ├── System.Security.Cryptography.Primitives.4.3.0 ├── .signature.p7s ├── System.Security.Cryptography.Primitives.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net46 │ │ └── System.Security.Cryptography.Primitives.dll │ ├── netstandard1.3 │ │ └── System.Security.Cryptography.Primitives.dll │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net46 │ └── System.Security.Cryptography.Primitives.dll │ ├── netstandard1.3 │ └── System.Security.Cryptography.Primitives.dll │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ ├── System.Security.Cryptography.X509Certificates.4.3.0 ├── .signature.p7s ├── System.Security.Cryptography.X509Certificates.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net46 │ │ └── System.Security.Cryptography.X509Certificates.dll │ ├── net461 │ │ └── System.Security.Cryptography.X509Certificates.dll │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ ├── ref │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net46 │ │ └── System.Security.Cryptography.X509Certificates.dll │ ├── net461 │ │ └── System.Security.Cryptography.X509Certificates.dll │ ├── netstandard1.3 │ │ ├── System.Security.Cryptography.X509Certificates.dll │ │ ├── System.Security.Cryptography.X509Certificates.xml │ │ ├── de │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── es │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── fr │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── it │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── ja │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── ko │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── ru │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── zh-hans │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ └── zh-hant │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ ├── netstandard1.4 │ │ ├── System.Security.Cryptography.X509Certificates.dll │ │ ├── System.Security.Cryptography.X509Certificates.xml │ │ ├── de │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── es │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── fr │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── it │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── ja │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── ko │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── ru │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── zh-hans │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ └── zh-hant │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── runtimes │ ├── unix │ └── lib │ │ └── netstandard1.6 │ │ └── System.Security.Cryptography.X509Certificates.dll │ └── win │ └── lib │ ├── net46 │ └── System.Security.Cryptography.X509Certificates.dll │ ├── net461 │ └── System.Security.Cryptography.X509Certificates.dll │ ├── netcore50 │ └── System.Security.Cryptography.X509Certificates.dll │ └── netstandard1.6 │ └── System.Security.Cryptography.X509Certificates.dll ├── System.Text.Encoding.4.3.0 ├── .signature.p7s ├── System.Text.Encoding.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── portable-net45+win8+wp8+wpa81 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net45 │ └── _._ │ ├── netcore50 │ ├── System.Text.Encoding.dll │ ├── System.Text.Encoding.xml │ ├── de │ │ └── System.Text.Encoding.xml │ ├── es │ │ └── System.Text.Encoding.xml │ ├── fr │ │ └── System.Text.Encoding.xml │ ├── it │ │ └── System.Text.Encoding.xml │ ├── ja │ │ └── System.Text.Encoding.xml │ ├── ko │ │ └── System.Text.Encoding.xml │ ├── ru │ │ └── System.Text.Encoding.xml │ ├── zh-hans │ │ └── System.Text.Encoding.xml │ └── zh-hant │ │ └── System.Text.Encoding.xml │ ├── netstandard1.0 │ ├── System.Text.Encoding.dll │ ├── System.Text.Encoding.xml │ ├── de │ │ └── System.Text.Encoding.xml │ ├── es │ │ └── System.Text.Encoding.xml │ ├── fr │ │ └── System.Text.Encoding.xml │ ├── it │ │ └── System.Text.Encoding.xml │ ├── ja │ │ └── System.Text.Encoding.xml │ ├── ko │ │ └── System.Text.Encoding.xml │ ├── ru │ │ └── System.Text.Encoding.xml │ ├── zh-hans │ │ └── System.Text.Encoding.xml │ └── zh-hant │ │ └── System.Text.Encoding.xml │ ├── netstandard1.3 │ ├── System.Text.Encoding.dll │ ├── System.Text.Encoding.xml │ ├── de │ │ └── System.Text.Encoding.xml │ ├── es │ │ └── System.Text.Encoding.xml │ ├── fr │ │ └── System.Text.Encoding.xml │ ├── it │ │ └── System.Text.Encoding.xml │ ├── ja │ │ └── System.Text.Encoding.xml │ ├── ko │ │ └── System.Text.Encoding.xml │ ├── ru │ │ └── System.Text.Encoding.xml │ ├── zh-hans │ │ └── System.Text.Encoding.xml │ └── zh-hant │ │ └── System.Text.Encoding.xml │ ├── portable-net45+win8+wp8+wpa81 │ └── _._ │ ├── win8 │ └── _._ │ ├── wp80 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ ├── System.Text.Encoding.Extensions.4.3.0 ├── .signature.p7s ├── System.Text.Encoding.Extensions.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── portable-net45+win8+wp8+wpa81 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net45 │ └── _._ │ ├── netcore50 │ ├── System.Text.Encoding.Extensions.dll │ ├── System.Text.Encoding.Extensions.xml │ ├── de │ │ └── System.Text.Encoding.Extensions.xml │ ├── es │ │ └── System.Text.Encoding.Extensions.xml │ ├── fr │ │ └── System.Text.Encoding.Extensions.xml │ ├── it │ │ └── System.Text.Encoding.Extensions.xml │ ├── ja │ │ └── System.Text.Encoding.Extensions.xml │ ├── ko │ │ └── System.Text.Encoding.Extensions.xml │ ├── ru │ │ └── System.Text.Encoding.Extensions.xml │ ├── zh-hans │ │ └── System.Text.Encoding.Extensions.xml │ └── zh-hant │ │ └── System.Text.Encoding.Extensions.xml │ ├── netstandard1.0 │ ├── System.Text.Encoding.Extensions.dll │ ├── System.Text.Encoding.Extensions.xml │ ├── de │ │ └── System.Text.Encoding.Extensions.xml │ ├── es │ │ └── System.Text.Encoding.Extensions.xml │ ├── fr │ │ └── System.Text.Encoding.Extensions.xml │ ├── it │ │ └── System.Text.Encoding.Extensions.xml │ ├── ja │ │ └── System.Text.Encoding.Extensions.xml │ ├── ko │ │ └── System.Text.Encoding.Extensions.xml │ ├── ru │ │ └── System.Text.Encoding.Extensions.xml │ ├── zh-hans │ │ └── System.Text.Encoding.Extensions.xml │ └── zh-hant │ │ └── System.Text.Encoding.Extensions.xml │ ├── netstandard1.3 │ ├── System.Text.Encoding.Extensions.dll │ ├── System.Text.Encoding.Extensions.xml │ ├── de │ │ └── System.Text.Encoding.Extensions.xml │ ├── es │ │ └── System.Text.Encoding.Extensions.xml │ ├── fr │ │ └── System.Text.Encoding.Extensions.xml │ ├── it │ │ └── System.Text.Encoding.Extensions.xml │ ├── ja │ │ └── System.Text.Encoding.Extensions.xml │ ├── ko │ │ └── System.Text.Encoding.Extensions.xml │ ├── ru │ │ └── System.Text.Encoding.Extensions.xml │ ├── zh-hans │ │ └── System.Text.Encoding.Extensions.xml │ └── zh-hant │ │ └── System.Text.Encoding.Extensions.xml │ ├── portable-net45+win8+wp8+wpa81 │ └── _._ │ ├── win8 │ └── _._ │ ├── wp80 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ ├── System.Text.RegularExpressions.4.3.0 ├── .signature.p7s ├── System.Text.RegularExpressions.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── net463 │ │ └── System.Text.RegularExpressions.dll │ ├── netcore50 │ │ └── System.Text.RegularExpressions.dll │ ├── netstandard1.6 │ │ └── System.Text.RegularExpressions.dll │ ├── portable-net45+win8+wp8+wpa81 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net45 │ └── _._ │ ├── net463 │ └── System.Text.RegularExpressions.dll │ ├── netcore50 │ ├── System.Text.RegularExpressions.dll │ ├── System.Text.RegularExpressions.xml │ ├── de │ │ └── System.Text.RegularExpressions.xml │ ├── es │ │ └── System.Text.RegularExpressions.xml │ ├── fr │ │ └── System.Text.RegularExpressions.xml │ ├── it │ │ └── System.Text.RegularExpressions.xml │ ├── ja │ │ └── System.Text.RegularExpressions.xml │ ├── ko │ │ └── System.Text.RegularExpressions.xml │ ├── ru │ │ └── System.Text.RegularExpressions.xml │ ├── zh-hans │ │ └── System.Text.RegularExpressions.xml │ └── zh-hant │ │ └── System.Text.RegularExpressions.xml │ ├── netcoreapp1.1 │ └── System.Text.RegularExpressions.dll │ ├── netstandard1.0 │ ├── System.Text.RegularExpressions.dll │ ├── System.Text.RegularExpressions.xml │ ├── de │ │ └── System.Text.RegularExpressions.xml │ ├── es │ │ └── System.Text.RegularExpressions.xml │ ├── fr │ │ └── System.Text.RegularExpressions.xml │ ├── it │ │ └── System.Text.RegularExpressions.xml │ ├── ja │ │ └── System.Text.RegularExpressions.xml │ ├── ko │ │ └── System.Text.RegularExpressions.xml │ ├── ru │ │ └── System.Text.RegularExpressions.xml │ ├── zh-hans │ │ └── System.Text.RegularExpressions.xml │ └── zh-hant │ │ └── System.Text.RegularExpressions.xml │ ├── netstandard1.3 │ ├── System.Text.RegularExpressions.dll │ ├── System.Text.RegularExpressions.xml │ ├── de │ │ └── System.Text.RegularExpressions.xml │ ├── es │ │ └── System.Text.RegularExpressions.xml │ ├── fr │ │ └── System.Text.RegularExpressions.xml │ ├── it │ │ └── System.Text.RegularExpressions.xml │ ├── ja │ │ └── System.Text.RegularExpressions.xml │ ├── ko │ │ └── System.Text.RegularExpressions.xml │ ├── ru │ │ └── System.Text.RegularExpressions.xml │ ├── zh-hans │ │ └── System.Text.RegularExpressions.xml │ └── zh-hant │ │ └── System.Text.RegularExpressions.xml │ ├── netstandard1.6 │ ├── System.Text.RegularExpressions.dll │ ├── System.Text.RegularExpressions.xml │ ├── de │ │ └── System.Text.RegularExpressions.xml │ ├── es │ │ └── System.Text.RegularExpressions.xml │ ├── fr │ │ └── System.Text.RegularExpressions.xml │ ├── it │ │ └── System.Text.RegularExpressions.xml │ ├── ja │ │ └── System.Text.RegularExpressions.xml │ ├── ko │ │ └── System.Text.RegularExpressions.xml │ ├── ru │ │ └── System.Text.RegularExpressions.xml │ ├── zh-hans │ │ └── System.Text.RegularExpressions.xml │ └── zh-hant │ │ └── System.Text.RegularExpressions.xml │ ├── portable-net45+win8+wp8+wpa81 │ └── _._ │ ├── win8 │ └── _._ │ ├── wp80 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ ├── System.Threading.4.3.0 ├── .signature.p7s ├── System.Threading.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── netcore50 │ │ └── System.Threading.dll │ ├── netstandard1.3 │ │ └── System.Threading.dll │ ├── portable-net45+win8+wp8+wpa81 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ ├── ref │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── netcore50 │ │ ├── System.Threading.dll │ │ ├── System.Threading.xml │ │ ├── de │ │ │ └── System.Threading.xml │ │ ├── es │ │ │ └── System.Threading.xml │ │ ├── fr │ │ │ └── System.Threading.xml │ │ ├── it │ │ │ └── System.Threading.xml │ │ ├── ja │ │ │ └── System.Threading.xml │ │ ├── ko │ │ │ └── System.Threading.xml │ │ ├── ru │ │ │ └── System.Threading.xml │ │ ├── zh-hans │ │ │ └── System.Threading.xml │ │ └── zh-hant │ │ │ └── System.Threading.xml │ ├── netstandard1.0 │ │ ├── System.Threading.dll │ │ ├── System.Threading.xml │ │ ├── de │ │ │ └── System.Threading.xml │ │ ├── es │ │ │ └── System.Threading.xml │ │ ├── fr │ │ │ └── System.Threading.xml │ │ ├── it │ │ │ └── System.Threading.xml │ │ ├── ja │ │ │ └── System.Threading.xml │ │ ├── ko │ │ │ └── System.Threading.xml │ │ ├── ru │ │ │ └── System.Threading.xml │ │ ├── zh-hans │ │ │ └── System.Threading.xml │ │ └── zh-hant │ │ │ └── System.Threading.xml │ ├── netstandard1.3 │ │ ├── System.Threading.dll │ │ ├── System.Threading.xml │ │ ├── de │ │ │ └── System.Threading.xml │ │ ├── es │ │ │ └── System.Threading.xml │ │ ├── fr │ │ │ └── System.Threading.xml │ │ ├── it │ │ │ └── System.Threading.xml │ │ ├── ja │ │ │ └── System.Threading.xml │ │ ├── ko │ │ │ └── System.Threading.xml │ │ ├── ru │ │ │ └── System.Threading.xml │ │ ├── zh-hans │ │ │ └── System.Threading.xml │ │ └── zh-hant │ │ │ └── System.Threading.xml │ ├── portable-net45+win8+wp8+wpa81 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── runtimes │ └── aot │ └── lib │ └── netcore50 │ └── System.Threading.dll ├── System.Threading.Tasks.4.3.0 ├── .signature.p7s ├── System.Threading.Tasks.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── portable-net45+win8+wp8+wpa81 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net45 │ └── _._ │ ├── netcore50 │ ├── System.Threading.Tasks.dll │ ├── System.Threading.Tasks.xml │ ├── de │ │ └── System.Threading.Tasks.xml │ ├── es │ │ └── System.Threading.Tasks.xml │ ├── fr │ │ └── System.Threading.Tasks.xml │ ├── it │ │ └── System.Threading.Tasks.xml │ ├── ja │ │ └── System.Threading.Tasks.xml │ ├── ko │ │ └── System.Threading.Tasks.xml │ ├── ru │ │ └── System.Threading.Tasks.xml │ ├── zh-hans │ │ └── System.Threading.Tasks.xml │ └── zh-hant │ │ └── System.Threading.Tasks.xml │ ├── netstandard1.0 │ ├── System.Threading.Tasks.dll │ ├── System.Threading.Tasks.xml │ ├── de │ │ └── System.Threading.Tasks.xml │ ├── es │ │ └── System.Threading.Tasks.xml │ ├── fr │ │ └── System.Threading.Tasks.xml │ ├── it │ │ └── System.Threading.Tasks.xml │ ├── ja │ │ └── System.Threading.Tasks.xml │ ├── ko │ │ └── System.Threading.Tasks.xml │ ├── ru │ │ └── System.Threading.Tasks.xml │ ├── zh-hans │ │ └── System.Threading.Tasks.xml │ └── zh-hant │ │ └── System.Threading.Tasks.xml │ ├── netstandard1.3 │ ├── System.Threading.Tasks.dll │ ├── System.Threading.Tasks.xml │ ├── de │ │ └── System.Threading.Tasks.xml │ ├── es │ │ └── System.Threading.Tasks.xml │ ├── fr │ │ └── System.Threading.Tasks.xml │ ├── it │ │ └── System.Threading.Tasks.xml │ ├── ja │ │ └── System.Threading.Tasks.xml │ ├── ko │ │ └── System.Threading.Tasks.xml │ ├── ru │ │ └── System.Threading.Tasks.xml │ ├── zh-hans │ │ └── System.Threading.Tasks.xml │ └── zh-hant │ │ └── System.Threading.Tasks.xml │ ├── portable-net45+win8+wp8+wpa81 │ └── _._ │ ├── win8 │ └── _._ │ ├── wp80 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ ├── System.Threading.Timer.4.3.0 ├── .signature.p7s ├── System.Threading.Timer.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net451 │ │ └── _._ │ ├── portable-net451+win81+wpa81 │ │ └── _._ │ ├── win81 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net451 │ └── _._ │ ├── netcore50 │ ├── System.Threading.Timer.dll │ ├── System.Threading.Timer.xml │ ├── de │ │ └── System.Threading.Timer.xml │ ├── es │ │ └── System.Threading.Timer.xml │ ├── fr │ │ └── System.Threading.Timer.xml │ ├── it │ │ └── System.Threading.Timer.xml │ ├── ja │ │ └── System.Threading.Timer.xml │ ├── ko │ │ └── System.Threading.Timer.xml │ ├── ru │ │ └── System.Threading.Timer.xml │ ├── zh-hans │ │ └── System.Threading.Timer.xml │ └── zh-hant │ │ └── System.Threading.Timer.xml │ ├── netstandard1.2 │ ├── System.Threading.Timer.dll │ ├── System.Threading.Timer.xml │ ├── de │ │ └── System.Threading.Timer.xml │ ├── es │ │ └── System.Threading.Timer.xml │ ├── fr │ │ └── System.Threading.Timer.xml │ ├── it │ │ └── System.Threading.Timer.xml │ ├── ja │ │ └── System.Threading.Timer.xml │ ├── ko │ │ └── System.Threading.Timer.xml │ ├── ru │ │ └── System.Threading.Timer.xml │ ├── zh-hans │ │ └── System.Threading.Timer.xml │ └── zh-hant │ │ └── System.Threading.Timer.xml │ ├── portable-net451+win81+wpa81 │ └── _._ │ ├── win81 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ ├── System.Xml.ReaderWriter.4.3.0 ├── .signature.p7s ├── System.Xml.ReaderWriter.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── net46 │ │ └── System.Xml.ReaderWriter.dll │ ├── netcore50 │ │ └── System.Xml.ReaderWriter.dll │ ├── netstandard1.3 │ │ └── System.Xml.ReaderWriter.dll │ ├── portable-net45+win8+wp8+wpa81 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net45 │ └── _._ │ ├── net46 │ └── System.Xml.ReaderWriter.dll │ ├── netcore50 │ ├── System.Xml.ReaderWriter.dll │ ├── System.Xml.ReaderWriter.xml │ ├── de │ │ └── System.Xml.ReaderWriter.xml │ ├── es │ │ └── System.Xml.ReaderWriter.xml │ ├── fr │ │ └── System.Xml.ReaderWriter.xml │ ├── it │ │ └── System.Xml.ReaderWriter.xml │ ├── ja │ │ └── System.Xml.ReaderWriter.xml │ ├── ko │ │ └── System.Xml.ReaderWriter.xml │ ├── ru │ │ └── System.Xml.ReaderWriter.xml │ ├── zh-hans │ │ └── System.Xml.ReaderWriter.xml │ └── zh-hant │ │ └── System.Xml.ReaderWriter.xml │ ├── netstandard1.0 │ ├── System.Xml.ReaderWriter.dll │ ├── System.Xml.ReaderWriter.xml │ ├── de │ │ └── System.Xml.ReaderWriter.xml │ ├── es │ │ └── System.Xml.ReaderWriter.xml │ ├── fr │ │ └── System.Xml.ReaderWriter.xml │ ├── it │ │ └── System.Xml.ReaderWriter.xml │ ├── ja │ │ └── System.Xml.ReaderWriter.xml │ ├── ko │ │ └── System.Xml.ReaderWriter.xml │ ├── ru │ │ └── System.Xml.ReaderWriter.xml │ ├── zh-hans │ │ └── System.Xml.ReaderWriter.xml │ └── zh-hant │ │ └── System.Xml.ReaderWriter.xml │ ├── netstandard1.3 │ ├── System.Xml.ReaderWriter.dll │ ├── System.Xml.ReaderWriter.xml │ ├── de │ │ └── System.Xml.ReaderWriter.xml │ ├── es │ │ └── System.Xml.ReaderWriter.xml │ ├── fr │ │ └── System.Xml.ReaderWriter.xml │ ├── it │ │ └── System.Xml.ReaderWriter.xml │ ├── ja │ │ └── System.Xml.ReaderWriter.xml │ ├── ko │ │ └── System.Xml.ReaderWriter.xml │ ├── ru │ │ └── System.Xml.ReaderWriter.xml │ ├── zh-hans │ │ └── System.Xml.ReaderWriter.xml │ └── zh-hant │ │ └── System.Xml.ReaderWriter.xml │ ├── portable-net45+win8+wp8+wpa81 │ └── _._ │ ├── win8 │ └── _._ │ ├── wp80 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ └── System.Xml.XDocument.4.3.0 ├── .signature.p7s ├── System.Xml.XDocument.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib ├── MonoAndroid10 │ └── _._ ├── MonoTouch10 │ └── _._ ├── net45 │ └── _._ ├── netcore50 │ └── System.Xml.XDocument.dll ├── netstandard1.3 │ └── System.Xml.XDocument.dll ├── portable-net45+win8+wp8+wpa81 │ └── _._ ├── win8 │ └── _._ ├── wp80 │ └── _._ ├── wpa81 │ └── _._ ├── xamarinios10 │ └── _._ ├── xamarinmac20 │ └── _._ ├── xamarintvos10 │ └── _._ └── xamarinwatchos10 │ └── _._ └── ref ├── MonoAndroid10 └── _._ ├── MonoTouch10 └── _._ ├── net45 └── _._ ├── netcore50 ├── System.Xml.XDocument.dll ├── System.Xml.XDocument.xml ├── de │ └── System.Xml.XDocument.xml ├── es │ └── System.Xml.XDocument.xml ├── fr │ └── System.Xml.XDocument.xml ├── it │ └── System.Xml.XDocument.xml ├── ja │ └── System.Xml.XDocument.xml ├── ko │ └── System.Xml.XDocument.xml ├── ru │ └── System.Xml.XDocument.xml ├── zh-hans │ └── System.Xml.XDocument.xml └── zh-hant │ └── System.Xml.XDocument.xml ├── netstandard1.0 ├── System.Xml.XDocument.dll ├── System.Xml.XDocument.xml ├── de │ └── System.Xml.XDocument.xml ├── es │ └── System.Xml.XDocument.xml ├── fr │ └── System.Xml.XDocument.xml ├── it │ └── System.Xml.XDocument.xml ├── ja │ └── System.Xml.XDocument.xml ├── ko │ └── System.Xml.XDocument.xml ├── ru │ └── System.Xml.XDocument.xml ├── zh-hans │ └── System.Xml.XDocument.xml └── zh-hant │ └── System.Xml.XDocument.xml ├── netstandard1.3 ├── System.Xml.XDocument.dll ├── System.Xml.XDocument.xml ├── de │ └── System.Xml.XDocument.xml ├── es │ └── System.Xml.XDocument.xml ├── fr │ └── System.Xml.XDocument.xml ├── it │ └── System.Xml.XDocument.xml ├── ja │ └── System.Xml.XDocument.xml ├── ko │ └── System.Xml.XDocument.xml ├── ru │ └── System.Xml.XDocument.xml ├── zh-hans │ └── System.Xml.XDocument.xml └── zh-hant │ └── System.Xml.XDocument.xml ├── portable-net45+win8+wp8+wpa81 └── _._ ├── win8 └── _._ ├── wp80 └── _._ ├── wpa81 └── _._ ├── xamarinios10 └── _._ ├── xamarinmac20 └── _._ ├── xamarintvos10 └── _._ └── xamarinwatchos10 └── _._ /DavRelayUp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp.sln -------------------------------------------------------------------------------- /DavRelayUp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/App.config -------------------------------------------------------------------------------- /DavRelayUp/AskTGT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/AskTGT.cs -------------------------------------------------------------------------------- /DavRelayUp/Asn1/Asn1Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Asn1/Asn1Extensions.cs -------------------------------------------------------------------------------- /DavRelayUp/Asn1/AsnElt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Asn1/AsnElt.cs -------------------------------------------------------------------------------- /DavRelayUp/Asn1/AsnException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Asn1/AsnException.cs -------------------------------------------------------------------------------- /DavRelayUp/Asn1/AsnIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Asn1/AsnIO.cs -------------------------------------------------------------------------------- /DavRelayUp/Asn1/AsnOID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Asn1/AsnOID.cs -------------------------------------------------------------------------------- /DavRelayUp/AuthTrigger/Efs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/AuthTrigger/Efs.cs -------------------------------------------------------------------------------- /DavRelayUp/AuthTrigger/EfsTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/AuthTrigger/EfsTrigger.cs -------------------------------------------------------------------------------- /DavRelayUp/AuthTrigger/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/AuthTrigger/NativeMethods.cs -------------------------------------------------------------------------------- /DavRelayUp/AuthTrigger/RpcApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/AuthTrigger/RpcApi.cs -------------------------------------------------------------------------------- /DavRelayUp/Costura64/GoRelayServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Costura64/GoRelayServer.dll -------------------------------------------------------------------------------- /DavRelayUp/Costura64/GoRelayServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Costura64/GoRelayServer.h -------------------------------------------------------------------------------- /DavRelayUp/DSInternals.Common/Data/DNWithBinary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/DSInternals.Common/Data/DNWithBinary.cs -------------------------------------------------------------------------------- /DavRelayUp/DSInternals.Common/Data/Hello/KeyFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/DSInternals.Common/Data/Hello/KeyFlags.cs -------------------------------------------------------------------------------- /DavRelayUp/DSInternals.Common/Data/Hello/KeyUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/DSInternals.Common/Data/Hello/KeyUsage.cs -------------------------------------------------------------------------------- /DavRelayUp/DSInternals.Common/Validator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/DSInternals.Common/Validator.cs -------------------------------------------------------------------------------- /DavRelayUp/DavRelayUp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/DavRelayUp.csproj -------------------------------------------------------------------------------- /DavRelayUp/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/FodyWeavers.xml -------------------------------------------------------------------------------- /DavRelayUp/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/FodyWeavers.xsd -------------------------------------------------------------------------------- /DavRelayUp/Kerb/Crypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/Crypto.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/Helpers.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/Interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/Interop.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/Interop/Luid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/Interop/Luid.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/Interop/NtException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/Interop/NtException.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/KDCKeyAgreement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/KDCKeyAgreement.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/LSA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/LSA.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/Networking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/Networking.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/crypto/SafeNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/crypto/SafeNativeMethods.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/crypto/dh/DiffieHellmanKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/crypto/dh/DiffieHellmanKey.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/crypto/dh/IExchangeKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/crypto/dh/IExchangeKey.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/crypto/dh/IKeyAgreement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/crypto/dh/IKeyAgreement.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/crypto/dh/KeyAgreementAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/crypto/dh/KeyAgreementAlgorithm.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/crypto/dh/ManagedDiffieHellman.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/crypto/dh/ManagedDiffieHellman.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/crypto/dh/Oakley.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/crypto/dh/Oakley.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/ADIfRelevant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/ADIfRelevant.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/ADKerbLocal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/ADKerbLocal.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/ADRestrictionEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/ADRestrictionEntry.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/ADWin2KPac.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/ADWin2KPac.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/AP_REQ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/AP_REQ.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/AS_REP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/AS_REP.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/AS_REQ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/AS_REQ.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/Authenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/Authenticator.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/AuthorizationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/AuthorizationData.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/Checksum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/Checksum.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/ETYPE_INFO2_ENTRY.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/ETYPE_INFO2_ENTRY.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/EncKDCRepPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/EncKDCRepPart.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/EncKrbCredPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/EncKrbCredPart.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/EncKrbPrivPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/EncKrbPrivPart.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/EncTicketPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/EncTicketPart.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/EncryptedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/EncryptedData.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/EncryptionKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/EncryptionKey.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/HostAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/HostAddress.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/KDC_PROXY_MESSAGE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/KDC_PROXY_MESSAGE.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/KDC_REQ_BODY.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/KDC_REQ_BODY.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/KRB_CRED.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/KRB_CRED.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/KRB_ERROR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/KRB_ERROR.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/KRB_PRIV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/KRB_PRIV.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/KrbAuthPack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/KrbAuthPack.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/KrbCredInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/KrbCredInfo.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/KrbDHRepInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/KrbDHRepInfo.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/KrbKDCDHKeyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/KrbKDCDHKeyInfo.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/KrbPkAuthenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/KrbPkAuthenticator.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/LastReq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/LastReq.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/PA_DATA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/PA_DATA.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/PA_ENC_TS_ENC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/PA_ENC_TS_ENC.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/PA_FOR_USER.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/PA_FOR_USER.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/PA_PAC_OPTIONS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/PA_PAC_OPTIONS.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/PA_PK_AS_REP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/PA_PK_AS_REP.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/PA_PK_AS_REQ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/PA_PK_AS_REQ.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/PA_S4U_X509_USER.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/PA_S4U_X509_USER.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/PrincipalName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/PrincipalName.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/S4UUserID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/S4UUserID.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/TGS_REP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/TGS_REP.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/TGS_REQ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/TGS_REQ.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/Ticket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/Ticket.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/TransitedEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/TransitedEncoding.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/pac/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/pac/Attributes.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/pac/ClientName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/pac/ClientName.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/pac/LogonInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/pac/LogonInfo.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/pac/PACTYPE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/pac/PACTYPE.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/pac/PacInfoBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/pac/PacInfoBuffer.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/pac/Requestor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/pac/Requestor.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/pac/SignatureData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/pac/SignatureData.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/krb_structures/pac/UpnDns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/krb_structures/pac/UpnDns.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/math/BigInteger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/math/BigInteger.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/math/ConfidenceFactor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/math/ConfidenceFactor.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/math/NextPrimeFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/math/NextPrimeFinder.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/math/PrimalityTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/math/PrimalityTest.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/math/PrimeGeneratorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/math/PrimeGeneratorBase.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/ndr/Ndr/Marshal/INdrStructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/ndr/Ndr/Marshal/INdrStructure.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/ndr/Ndr/Marshal/NdrContextHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/ndr/Ndr/Marshal/NdrContextHandle.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/ndr/Ndr/Marshal/NdrDeferralStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/ndr/Ndr/Marshal/NdrDeferralStack.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/ndr/Ndr/Marshal/NdrEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/ndr/Ndr/Marshal/NdrEmpty.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/ndr/Ndr/Marshal/NdrEnum16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/ndr/Ndr/Marshal/NdrEnum16.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/ndr/Ndr/Marshal/NdrInt3264.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/ndr/Ndr/Marshal/NdrInt3264.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/ndr/Ndr/Marshal/NdrMarshalBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/ndr/Ndr/Marshal/NdrMarshalBuffer.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/ndr/Ndr/Marshal/NdrPickledType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/ndr/Ndr/Marshal/NdrPickledType.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/ndr/Ndr/Marshal/NdrPipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/ndr/Ndr/Marshal/NdrPipe.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/ndr/Ndr/Marshal/NdrUnsupported.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/ndr/Ndr/Marshal/NdrUnsupported.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/ndr/Ndr/NdrNativeUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/ndr/Ndr/NdrNativeUtils.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/ndr/Ndr/NdrParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/ndr/Ndr/NdrParser.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/ndr/Utilities/Text/BinaryEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/ndr/Utilities/Text/BinaryEncoding.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/ndr/Utilities/Text/HexDumpBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/ndr/Utilities/Text/HexDumpBuilder.cs -------------------------------------------------------------------------------- /DavRelayUp/Kerb/ndr/Win32/Rpc/RpcUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Kerb/ndr/Win32/Rpc/RpcUtils.cs -------------------------------------------------------------------------------- /DavRelayUp/KrbSCM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/KrbSCM.cs -------------------------------------------------------------------------------- /DavRelayUp/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Native.cs -------------------------------------------------------------------------------- /DavRelayUp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Program.cs -------------------------------------------------------------------------------- /DavRelayUp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DavRelayUp/S4U.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/S4U.cs -------------------------------------------------------------------------------- /DavRelayUp/WebClientEnabler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/WebClientEnabler.cs -------------------------------------------------------------------------------- /DavRelayUp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/DavRelayUp/packages.config -------------------------------------------------------------------------------- /GoRelayServer/GoRelayServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/GoRelayServer.dll -------------------------------------------------------------------------------- /GoRelayServer/GoRelayServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/GoRelayServer.h -------------------------------------------------------------------------------- /GoRelayServer/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/go.mod -------------------------------------------------------------------------------- /GoRelayServer/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/go.sum -------------------------------------------------------------------------------- /GoRelayServer/lib/azure/go-ntlmssp/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/azure/go-ntlmssp/.travis.yml -------------------------------------------------------------------------------- /GoRelayServer/lib/azure/go-ntlmssp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/azure/go-ntlmssp/LICENSE -------------------------------------------------------------------------------- /GoRelayServer/lib/azure/go-ntlmssp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/azure/go-ntlmssp/README.md -------------------------------------------------------------------------------- /GoRelayServer/lib/azure/go-ntlmssp/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/azure/go-ntlmssp/SECURITY.md -------------------------------------------------------------------------------- /GoRelayServer/lib/azure/go-ntlmssp/authheader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/azure/go-ntlmssp/authheader.go -------------------------------------------------------------------------------- /GoRelayServer/lib/azure/go-ntlmssp/avids.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/azure/go-ntlmssp/avids.go -------------------------------------------------------------------------------- /GoRelayServer/lib/azure/go-ntlmssp/messageheader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/azure/go-ntlmssp/messageheader.go -------------------------------------------------------------------------------- /GoRelayServer/lib/azure/go-ntlmssp/negotiator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/azure/go-ntlmssp/negotiator.go -------------------------------------------------------------------------------- /GoRelayServer/lib/azure/go-ntlmssp/nlmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/azure/go-ntlmssp/nlmp.go -------------------------------------------------------------------------------- /GoRelayServer/lib/azure/go-ntlmssp/nlmp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/azure/go-ntlmssp/nlmp_test.go -------------------------------------------------------------------------------- /GoRelayServer/lib/azure/go-ntlmssp/unicode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/azure/go-ntlmssp/unicode.go -------------------------------------------------------------------------------- /GoRelayServer/lib/azure/go-ntlmssp/varfield.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/azure/go-ntlmssp/varfield.go -------------------------------------------------------------------------------- /GoRelayServer/lib/azure/go-ntlmssp/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/azure/go-ntlmssp/version.go -------------------------------------------------------------------------------- /GoRelayServer/lib/go-ldap/ldap/v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/go-ldap/ldap/v3/LICENSE -------------------------------------------------------------------------------- /GoRelayServer/lib/go-ldap/ldap/v3/add.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/go-ldap/ldap/v3/add.go -------------------------------------------------------------------------------- /GoRelayServer/lib/go-ldap/ldap/v3/bind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/go-ldap/ldap/v3/bind.go -------------------------------------------------------------------------------- /GoRelayServer/lib/go-ldap/ldap/v3/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/go-ldap/ldap/v3/client.go -------------------------------------------------------------------------------- /GoRelayServer/lib/go-ldap/ldap/v3/compare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/go-ldap/ldap/v3/compare.go -------------------------------------------------------------------------------- /GoRelayServer/lib/go-ldap/ldap/v3/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/go-ldap/ldap/v3/conn.go -------------------------------------------------------------------------------- /GoRelayServer/lib/go-ldap/ldap/v3/conn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/go-ldap/ldap/v3/conn_test.go -------------------------------------------------------------------------------- /GoRelayServer/lib/go-ldap/ldap/v3/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/go-ldap/ldap/v3/control.go -------------------------------------------------------------------------------- /GoRelayServer/lib/go-ldap/ldap/v3/control_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/go-ldap/ldap/v3/control_test.go -------------------------------------------------------------------------------- /GoRelayServer/lib/go-ldap/ldap/v3/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/go-ldap/ldap/v3/debug.go -------------------------------------------------------------------------------- /GoRelayServer/lib/go-ldap/ldap/v3/del.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/go-ldap/ldap/v3/del.go -------------------------------------------------------------------------------- /GoRelayServer/lib/go-ldap/ldap/v3/dn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/go-ldap/ldap/v3/dn.go -------------------------------------------------------------------------------- /GoRelayServer/lib/go-ldap/ldap/v3/dn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/go-ldap/ldap/v3/dn_test.go -------------------------------------------------------------------------------- /GoRelayServer/lib/go-ldap/ldap/v3/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/go-ldap/ldap/v3/doc.go -------------------------------------------------------------------------------- /GoRelayServer/lib/go-ldap/ldap/v3/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/go-ldap/ldap/v3/error.go -------------------------------------------------------------------------------- /GoRelayServer/lib/go-ldap/ldap/v3/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/go-ldap/ldap/v3/error_test.go -------------------------------------------------------------------------------- /GoRelayServer/lib/go-ldap/ldap/v3/examples_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/go-ldap/ldap/v3/examples_test.go -------------------------------------------------------------------------------- /GoRelayServer/lib/go-ldap/ldap/v3/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/go-ldap/ldap/v3/filter.go -------------------------------------------------------------------------------- /GoRelayServer/lib/go-ldap/ldap/v3/filter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/go-ldap/ldap/v3/filter_test.go -------------------------------------------------------------------------------- /GoRelayServer/lib/go-ldap/ldap/v3/ldap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/go-ldap/ldap/v3/ldap.go -------------------------------------------------------------------------------- /GoRelayServer/lib/go-ldap/ldap/v3/ldap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/go-ldap/ldap/v3/ldap_test.go -------------------------------------------------------------------------------- /GoRelayServer/lib/go-ldap/ldap/v3/moddn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/go-ldap/ldap/v3/moddn.go -------------------------------------------------------------------------------- /GoRelayServer/lib/go-ldap/ldap/v3/modify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/go-ldap/ldap/v3/modify.go -------------------------------------------------------------------------------- /GoRelayServer/lib/go-ldap/ldap/v3/passwdmodify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/go-ldap/ldap/v3/passwdmodify.go -------------------------------------------------------------------------------- /GoRelayServer/lib/go-ldap/ldap/v3/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/go-ldap/ldap/v3/request.go -------------------------------------------------------------------------------- /GoRelayServer/lib/go-ldap/ldap/v3/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/go-ldap/ldap/v3/search.go -------------------------------------------------------------------------------- /GoRelayServer/lib/go-ldap/ldap/v3/search_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/go-ldap/ldap/v3/search_test.go -------------------------------------------------------------------------------- /GoRelayServer/lib/go-ldap/ldap/v3/unbind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/go-ldap/ldap/v3/unbind.go -------------------------------------------------------------------------------- /GoRelayServer/lib/go-ldap/ldap/v3/whoami.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/go-ldap/ldap/v3/whoami.go -------------------------------------------------------------------------------- /GoRelayServer/lib/webdav-server/webdav_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/lib/webdav-server/webdav_server.go -------------------------------------------------------------------------------- /GoRelayServer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/GoRelayServer/main.go -------------------------------------------------------------------------------- /Images/DavRelayUp Demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/Images/DavRelayUp Demo.mp4 -------------------------------------------------------------------------------- /Images/example_rbcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/Images/example_rbcd.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/README.md -------------------------------------------------------------------------------- /packages/Costura.Fody.5.7.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/Costura.Fody.5.7.0/.signature.p7s -------------------------------------------------------------------------------- /packages/Costura.Fody.5.7.0/Costura.Fody.5.7.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/Costura.Fody.5.7.0/Costura.Fody.5.7.0.nupkg -------------------------------------------------------------------------------- /packages/Costura.Fody.5.7.0/build/Costura.Fody.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/Costura.Fody.5.7.0/build/Costura.Fody.props -------------------------------------------------------------------------------- /packages/Costura.Fody.5.7.0/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/Costura.Fody.5.7.0/icon.png -------------------------------------------------------------------------------- /packages/Fody.6.7.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/Fody.6.7.0/.signature.p7s -------------------------------------------------------------------------------- /packages/Fody.6.7.0/Fody.6.7.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/Fody.6.7.0/Fody.6.7.0.nupkg -------------------------------------------------------------------------------- /packages/Fody.6.7.0/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/Fody.6.7.0/License.txt -------------------------------------------------------------------------------- /packages/Fody.6.7.0/build/Fody.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/Fody.6.7.0/build/Fody.targets -------------------------------------------------------------------------------- /packages/Fody.6.7.0/netclassictask/Fody.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/Fody.6.7.0/netclassictask/Fody.dll -------------------------------------------------------------------------------- /packages/Fody.6.7.0/netclassictask/FodyCommon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/Fody.6.7.0/netclassictask/FodyCommon.dll -------------------------------------------------------------------------------- /packages/Fody.6.7.0/netclassictask/FodyHelpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/Fody.6.7.0/netclassictask/FodyHelpers.dll -------------------------------------------------------------------------------- /packages/Fody.6.7.0/netclassictask/FodyIsolated.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/Fody.6.7.0/netclassictask/FodyIsolated.dll -------------------------------------------------------------------------------- /packages/Fody.6.7.0/netclassictask/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/Fody.6.7.0/netclassictask/Mono.Cecil.dll -------------------------------------------------------------------------------- /packages/Fody.6.7.0/netclassictask/Mono.Cecil.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/Fody.6.7.0/netclassictask/Mono.Cecil.pdb -------------------------------------------------------------------------------- /packages/Fody.6.7.0/netstandardtask/Fody.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/Fody.6.7.0/netstandardtask/Fody.dll -------------------------------------------------------------------------------- /packages/Fody.6.7.0/netstandardtask/FodyCommon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/Fody.6.7.0/netstandardtask/FodyCommon.dll -------------------------------------------------------------------------------- /packages/Fody.6.7.0/netstandardtask/FodyHelpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/Fody.6.7.0/netstandardtask/FodyHelpers.dll -------------------------------------------------------------------------------- /packages/Fody.6.7.0/netstandardtask/FodyIsolated.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/Fody.6.7.0/netstandardtask/FodyIsolated.dll -------------------------------------------------------------------------------- /packages/Fody.6.7.0/netstandardtask/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/Fody.6.7.0/netstandardtask/Mono.Cecil.dll -------------------------------------------------------------------------------- /packages/Fody.6.7.0/netstandardtask/Mono.Cecil.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/Fody.6.7.0/netstandardtask/Mono.Cecil.pdb -------------------------------------------------------------------------------- /packages/Microsoft.NETCore.Platforms.1.1.0/lib/netstandard1.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/NETStandard.Library.1.6.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/NETStandard.Library.1.6.1/.signature.p7s -------------------------------------------------------------------------------- /packages/System.AppContext.4.3.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/System.AppContext.4.3.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.AppContext.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.AppContext.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.AppContext.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.AppContext.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.AppContext.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.AppContext.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.AppContext.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.AppContext.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.AppContext.4.3.0/ref/netstandard/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.AppContext.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.AppContext.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.AppContext.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.AppContext.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.3.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/System.Collections.4.3.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Collections.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.3.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.3.0/lib/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.3.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.3.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.3.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.3.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.3.0/ref/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.3.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.3.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.3.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.Concurrent.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.Concurrent.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.Concurrent.4.3.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.Concurrent.4.3.0/lib/portable-net45+win8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.Concurrent.4.3.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.Concurrent.4.3.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.Concurrent.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.Concurrent.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.Concurrent.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.Concurrent.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.Concurrent.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.Concurrent.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.Concurrent.4.3.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.Concurrent.4.3.0/ref/portable-net45+win8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.Concurrent.4.3.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.Concurrent.4.3.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.Concurrent.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.Concurrent.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.Concurrent.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.Concurrent.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Console.4.3.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/System.Console.4.3.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Console.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Console.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Console.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Console.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Console.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Console.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Console.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Console.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Console.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Console.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Console.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Console.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.3.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.3.0/lib/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.3.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.3.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.3.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.3.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.3.0/ref/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.3.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.3.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.3.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tools.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tools.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tools.4.3.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tools.4.3.0/lib/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tools.4.3.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tools.4.3.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tools.4.3.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tools.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tools.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tools.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tools.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tools.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tools.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tools.4.3.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tools.4.3.0/ref/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tools.4.3.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tools.4.3.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tools.4.3.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tools.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tools.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tools.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tools.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tracing.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tracing.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tracing.4.3.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tracing.4.3.0/lib/portable-net45+win8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tracing.4.3.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tracing.4.3.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tracing.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tracing.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tracing.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tracing.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tracing.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tracing.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tracing.4.3.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tracing.4.3.0/ref/portable-net45+win8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tracing.4.3.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tracing.4.3.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tracing.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tracing.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tracing.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Tracing.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.3.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/System.Globalization.4.3.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Globalization.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.3.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.3.0/lib/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.3.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.3.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.3.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.3.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.3.0/ref/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.3.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.3.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.3.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.Calendars.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.Calendars.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.Calendars.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.Calendars.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.Calendars.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.Calendars.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.Calendars.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.Calendars.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.Calendars.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.Calendars.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.Calendars.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.Calendars.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.3.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/System.IO.4.3.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.IO.4.3.0/System.IO.4.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/System.IO.4.3.0/System.IO.4.3.0.nupkg -------------------------------------------------------------------------------- /packages/System.IO.4.3.0/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/System.IO.4.3.0/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /packages/System.IO.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.3.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.3.0/lib/net462/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/System.IO.4.3.0/lib/net462/System.IO.dll -------------------------------------------------------------------------------- /packages/System.IO.4.3.0/lib/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.3.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.3.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.3.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.3.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.3.0/ref/net462/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/System.IO.4.3.0/ref/net462/System.IO.dll -------------------------------------------------------------------------------- /packages/System.IO.4.3.0/ref/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.3.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.3.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.3.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.Compression.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.Compression.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.Compression.4.3.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.Compression.4.3.0/lib/portable-net45+win8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.Compression.4.3.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.Compression.4.3.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.Compression.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.Compression.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.Compression.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.Compression.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.Compression.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.Compression.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.Compression.4.3.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.Compression.4.3.0/ref/portable-net45+win8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.Compression.4.3.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.Compression.4.3.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.Compression.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.Compression.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.Compression.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.Compression.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.Compression.ZipFile.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.Compression.ZipFile.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.Compression.ZipFile.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.Compression.ZipFile.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.Compression.ZipFile.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.Compression.ZipFile.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.Compression.ZipFile.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.Compression.ZipFile.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.Compression.ZipFile.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.Compression.ZipFile.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.Compression.ZipFile.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.Compression.ZipFile.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.FileSystem.4.3.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/System.IO.FileSystem.4.3.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.IO.FileSystem.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.FileSystem.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.FileSystem.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.FileSystem.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.FileSystem.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.FileSystem.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.FileSystem.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.FileSystem.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.FileSystem.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.FileSystem.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.FileSystem.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.FileSystem.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.FileSystem.Primitives.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.FileSystem.Primitives.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.FileSystem.Primitives.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.FileSystem.Primitives.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.FileSystem.Primitives.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.FileSystem.Primitives.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.FileSystem.Primitives.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.FileSystem.Primitives.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.FileSystem.Primitives.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.FileSystem.Primitives.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.FileSystem.Primitives.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.FileSystem.Primitives.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.3.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/System.Linq.4.3.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Linq.4.3.0/System.Linq.4.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/System.Linq.4.3.0/System.Linq.4.3.0.nupkg -------------------------------------------------------------------------------- /packages/System.Linq.4.3.0/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/System.Linq.4.3.0/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /packages/System.Linq.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.3.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.3.0/lib/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.3.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.3.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.3.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.3.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.3.0/ref/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.3.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.3.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.3.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.Expressions.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.Expressions.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.Expressions.4.3.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.Expressions.4.3.0/lib/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.Expressions.4.3.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.Expressions.4.3.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.Expressions.4.3.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.Expressions.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.Expressions.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.Expressions.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.Expressions.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.Expressions.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.Expressions.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.Expressions.4.3.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.Expressions.4.3.0/ref/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.Expressions.4.3.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.Expressions.4.3.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.Expressions.4.3.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.Expressions.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.Expressions.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.Expressions.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.Expressions.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.3.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/System.Net.Http.4.3.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Net.Http.4.3.0/lib/Xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.3.0/lib/monoandroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.3.0/lib/monotouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.3.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.3.0/lib/portable-net45+win8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.3.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.3.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.3.0/ref/Xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.3.0/ref/monoandroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.3.0/ref/monotouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.3.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.3.0/ref/portable-net45+win8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.3.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.3.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Primitives.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Primitives.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Primitives.4.3.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Primitives.4.3.0/lib/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Primitives.4.3.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Primitives.4.3.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Primitives.4.3.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Primitives.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Primitives.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Primitives.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Primitives.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Primitives.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Primitives.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Primitives.4.3.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Primitives.4.3.0/ref/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Primitives.4.3.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Primitives.4.3.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Primitives.4.3.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Primitives.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Primitives.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Primitives.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Primitives.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Sockets.4.3.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/System.Net.Sockets.4.3.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Net.Sockets.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Sockets.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Sockets.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Sockets.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Sockets.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Sockets.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Sockets.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Sockets.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Sockets.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Sockets.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Sockets.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Sockets.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ObjectModel.4.3.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/System.ObjectModel.4.3.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.ObjectModel.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ObjectModel.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ObjectModel.4.3.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ObjectModel.4.3.0/lib/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ObjectModel.4.3.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ObjectModel.4.3.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ObjectModel.4.3.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ObjectModel.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ObjectModel.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ObjectModel.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ObjectModel.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ObjectModel.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ObjectModel.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ObjectModel.4.3.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ObjectModel.4.3.0/ref/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ObjectModel.4.3.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ObjectModel.4.3.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ObjectModel.4.3.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ObjectModel.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ObjectModel.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ObjectModel.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ObjectModel.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.4.3.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/System.Reflection.4.3.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Reflection.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.4.3.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.4.3.0/lib/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.4.3.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.4.3.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.4.3.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.4.3.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.4.3.0/ref/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.4.3.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.4.3.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.4.3.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Extensions.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Extensions.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Extensions.4.3.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Extensions.4.3.0/lib/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Extensions.4.3.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Extensions.4.3.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Extensions.4.3.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Extensions.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Extensions.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Extensions.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Extensions.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Extensions.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Extensions.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Extensions.4.3.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Extensions.4.3.0/ref/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Extensions.4.3.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Extensions.4.3.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Extensions.4.3.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Extensions.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Extensions.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Extensions.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Extensions.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Primitives.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Primitives.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Primitives.4.3.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Primitives.4.3.0/lib/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Primitives.4.3.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Primitives.4.3.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Primitives.4.3.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Primitives.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Primitives.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Primitives.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Primitives.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Primitives.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Primitives.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Primitives.4.3.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Primitives.4.3.0/ref/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Primitives.4.3.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Primitives.4.3.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Primitives.4.3.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Primitives.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Primitives.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Primitives.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Primitives.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.3.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.3.0/lib/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.3.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.3.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.3.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.3.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.3.0/ref/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.3.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.3.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.3.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.3.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/System.Runtime.4.3.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Runtime.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.3.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.3.0/lib/portable-net45+win8+wp80+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.3.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.3.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.3.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.3.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.3.0/ref/portable-net45+win8+wp80+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.3.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.3.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.3.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.0/lib/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.0/ref/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Handles.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Handles.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Handles.4.3.0/lib/net46/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Handles.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Handles.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Handles.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Handles.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Handles.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Handles.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Handles.4.3.0/ref/net46/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Handles.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Handles.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Handles.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Handles.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.4.3.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.4.3.0/lib/portable-net45+win8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.4.3.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.4.3.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.4.3.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.4.3.0/ref/portable-net45+win8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.4.3.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.4.3.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Numerics.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Numerics.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Numerics.4.3.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Numerics.4.3.0/lib/portable-net45+win8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Numerics.4.3.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Numerics.4.3.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Numerics.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Numerics.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Numerics.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Numerics.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Numerics.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Numerics.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Numerics.4.3.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Numerics.4.3.0/ref/portable-net45+win8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Numerics.4.3.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Numerics.4.3.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Numerics.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Numerics.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Numerics.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Numerics.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.4.3.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/System.Text.Encoding.4.3.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Text.Encoding.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.4.3.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.4.3.0/lib/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.4.3.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.4.3.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.4.3.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.4.3.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.4.3.0/ref/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.4.3.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.4.3.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.4.3.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.Extensions.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.Extensions.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.Extensions.4.3.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.Extensions.4.3.0/lib/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.Extensions.4.3.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.Extensions.4.3.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.Extensions.4.3.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.Extensions.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.Extensions.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.Extensions.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.Extensions.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.Extensions.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.Extensions.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.Extensions.4.3.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.Extensions.4.3.0/ref/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.Extensions.4.3.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.Extensions.4.3.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.Extensions.4.3.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.Extensions.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.Extensions.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.Extensions.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.Encoding.Extensions.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.RegularExpressions.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.RegularExpressions.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.RegularExpressions.4.3.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.RegularExpressions.4.3.0/lib/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.RegularExpressions.4.3.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.RegularExpressions.4.3.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.RegularExpressions.4.3.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.RegularExpressions.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.RegularExpressions.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.RegularExpressions.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.RegularExpressions.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.RegularExpressions.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.RegularExpressions.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.RegularExpressions.4.3.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.RegularExpressions.4.3.0/ref/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.RegularExpressions.4.3.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.RegularExpressions.4.3.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.RegularExpressions.4.3.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.RegularExpressions.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.RegularExpressions.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.RegularExpressions.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Text.RegularExpressions.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.3.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/System.Threading.4.3.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Threading.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.3.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.3.0/lib/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.3.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.3.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.3.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.3.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.3.0/ref/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.3.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.3.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.3.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.4.3.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.4.3.0/lib/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.4.3.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.4.3.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.4.3.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.4.3.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.4.3.0/ref/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.4.3.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.4.3.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.4.3.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Timer.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Timer.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Timer.4.3.0/lib/net451/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Timer.4.3.0/lib/portable-net451+win81+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Timer.4.3.0/lib/win81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Timer.4.3.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Timer.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Timer.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Timer.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Timer.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Timer.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Timer.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Timer.4.3.0/ref/net451/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Timer.4.3.0/ref/portable-net451+win81+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Timer.4.3.0/ref/win81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Timer.4.3.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Timer.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Timer.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Timer.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Timer.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.ReaderWriter.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.ReaderWriter.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.ReaderWriter.4.3.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.ReaderWriter.4.3.0/lib/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.ReaderWriter.4.3.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.ReaderWriter.4.3.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.ReaderWriter.4.3.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.ReaderWriter.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.ReaderWriter.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.ReaderWriter.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.ReaderWriter.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.ReaderWriter.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.ReaderWriter.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.ReaderWriter.4.3.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.ReaderWriter.4.3.0/ref/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.ReaderWriter.4.3.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.ReaderWriter.4.3.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.ReaderWriter.4.3.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.ReaderWriter.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.ReaderWriter.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.ReaderWriter.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.ReaderWriter.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.XDocument.4.3.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dec0ne/DavRelayUp/HEAD/packages/System.Xml.XDocument.4.3.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Xml.XDocument.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.XDocument.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.XDocument.4.3.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.XDocument.4.3.0/lib/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.XDocument.4.3.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.XDocument.4.3.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.XDocument.4.3.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.XDocument.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.XDocument.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.XDocument.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.XDocument.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.XDocument.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.XDocument.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.XDocument.4.3.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.XDocument.4.3.0/ref/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.XDocument.4.3.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.XDocument.4.3.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.XDocument.4.3.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.XDocument.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.XDocument.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.XDocument.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Xml.XDocument.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------