├── .idea └── .idea.RequestResponseMessaging │ └── .idea │ ├── .gitignore │ ├── encodings.xml │ └── indexLayout.xml ├── .vs └── RequestResponseMessaging │ └── v16 │ ├── .suo │ └── Server │ └── sqlite3 │ ├── db.lock │ └── storage.ide ├── RequestResponseMessaging.Client ├── ClientConsole.cs ├── Properties │ └── AssemblyInfo.cs ├── RequestResponseMessaging.Client.csproj ├── app.config ├── obj │ └── x86 │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── RequestResponseMessaging.Client.csproj.FileListAbsolute.txt └── packages.config ├── RequestResponseMessaging.Config ├── AccountDetails.cs ├── Properties │ └── AssemblyInfo.cs ├── RequestResponseMessaging.Config.csproj └── obj │ └── Debug │ └── RequestResponseMessaging.Config.csproj.FileListAbsolute.txt ├── RequestResponseMessaging.Server ├── Properties │ └── AssemblyInfo.cs ├── RequestResponseMessaging.Server.csproj ├── ServerConsole.cs ├── app.config ├── obj │ └── x86 │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── RequestResponseMessaging.Server.csproj.FileListAbsolute.txt └── packages.config ├── RequestResponseMessaging.sln ├── RequestResponseMessaging.v11.suo ├── RequestResponseMessaging.v12.suo └── packages ├── Microsoft.Azure.Amqp.2.4.2 ├── .signature.p7s ├── Microsoft.Azure.Amqp.2.4.2.nupkg └── lib │ ├── monoandroid │ └── Microsoft.Azure.Amqp.dll │ ├── net45 │ └── Microsoft.Azure.Amqp.dll │ ├── netstandard1.3 │ └── Microsoft.Azure.Amqp.dll │ ├── portable-net45+wp8+wpa81+win8+MonoAndroid10+MonoTouch10+Xamarin.iOS10+UAP10 │ └── Microsoft.Azure.Amqp.dll │ └── uap10.0 │ ├── Microsoft.Azure.Amqp.dll │ └── Microsoft.Azure.Amqp.pri ├── Microsoft.Azure.ServiceBus.4.1.1 ├── .signature.p7s ├── Microsoft.Azure.ServiceBus.4.1.1.nupkg ├── lib │ └── netstandard2.0 │ │ └── Microsoft.Azure.ServiceBus.dll └── pkgicon.png ├── Microsoft.Azure.Services.AppAuthentication.1.0.3 ├── .signature.p7s ├── Microsoft.Azure.Services.AppAuthentication.1.0.3.nupkg ├── build │ └── Microsoft.Azure.Services.AppAuthentication.targets └── lib │ ├── net452 │ ├── Microsoft.Azure.Services.AppAuthentication.dll │ ├── Microsoft.Azure.Services.AppAuthentication.runtimeconfig.json │ └── Microsoft.Azure.Services.AppAuthentication.xml │ └── netstandard1.4 │ ├── Microsoft.Azure.Services.AppAuthentication.dll │ ├── Microsoft.Azure.Services.AppAuthentication.runtimeconfig.json │ └── Microsoft.Azure.Services.AppAuthentication.xml ├── Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2 ├── .signature.p7s ├── Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2.nupkg └── lib │ ├── MonoAndroid10 │ ├── Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.XML │ ├── Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll │ ├── Microsoft.IdentityModel.Clients.ActiveDirectory.dll │ └── Microsoft.IdentityModel.Clients.ActiveDirectory.xml │ ├── Xamarin.iOS10 │ ├── Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.XML │ ├── Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll │ ├── Microsoft.IdentityModel.Clients.ActiveDirectory.dll │ └── Microsoft.IdentityModel.Clients.ActiveDirectory.xml │ ├── net45 │ ├── Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.XML │ ├── Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll │ ├── Microsoft.IdentityModel.Clients.ActiveDirectory.dll │ └── Microsoft.IdentityModel.Clients.ActiveDirectory.xml │ ├── netcore45 │ ├── Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.XML │ ├── Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll │ ├── Microsoft.IdentityModel.Clients.ActiveDirectory.dll │ └── Microsoft.IdentityModel.Clients.ActiveDirectory.xml │ ├── netstandard1.3 │ ├── Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll │ ├── Microsoft.IdentityModel.Clients.ActiveDirectory.dll │ └── Microsoft.IdentityModel.Clients.ActiveDirectory.xml │ └── portable-net45+win │ ├── Microsoft.IdentityModel.Clients.ActiveDirectory.dll │ └── Microsoft.IdentityModel.Clients.ActiveDirectory.xml ├── Microsoft.IdentityModel.JsonWebTokens.5.4.0 ├── .signature.p7s ├── Microsoft.IdentityModel.JsonWebTokens.5.4.0.nupkg └── lib │ ├── net45 │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ ├── Microsoft.IdentityModel.JsonWebTokens.pdb │ └── Microsoft.IdentityModel.JsonWebTokens.xml │ ├── net451 │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ ├── Microsoft.IdentityModel.JsonWebTokens.pdb │ └── Microsoft.IdentityModel.JsonWebTokens.xml │ ├── net461 │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ ├── Microsoft.IdentityModel.JsonWebTokens.pdb │ └── Microsoft.IdentityModel.JsonWebTokens.xml │ ├── netstandard1.4 │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ ├── Microsoft.IdentityModel.JsonWebTokens.pdb │ └── Microsoft.IdentityModel.JsonWebTokens.xml │ └── netstandard2.0 │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ ├── Microsoft.IdentityModel.JsonWebTokens.pdb │ └── Microsoft.IdentityModel.JsonWebTokens.xml ├── Microsoft.IdentityModel.Logging.5.4.0 ├── .signature.p7s ├── Microsoft.IdentityModel.Logging.5.4.0.nupkg └── lib │ ├── net45 │ ├── Microsoft.IdentityModel.Logging.dll │ ├── Microsoft.IdentityModel.Logging.pdb │ └── Microsoft.IdentityModel.Logging.xml │ ├── net451 │ ├── Microsoft.IdentityModel.Logging.dll │ ├── Microsoft.IdentityModel.Logging.pdb │ └── Microsoft.IdentityModel.Logging.xml │ ├── net461 │ ├── Microsoft.IdentityModel.Logging.dll │ ├── Microsoft.IdentityModel.Logging.pdb │ └── Microsoft.IdentityModel.Logging.xml │ ├── netstandard1.4 │ ├── Microsoft.IdentityModel.Logging.dll │ ├── Microsoft.IdentityModel.Logging.pdb │ └── Microsoft.IdentityModel.Logging.xml │ └── netstandard2.0 │ ├── Microsoft.IdentityModel.Logging.dll │ ├── Microsoft.IdentityModel.Logging.pdb │ └── Microsoft.IdentityModel.Logging.xml ├── Microsoft.IdentityModel.Tokens.5.4.0 ├── .signature.p7s ├── Microsoft.IdentityModel.Tokens.5.4.0.nupkg └── lib │ ├── net45 │ ├── Microsoft.IdentityModel.Tokens.dll │ ├── Microsoft.IdentityModel.Tokens.pdb │ └── Microsoft.IdentityModel.Tokens.xml │ ├── net451 │ ├── Microsoft.IdentityModel.Tokens.dll │ ├── Microsoft.IdentityModel.Tokens.pdb │ └── Microsoft.IdentityModel.Tokens.xml │ ├── net461 │ ├── Microsoft.IdentityModel.Tokens.dll │ ├── Microsoft.IdentityModel.Tokens.pdb │ └── Microsoft.IdentityModel.Tokens.xml │ ├── netstandard1.4 │ ├── Microsoft.IdentityModel.Tokens.dll │ ├── Microsoft.IdentityModel.Tokens.pdb │ └── Microsoft.IdentityModel.Tokens.xml │ └── netstandard2.0 │ ├── Microsoft.IdentityModel.Tokens.dll │ ├── Microsoft.IdentityModel.Tokens.pdb │ └── Microsoft.IdentityModel.Tokens.xml ├── Newtonsoft.Json.10.0.3 ├── .signature.p7s ├── LICENSE.md ├── Newtonsoft.Json.10.0.3.nupkg ├── lib │ ├── net20 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net35 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net40 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net45 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── netstandard1.0 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── netstandard1.3 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── portable-net40+sl5+win8+wp8+wpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ └── portable-net45+win8+wp8+wpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml └── tools │ └── install.ps1 ├── System.Diagnostics.DiagnosticSource.4.5.1 ├── .signature.p7s ├── LICENSE.TXT ├── System.Diagnostics.DiagnosticSource.4.5.1.nupkg ├── THIRD-PARTY-NOTICES.TXT ├── lib │ ├── net45 │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ └── System.Diagnostics.DiagnosticSource.xml │ ├── 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 ├── useSharedDesignerContext.txt └── version.txt ├── System.IO.4.1.0 ├── .signature.p7s ├── System.IO.4.1.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.IdentityModel.Tokens.Jwt.5.4.0 ├── .signature.p7s ├── System.IdentityModel.Tokens.Jwt.5.4.0.nupkg └── lib │ ├── net45 │ ├── System.IdentityModel.Tokens.Jwt.dll │ ├── System.IdentityModel.Tokens.Jwt.pdb │ └── System.IdentityModel.Tokens.Jwt.xml │ ├── net451 │ ├── System.IdentityModel.Tokens.Jwt.dll │ ├── System.IdentityModel.Tokens.Jwt.pdb │ └── System.IdentityModel.Tokens.Jwt.xml │ ├── net461 │ ├── System.IdentityModel.Tokens.Jwt.dll │ ├── System.IdentityModel.Tokens.Jwt.pdb │ └── System.IdentityModel.Tokens.Jwt.xml │ ├── netstandard1.4 │ ├── System.IdentityModel.Tokens.Jwt.dll │ ├── System.IdentityModel.Tokens.Jwt.pdb │ └── System.IdentityModel.Tokens.Jwt.xml │ └── netstandard2.0 │ ├── System.IdentityModel.Tokens.Jwt.dll │ ├── System.IdentityModel.Tokens.Jwt.pdb │ └── System.IdentityModel.Tokens.Jwt.xml ├── System.Net.WebSockets.4.0.0 ├── .signature.p7s ├── System.Net.WebSockets.4.0.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net46 │ │ └── System.Net.WebSockets.dll │ ├── netstandard1.3 │ │ └── System.Net.WebSockets.dll │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net46 │ └── System.Net.WebSockets.dll │ ├── netstandard1.3 │ ├── System.Net.WebSockets.dll │ ├── System.Net.WebSockets.xml │ ├── de │ │ └── System.Net.WebSockets.xml │ ├── es │ │ └── System.Net.WebSockets.xml │ ├── fr │ │ └── System.Net.WebSockets.xml │ ├── it │ │ └── System.Net.WebSockets.xml │ ├── ja │ │ └── System.Net.WebSockets.xml │ ├── ko │ │ └── System.Net.WebSockets.xml │ ├── ru │ │ └── System.Net.WebSockets.xml │ ├── zh-hans │ │ └── System.Net.WebSockets.xml │ └── zh-hant │ │ └── System.Net.WebSockets.xml │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ ├── System.Net.WebSockets.Client.4.0.2 ├── .signature.p7s ├── System.Net.WebSockets.Client.4.0.2.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net46 │ │ └── System.Net.WebSockets.Client.dll │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ ├── ref │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net46 │ │ └── System.Net.WebSockets.Client.dll │ ├── netstandard1.3 │ │ ├── System.Net.WebSockets.Client.dll │ │ ├── System.Net.WebSockets.Client.xml │ │ ├── de │ │ │ └── System.Net.WebSockets.Client.xml │ │ ├── es │ │ │ └── System.Net.WebSockets.Client.xml │ │ ├── fr │ │ │ └── System.Net.WebSockets.Client.xml │ │ ├── it │ │ │ └── System.Net.WebSockets.Client.xml │ │ ├── ja │ │ │ └── System.Net.WebSockets.Client.xml │ │ ├── ko │ │ │ └── System.Net.WebSockets.Client.xml │ │ ├── ru │ │ │ └── System.Net.WebSockets.Client.xml │ │ ├── zh-hans │ │ │ └── System.Net.WebSockets.Client.xml │ │ └── zh-hant │ │ │ └── System.Net.WebSockets.Client.xml │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── runtimes │ ├── unix │ └── lib │ │ └── netstandard1.3 │ │ └── System.Net.WebSockets.Client.dll │ └── win │ └── lib │ ├── net46 │ └── System.Net.WebSockets.Client.dll │ ├── netcore50 │ └── System.Net.WebSockets.Client.dll │ └── netstandard1.3 │ └── System.Net.WebSockets.Client.dll ├── System.Runtime.4.1.0 ├── .signature.p7s ├── System.Runtime.4.1.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.Serialization.Primitives.4.1.1 ├── .signature.p7s ├── System.Runtime.Serialization.Primitives.4.1.1.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── net46 │ │ └── System.Runtime.Serialization.Primitives.dll │ ├── netcore50 │ │ └── System.Runtime.Serialization.Primitives.dll │ ├── netstandard1.3 │ │ └── System.Runtime.Serialization.Primitives.dll │ ├── portable-net45+win8+wp8+wpa81 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ ├── ref │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── net46 │ │ └── System.Runtime.Serialization.Primitives.dll │ ├── netcore50 │ │ ├── System.Runtime.Serialization.Primitives.dll │ │ ├── System.Runtime.Serialization.Primitives.xml │ │ ├── de │ │ │ └── System.Runtime.Serialization.Primitives.xml │ │ ├── es │ │ │ └── System.Runtime.Serialization.Primitives.xml │ │ ├── fr │ │ │ └── System.Runtime.Serialization.Primitives.xml │ │ ├── it │ │ │ └── System.Runtime.Serialization.Primitives.xml │ │ ├── ja │ │ │ └── System.Runtime.Serialization.Primitives.xml │ │ ├── ko │ │ │ └── System.Runtime.Serialization.Primitives.xml │ │ ├── ru │ │ │ └── System.Runtime.Serialization.Primitives.xml │ │ ├── zh-hans │ │ │ └── System.Runtime.Serialization.Primitives.xml │ │ └── zh-hant │ │ │ └── System.Runtime.Serialization.Primitives.xml │ ├── netstandard1.0 │ │ ├── System.Runtime.Serialization.Primitives.dll │ │ ├── System.Runtime.Serialization.Primitives.xml │ │ ├── de │ │ │ └── System.Runtime.Serialization.Primitives.xml │ │ ├── es │ │ │ └── System.Runtime.Serialization.Primitives.xml │ │ ├── fr │ │ │ └── System.Runtime.Serialization.Primitives.xml │ │ ├── it │ │ │ └── System.Runtime.Serialization.Primitives.xml │ │ ├── ja │ │ │ └── System.Runtime.Serialization.Primitives.xml │ │ ├── ko │ │ │ └── System.Runtime.Serialization.Primitives.xml │ │ ├── ru │ │ │ └── System.Runtime.Serialization.Primitives.xml │ │ ├── zh-hans │ │ │ └── System.Runtime.Serialization.Primitives.xml │ │ └── zh-hant │ │ │ └── System.Runtime.Serialization.Primitives.xml │ ├── netstandard1.3 │ │ ├── System.Runtime.Serialization.Primitives.dll │ │ ├── System.Runtime.Serialization.Primitives.xml │ │ ├── de │ │ │ └── System.Runtime.Serialization.Primitives.xml │ │ ├── es │ │ │ └── System.Runtime.Serialization.Primitives.xml │ │ ├── fr │ │ │ └── System.Runtime.Serialization.Primitives.xml │ │ ├── it │ │ │ └── System.Runtime.Serialization.Primitives.xml │ │ ├── ja │ │ │ └── System.Runtime.Serialization.Primitives.xml │ │ ├── ko │ │ │ └── System.Runtime.Serialization.Primitives.xml │ │ ├── ru │ │ │ └── System.Runtime.Serialization.Primitives.xml │ │ ├── zh-hans │ │ │ └── System.Runtime.Serialization.Primitives.xml │ │ └── zh-hant │ │ │ └── System.Runtime.Serialization.Primitives.xml │ ├── portable-net45+win8+wp8+wpa81 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── runtimes │ └── aot │ └── lib │ └── netcore50 │ └── System.Runtime.Serialization.Primitives.dll ├── System.Security.Cryptography.Algorithms.4.2.0 ├── .signature.p7s ├── System.Security.Cryptography.Algorithms.4.2.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 │ ├── 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.0.0 ├── .signature.p7s ├── System.Security.Cryptography.Encoding.4.0.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.0.0 ├── .signature.p7s ├── System.Security.Cryptography.Primitives.4.0.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.1.0 ├── .signature.p7s ├── System.Security.Cryptography.X509Certificates.4.1.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 /.idea/.idea.RequestResponseMessaging/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/.idea/.idea.RequestResponseMessaging/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.RequestResponseMessaging/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/.idea/.idea.RequestResponseMessaging/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/.idea.RequestResponseMessaging/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/.idea/.idea.RequestResponseMessaging/.idea/indexLayout.xml -------------------------------------------------------------------------------- /.vs/RequestResponseMessaging/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/.vs/RequestResponseMessaging/v16/.suo -------------------------------------------------------------------------------- /.vs/RequestResponseMessaging/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/RequestResponseMessaging/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/.vs/RequestResponseMessaging/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /RequestResponseMessaging.Client/ClientConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/RequestResponseMessaging.Client/ClientConsole.cs -------------------------------------------------------------------------------- /RequestResponseMessaging.Client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/RequestResponseMessaging.Client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RequestResponseMessaging.Client/RequestResponseMessaging.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/RequestResponseMessaging.Client/RequestResponseMessaging.Client.csproj -------------------------------------------------------------------------------- /RequestResponseMessaging.Client/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/RequestResponseMessaging.Client/app.config -------------------------------------------------------------------------------- /RequestResponseMessaging.Client/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/RequestResponseMessaging.Client/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /RequestResponseMessaging.Client/obj/x86/Debug/RequestResponseMessaging.Client.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RequestResponseMessaging.Client/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/RequestResponseMessaging.Client/packages.config -------------------------------------------------------------------------------- /RequestResponseMessaging.Config/AccountDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/RequestResponseMessaging.Config/AccountDetails.cs -------------------------------------------------------------------------------- /RequestResponseMessaging.Config/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/RequestResponseMessaging.Config/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RequestResponseMessaging.Config/RequestResponseMessaging.Config.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/RequestResponseMessaging.Config/RequestResponseMessaging.Config.csproj -------------------------------------------------------------------------------- /RequestResponseMessaging.Config/obj/Debug/RequestResponseMessaging.Config.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RequestResponseMessaging.Server/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/RequestResponseMessaging.Server/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RequestResponseMessaging.Server/RequestResponseMessaging.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/RequestResponseMessaging.Server/RequestResponseMessaging.Server.csproj -------------------------------------------------------------------------------- /RequestResponseMessaging.Server/ServerConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/RequestResponseMessaging.Server/ServerConsole.cs -------------------------------------------------------------------------------- /RequestResponseMessaging.Server/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/RequestResponseMessaging.Server/app.config -------------------------------------------------------------------------------- /RequestResponseMessaging.Server/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/RequestResponseMessaging.Server/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /RequestResponseMessaging.Server/obj/x86/Debug/RequestResponseMessaging.Server.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RequestResponseMessaging.Server/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/RequestResponseMessaging.Server/packages.config -------------------------------------------------------------------------------- /RequestResponseMessaging.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/RequestResponseMessaging.sln -------------------------------------------------------------------------------- /RequestResponseMessaging.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/RequestResponseMessaging.v11.suo -------------------------------------------------------------------------------- /RequestResponseMessaging.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/RequestResponseMessaging.v12.suo -------------------------------------------------------------------------------- /packages/Microsoft.Azure.Amqp.2.4.2/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.Azure.Amqp.2.4.2/.signature.p7s -------------------------------------------------------------------------------- /packages/Microsoft.Azure.Amqp.2.4.2/Microsoft.Azure.Amqp.2.4.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.Azure.Amqp.2.4.2/Microsoft.Azure.Amqp.2.4.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Azure.Amqp.2.4.2/lib/monoandroid/Microsoft.Azure.Amqp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.Azure.Amqp.2.4.2/lib/monoandroid/Microsoft.Azure.Amqp.dll -------------------------------------------------------------------------------- /packages/Microsoft.Azure.Amqp.2.4.2/lib/net45/Microsoft.Azure.Amqp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.Azure.Amqp.2.4.2/lib/net45/Microsoft.Azure.Amqp.dll -------------------------------------------------------------------------------- /packages/Microsoft.Azure.Amqp.2.4.2/lib/netstandard1.3/Microsoft.Azure.Amqp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.Azure.Amqp.2.4.2/lib/netstandard1.3/Microsoft.Azure.Amqp.dll -------------------------------------------------------------------------------- /packages/Microsoft.Azure.Amqp.2.4.2/lib/portable-net45+wp8+wpa81+win8+MonoAndroid10+MonoTouch10+Xamarin.iOS10+UAP10/Microsoft.Azure.Amqp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.Azure.Amqp.2.4.2/lib/portable-net45+wp8+wpa81+win8+MonoAndroid10+MonoTouch10+Xamarin.iOS10+UAP10/Microsoft.Azure.Amqp.dll -------------------------------------------------------------------------------- /packages/Microsoft.Azure.Amqp.2.4.2/lib/uap10.0/Microsoft.Azure.Amqp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.Azure.Amqp.2.4.2/lib/uap10.0/Microsoft.Azure.Amqp.dll -------------------------------------------------------------------------------- /packages/Microsoft.Azure.Amqp.2.4.2/lib/uap10.0/Microsoft.Azure.Amqp.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.Azure.Amqp.2.4.2/lib/uap10.0/Microsoft.Azure.Amqp.pri -------------------------------------------------------------------------------- /packages/Microsoft.Azure.ServiceBus.4.1.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.Azure.ServiceBus.4.1.1/.signature.p7s -------------------------------------------------------------------------------- /packages/Microsoft.Azure.ServiceBus.4.1.1/Microsoft.Azure.ServiceBus.4.1.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.Azure.ServiceBus.4.1.1/Microsoft.Azure.ServiceBus.4.1.1.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Azure.ServiceBus.4.1.1/lib/netstandard2.0/Microsoft.Azure.ServiceBus.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.Azure.ServiceBus.4.1.1/lib/netstandard2.0/Microsoft.Azure.ServiceBus.dll -------------------------------------------------------------------------------- /packages/Microsoft.Azure.ServiceBus.4.1.1/pkgicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.Azure.ServiceBus.4.1.1/pkgicon.png -------------------------------------------------------------------------------- /packages/Microsoft.Azure.Services.AppAuthentication.1.0.3/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.Azure.Services.AppAuthentication.1.0.3/.signature.p7s -------------------------------------------------------------------------------- /packages/Microsoft.Azure.Services.AppAuthentication.1.0.3/Microsoft.Azure.Services.AppAuthentication.1.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.Azure.Services.AppAuthentication.1.0.3/Microsoft.Azure.Services.AppAuthentication.1.0.3.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Azure.Services.AppAuthentication.1.0.3/build/Microsoft.Azure.Services.AppAuthentication.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.Azure.Services.AppAuthentication.1.0.3/build/Microsoft.Azure.Services.AppAuthentication.targets -------------------------------------------------------------------------------- /packages/Microsoft.Azure.Services.AppAuthentication.1.0.3/lib/net452/Microsoft.Azure.Services.AppAuthentication.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.Azure.Services.AppAuthentication.1.0.3/lib/net452/Microsoft.Azure.Services.AppAuthentication.dll -------------------------------------------------------------------------------- /packages/Microsoft.Azure.Services.AppAuthentication.1.0.3/lib/net452/Microsoft.Azure.Services.AppAuthentication.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": {} 3 | } -------------------------------------------------------------------------------- /packages/Microsoft.Azure.Services.AppAuthentication.1.0.3/lib/net452/Microsoft.Azure.Services.AppAuthentication.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.Azure.Services.AppAuthentication.1.0.3/lib/net452/Microsoft.Azure.Services.AppAuthentication.xml -------------------------------------------------------------------------------- /packages/Microsoft.Azure.Services.AppAuthentication.1.0.3/lib/netstandard1.4/Microsoft.Azure.Services.AppAuthentication.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.Azure.Services.AppAuthentication.1.0.3/lib/netstandard1.4/Microsoft.Azure.Services.AppAuthentication.dll -------------------------------------------------------------------------------- /packages/Microsoft.Azure.Services.AppAuthentication.1.0.3/lib/netstandard1.4/Microsoft.Azure.Services.AppAuthentication.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": {} 3 | } -------------------------------------------------------------------------------- /packages/Microsoft.Azure.Services.AppAuthentication.1.0.3/lib/netstandard1.4/Microsoft.Azure.Services.AppAuthentication.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.Azure.Services.AppAuthentication.1.0.3/lib/netstandard1.4/Microsoft.Azure.Services.AppAuthentication.xml -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/.signature.p7s -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/MonoAndroid10/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/MonoAndroid10/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.XML -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/MonoAndroid10/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/MonoAndroid10/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/MonoAndroid10/Microsoft.IdentityModel.Clients.ActiveDirectory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/MonoAndroid10/Microsoft.IdentityModel.Clients.ActiveDirectory.dll -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/MonoAndroid10/Microsoft.IdentityModel.Clients.ActiveDirectory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/MonoAndroid10/Microsoft.IdentityModel.Clients.ActiveDirectory.xml -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/Xamarin.iOS10/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/Xamarin.iOS10/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.XML -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/Xamarin.iOS10/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/Xamarin.iOS10/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/Xamarin.iOS10/Microsoft.IdentityModel.Clients.ActiveDirectory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/Xamarin.iOS10/Microsoft.IdentityModel.Clients.ActiveDirectory.dll -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/Xamarin.iOS10/Microsoft.IdentityModel.Clients.ActiveDirectory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/Xamarin.iOS10/Microsoft.IdentityModel.Clients.ActiveDirectory.xml -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/net45/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/net45/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.XML -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/net45/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/net45/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/net45/Microsoft.IdentityModel.Clients.ActiveDirectory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/net45/Microsoft.IdentityModel.Clients.ActiveDirectory.dll -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/net45/Microsoft.IdentityModel.Clients.ActiveDirectory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/net45/Microsoft.IdentityModel.Clients.ActiveDirectory.xml -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/netcore45/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/netcore45/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.XML -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/netcore45/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/netcore45/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/netcore45/Microsoft.IdentityModel.Clients.ActiveDirectory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/netcore45/Microsoft.IdentityModel.Clients.ActiveDirectory.dll -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/netcore45/Microsoft.IdentityModel.Clients.ActiveDirectory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/netcore45/Microsoft.IdentityModel.Clients.ActiveDirectory.xml -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/netstandard1.3/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/netstandard1.3/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/netstandard1.3/Microsoft.IdentityModel.Clients.ActiveDirectory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/netstandard1.3/Microsoft.IdentityModel.Clients.ActiveDirectory.dll -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/netstandard1.3/Microsoft.IdentityModel.Clients.ActiveDirectory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/netstandard1.3/Microsoft.IdentityModel.Clients.ActiveDirectory.xml -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/portable-net45+win/Microsoft.IdentityModel.Clients.ActiveDirectory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/portable-net45+win/Microsoft.IdentityModel.Clients.ActiveDirectory.dll -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/portable-net45+win/Microsoft.IdentityModel.Clients.ActiveDirectory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.2/lib/portable-net45+win/Microsoft.IdentityModel.Clients.ActiveDirectory.xml -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.JsonWebTokens.5.4.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.JsonWebTokens.5.4.0/.signature.p7s -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.JsonWebTokens.5.4.0/Microsoft.IdentityModel.JsonWebTokens.5.4.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.JsonWebTokens.5.4.0/Microsoft.IdentityModel.JsonWebTokens.5.4.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.JsonWebTokens.5.4.0/lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.JsonWebTokens.5.4.0/lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.JsonWebTokens.5.4.0/lib/net45/Microsoft.IdentityModel.JsonWebTokens.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.JsonWebTokens.5.4.0/lib/net45/Microsoft.IdentityModel.JsonWebTokens.pdb -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.JsonWebTokens.5.4.0/lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.JsonWebTokens.5.4.0/lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.JsonWebTokens.5.4.0/lib/net451/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.JsonWebTokens.5.4.0/lib/net451/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.JsonWebTokens.5.4.0/lib/net451/Microsoft.IdentityModel.JsonWebTokens.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.JsonWebTokens.5.4.0/lib/net451/Microsoft.IdentityModel.JsonWebTokens.pdb -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.JsonWebTokens.5.4.0/lib/net451/Microsoft.IdentityModel.JsonWebTokens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.JsonWebTokens.5.4.0/lib/net451/Microsoft.IdentityModel.JsonWebTokens.xml -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.JsonWebTokens.5.4.0/lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.JsonWebTokens.5.4.0/lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.JsonWebTokens.5.4.0/lib/net461/Microsoft.IdentityModel.JsonWebTokens.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.JsonWebTokens.5.4.0/lib/net461/Microsoft.IdentityModel.JsonWebTokens.pdb -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.JsonWebTokens.5.4.0/lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.JsonWebTokens.5.4.0/lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.JsonWebTokens.5.4.0/lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.JsonWebTokens.5.4.0/lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.JsonWebTokens.5.4.0/lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.JsonWebTokens.5.4.0/lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.pdb -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.JsonWebTokens.5.4.0/lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.JsonWebTokens.5.4.0/lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.xml -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.JsonWebTokens.5.4.0/lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.JsonWebTokens.5.4.0/lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.JsonWebTokens.5.4.0/lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.JsonWebTokens.5.4.0/lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.pdb -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.JsonWebTokens.5.4.0/lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.JsonWebTokens.5.4.0/lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Logging.5.4.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Logging.5.4.0/.signature.p7s -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Logging.5.4.0/Microsoft.IdentityModel.Logging.5.4.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Logging.5.4.0/Microsoft.IdentityModel.Logging.5.4.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Logging.5.4.0/lib/net45/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Logging.5.4.0/lib/net45/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Logging.5.4.0/lib/net45/Microsoft.IdentityModel.Logging.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Logging.5.4.0/lib/net45/Microsoft.IdentityModel.Logging.pdb -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Logging.5.4.0/lib/net45/Microsoft.IdentityModel.Logging.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Logging.5.4.0/lib/net45/Microsoft.IdentityModel.Logging.xml -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Logging.5.4.0/lib/net451/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Logging.5.4.0/lib/net451/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Logging.5.4.0/lib/net451/Microsoft.IdentityModel.Logging.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Logging.5.4.0/lib/net451/Microsoft.IdentityModel.Logging.pdb -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Logging.5.4.0/lib/net451/Microsoft.IdentityModel.Logging.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Logging.5.4.0/lib/net451/Microsoft.IdentityModel.Logging.xml -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Logging.5.4.0/lib/net461/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Logging.5.4.0/lib/net461/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Logging.5.4.0/lib/net461/Microsoft.IdentityModel.Logging.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Logging.5.4.0/lib/net461/Microsoft.IdentityModel.Logging.pdb -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Logging.5.4.0/lib/net461/Microsoft.IdentityModel.Logging.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Logging.5.4.0/lib/net461/Microsoft.IdentityModel.Logging.xml -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Logging.5.4.0/lib/netstandard1.4/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Logging.5.4.0/lib/netstandard1.4/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Logging.5.4.0/lib/netstandard1.4/Microsoft.IdentityModel.Logging.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Logging.5.4.0/lib/netstandard1.4/Microsoft.IdentityModel.Logging.pdb -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Logging.5.4.0/lib/netstandard1.4/Microsoft.IdentityModel.Logging.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Logging.5.4.0/lib/netstandard1.4/Microsoft.IdentityModel.Logging.xml -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Logging.5.4.0/lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Logging.5.4.0/lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Logging.5.4.0/lib/netstandard2.0/Microsoft.IdentityModel.Logging.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Logging.5.4.0/lib/netstandard2.0/Microsoft.IdentityModel.Logging.pdb -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Logging.5.4.0/lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Logging.5.4.0/lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Tokens.5.4.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Tokens.5.4.0/.signature.p7s -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Tokens.5.4.0/Microsoft.IdentityModel.Tokens.5.4.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Tokens.5.4.0/Microsoft.IdentityModel.Tokens.5.4.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Tokens.5.4.0/lib/net45/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Tokens.5.4.0/lib/net45/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Tokens.5.4.0/lib/net45/Microsoft.IdentityModel.Tokens.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Tokens.5.4.0/lib/net45/Microsoft.IdentityModel.Tokens.pdb -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Tokens.5.4.0/lib/net45/Microsoft.IdentityModel.Tokens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Tokens.5.4.0/lib/net45/Microsoft.IdentityModel.Tokens.xml -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Tokens.5.4.0/lib/net451/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Tokens.5.4.0/lib/net451/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Tokens.5.4.0/lib/net451/Microsoft.IdentityModel.Tokens.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Tokens.5.4.0/lib/net451/Microsoft.IdentityModel.Tokens.pdb -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Tokens.5.4.0/lib/net451/Microsoft.IdentityModel.Tokens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Tokens.5.4.0/lib/net451/Microsoft.IdentityModel.Tokens.xml -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Tokens.5.4.0/lib/net461/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Tokens.5.4.0/lib/net461/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Tokens.5.4.0/lib/net461/Microsoft.IdentityModel.Tokens.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Tokens.5.4.0/lib/net461/Microsoft.IdentityModel.Tokens.pdb -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Tokens.5.4.0/lib/net461/Microsoft.IdentityModel.Tokens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Tokens.5.4.0/lib/net461/Microsoft.IdentityModel.Tokens.xml -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Tokens.5.4.0/lib/netstandard1.4/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Tokens.5.4.0/lib/netstandard1.4/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Tokens.5.4.0/lib/netstandard1.4/Microsoft.IdentityModel.Tokens.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Tokens.5.4.0/lib/netstandard1.4/Microsoft.IdentityModel.Tokens.pdb -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Tokens.5.4.0/lib/netstandard1.4/Microsoft.IdentityModel.Tokens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Tokens.5.4.0/lib/netstandard1.4/Microsoft.IdentityModel.Tokens.xml -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Tokens.5.4.0/lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Tokens.5.4.0/lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Tokens.5.4.0/lib/netstandard2.0/Microsoft.IdentityModel.Tokens.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Tokens.5.4.0/lib/netstandard2.0/Microsoft.IdentityModel.Tokens.pdb -------------------------------------------------------------------------------- /packages/Microsoft.IdentityModel.Tokens.5.4.0/lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Microsoft.IdentityModel.Tokens.5.4.0/lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Newtonsoft.Json.10.0.3/.signature.p7s -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Newtonsoft.Json.10.0.3/LICENSE.md -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/Newtonsoft.Json.10.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Newtonsoft.Json.10.0.3/Newtonsoft.Json.10.0.3.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Newtonsoft.Json.10.0.3/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Newtonsoft.Json.10.0.3/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Newtonsoft.Json.10.0.3/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Newtonsoft.Json.10.0.3/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Newtonsoft.Json.10.0.3/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Newtonsoft.Json.10.0.3/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Newtonsoft.Json.10.0.3/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Newtonsoft.Json.10.0.3/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/lib/netstandard1.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Newtonsoft.Json.10.0.3/lib/netstandard1.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/lib/netstandard1.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Newtonsoft.Json.10.0.3/lib/netstandard1.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/lib/netstandard1.3/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Newtonsoft.Json.10.0.3/lib/netstandard1.3/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/lib/netstandard1.3/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Newtonsoft.Json.10.0.3/lib/netstandard1.3/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Newtonsoft.Json.10.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Newtonsoft.Json.10.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Newtonsoft.Json.10.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Newtonsoft.Json.10.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/Newtonsoft.Json.10.0.3/tools/install.ps1 -------------------------------------------------------------------------------- /packages/System.Diagnostics.DiagnosticSource.4.5.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Diagnostics.DiagnosticSource.4.5.1/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Diagnostics.DiagnosticSource.4.5.1/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Diagnostics.DiagnosticSource.4.5.1/LICENSE.TXT -------------------------------------------------------------------------------- /packages/System.Diagnostics.DiagnosticSource.4.5.1/System.Diagnostics.DiagnosticSource.4.5.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Diagnostics.DiagnosticSource.4.5.1/System.Diagnostics.DiagnosticSource.4.5.1.nupkg -------------------------------------------------------------------------------- /packages/System.Diagnostics.DiagnosticSource.4.5.1/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Diagnostics.DiagnosticSource.4.5.1/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /packages/System.Diagnostics.DiagnosticSource.4.5.1/lib/net45/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Diagnostics.DiagnosticSource.4.5.1/lib/net45/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /packages/System.Diagnostics.DiagnosticSource.4.5.1/lib/net45/System.Diagnostics.DiagnosticSource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Diagnostics.DiagnosticSource.4.5.1/lib/net45/System.Diagnostics.DiagnosticSource.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.DiagnosticSource.4.5.1/lib/net46/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Diagnostics.DiagnosticSource.4.5.1/lib/net46/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /packages/System.Diagnostics.DiagnosticSource.4.5.1/lib/net46/System.Diagnostics.DiagnosticSource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Diagnostics.DiagnosticSource.4.5.1/lib/net46/System.Diagnostics.DiagnosticSource.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.DiagnosticSource.4.5.1/lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Diagnostics.DiagnosticSource.4.5.1/lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /packages/System.Diagnostics.DiagnosticSource.4.5.1/lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Diagnostics.DiagnosticSource.4.5.1/lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.DiagnosticSource.4.5.1/lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Diagnostics.DiagnosticSource.4.5.1/lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /packages/System.Diagnostics.DiagnosticSource.4.5.1/lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Diagnostics.DiagnosticSource.4.5.1/lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.DiagnosticSource.4.5.1/lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Diagnostics.DiagnosticSource.4.5.1/lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /packages/System.Diagnostics.DiagnosticSource.4.5.1/lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Diagnostics.DiagnosticSource.4.5.1/lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.DiagnosticSource.4.5.1/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.DiagnosticSource.4.5.1/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Diagnostics.DiagnosticSource.4.5.1/version.txt -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/System.IO.4.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/System.IO.4.1.0.nupkg -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/dotnet_library_license.txt -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/lib/net462/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/lib/net462/System.IO.dll -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/lib/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/net462/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/net462/System.IO.dll -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netcore50/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netcore50/System.IO.dll -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netcore50/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netcore50/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netcore50/de/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netcore50/de/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netcore50/es/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netcore50/es/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netcore50/fr/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netcore50/fr/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netcore50/it/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netcore50/it/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netcore50/ja/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netcore50/ja/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netcore50/ko/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netcore50/ko/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netcore50/ru/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netcore50/ru/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netcore50/zh-hans/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netcore50/zh-hans/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netcore50/zh-hant/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netcore50/zh-hant/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netstandard1.0/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netstandard1.0/System.IO.dll -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netstandard1.0/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netstandard1.0/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netstandard1.0/de/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netstandard1.0/de/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netstandard1.0/es/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netstandard1.0/es/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netstandard1.0/fr/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netstandard1.0/fr/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netstandard1.0/it/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netstandard1.0/it/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netstandard1.0/ja/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netstandard1.0/ja/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netstandard1.0/ko/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netstandard1.0/ko/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netstandard1.0/ru/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netstandard1.0/ru/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netstandard1.0/zh-hans/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netstandard1.0/zh-hans/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netstandard1.0/zh-hant/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netstandard1.0/zh-hant/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netstandard1.3/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netstandard1.3/System.IO.dll -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netstandard1.3/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netstandard1.3/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netstandard1.3/de/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netstandard1.3/de/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netstandard1.3/es/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netstandard1.3/es/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netstandard1.3/fr/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netstandard1.3/fr/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netstandard1.3/it/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netstandard1.3/it/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netstandard1.3/ja/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netstandard1.3/ja/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netstandard1.3/ko/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netstandard1.3/ko/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netstandard1.3/ru/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netstandard1.3/ru/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netstandard1.3/zh-hans/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netstandard1.3/zh-hans/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netstandard1.3/zh-hant/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netstandard1.3/zh-hant/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netstandard1.5/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netstandard1.5/System.IO.dll -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netstandard1.5/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netstandard1.5/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netstandard1.5/de/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netstandard1.5/de/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netstandard1.5/es/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netstandard1.5/es/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netstandard1.5/fr/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netstandard1.5/fr/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netstandard1.5/it/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netstandard1.5/it/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netstandard1.5/ja/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netstandard1.5/ja/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netstandard1.5/ko/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netstandard1.5/ko/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netstandard1.5/ru/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netstandard1.5/ru/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netstandard1.5/zh-hans/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netstandard1.5/zh-hans/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/netstandard1.5/zh-hant/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IO.4.1.0/ref/netstandard1.5/zh-hant/System.IO.xml -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IO.4.1.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.IdentityModel.Tokens.Jwt.5.4.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IdentityModel.Tokens.Jwt.5.4.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.IdentityModel.Tokens.Jwt.5.4.0/System.IdentityModel.Tokens.Jwt.5.4.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IdentityModel.Tokens.Jwt.5.4.0/System.IdentityModel.Tokens.Jwt.5.4.0.nupkg -------------------------------------------------------------------------------- /packages/System.IdentityModel.Tokens.Jwt.5.4.0/lib/net45/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IdentityModel.Tokens.Jwt.5.4.0/lib/net45/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /packages/System.IdentityModel.Tokens.Jwt.5.4.0/lib/net45/System.IdentityModel.Tokens.Jwt.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IdentityModel.Tokens.Jwt.5.4.0/lib/net45/System.IdentityModel.Tokens.Jwt.pdb -------------------------------------------------------------------------------- /packages/System.IdentityModel.Tokens.Jwt.5.4.0/lib/net45/System.IdentityModel.Tokens.Jwt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IdentityModel.Tokens.Jwt.5.4.0/lib/net45/System.IdentityModel.Tokens.Jwt.xml -------------------------------------------------------------------------------- /packages/System.IdentityModel.Tokens.Jwt.5.4.0/lib/net451/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IdentityModel.Tokens.Jwt.5.4.0/lib/net451/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /packages/System.IdentityModel.Tokens.Jwt.5.4.0/lib/net451/System.IdentityModel.Tokens.Jwt.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IdentityModel.Tokens.Jwt.5.4.0/lib/net451/System.IdentityModel.Tokens.Jwt.pdb -------------------------------------------------------------------------------- /packages/System.IdentityModel.Tokens.Jwt.5.4.0/lib/net451/System.IdentityModel.Tokens.Jwt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IdentityModel.Tokens.Jwt.5.4.0/lib/net451/System.IdentityModel.Tokens.Jwt.xml -------------------------------------------------------------------------------- /packages/System.IdentityModel.Tokens.Jwt.5.4.0/lib/net461/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IdentityModel.Tokens.Jwt.5.4.0/lib/net461/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /packages/System.IdentityModel.Tokens.Jwt.5.4.0/lib/net461/System.IdentityModel.Tokens.Jwt.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IdentityModel.Tokens.Jwt.5.4.0/lib/net461/System.IdentityModel.Tokens.Jwt.pdb -------------------------------------------------------------------------------- /packages/System.IdentityModel.Tokens.Jwt.5.4.0/lib/net461/System.IdentityModel.Tokens.Jwt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IdentityModel.Tokens.Jwt.5.4.0/lib/net461/System.IdentityModel.Tokens.Jwt.xml -------------------------------------------------------------------------------- /packages/System.IdentityModel.Tokens.Jwt.5.4.0/lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IdentityModel.Tokens.Jwt.5.4.0/lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /packages/System.IdentityModel.Tokens.Jwt.5.4.0/lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IdentityModel.Tokens.Jwt.5.4.0/lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.pdb -------------------------------------------------------------------------------- /packages/System.IdentityModel.Tokens.Jwt.5.4.0/lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IdentityModel.Tokens.Jwt.5.4.0/lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.xml -------------------------------------------------------------------------------- /packages/System.IdentityModel.Tokens.Jwt.5.4.0/lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IdentityModel.Tokens.Jwt.5.4.0/lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /packages/System.IdentityModel.Tokens.Jwt.5.4.0/lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IdentityModel.Tokens.Jwt.5.4.0/lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.pdb -------------------------------------------------------------------------------- /packages/System.IdentityModel.Tokens.Jwt.5.4.0/lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.IdentityModel.Tokens.Jwt.5.4.0/lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.4.0.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.4.0.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.4.0.0/System.Net.WebSockets.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.4.0.0/System.Net.WebSockets.4.0.0.nupkg -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.4.0.0/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.4.0.0/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.4.0.0/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.4.0.0/dotnet_library_license.txt -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.4.0.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.4.0.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.4.0.0/lib/net46/System.Net.WebSockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.4.0.0/lib/net46/System.Net.WebSockets.dll -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.4.0.0/lib/netstandard1.3/System.Net.WebSockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.4.0.0/lib/netstandard1.3/System.Net.WebSockets.dll -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.4.0.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.4.0.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.4.0.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.4.0.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.4.0.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.4.0.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.4.0.0/ref/net46/System.Net.WebSockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.4.0.0/ref/net46/System.Net.WebSockets.dll -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.4.0.0/ref/netstandard1.3/System.Net.WebSockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.4.0.0/ref/netstandard1.3/System.Net.WebSockets.dll -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.4.0.0/ref/netstandard1.3/System.Net.WebSockets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.4.0.0/ref/netstandard1.3/System.Net.WebSockets.xml -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.4.0.0/ref/netstandard1.3/de/System.Net.WebSockets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.4.0.0/ref/netstandard1.3/de/System.Net.WebSockets.xml -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.4.0.0/ref/netstandard1.3/es/System.Net.WebSockets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.4.0.0/ref/netstandard1.3/es/System.Net.WebSockets.xml -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.4.0.0/ref/netstandard1.3/fr/System.Net.WebSockets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.4.0.0/ref/netstandard1.3/fr/System.Net.WebSockets.xml -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.4.0.0/ref/netstandard1.3/it/System.Net.WebSockets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.4.0.0/ref/netstandard1.3/it/System.Net.WebSockets.xml -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.4.0.0/ref/netstandard1.3/ja/System.Net.WebSockets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.4.0.0/ref/netstandard1.3/ja/System.Net.WebSockets.xml -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.4.0.0/ref/netstandard1.3/ko/System.Net.WebSockets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.4.0.0/ref/netstandard1.3/ko/System.Net.WebSockets.xml -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.4.0.0/ref/netstandard1.3/ru/System.Net.WebSockets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.4.0.0/ref/netstandard1.3/ru/System.Net.WebSockets.xml -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.4.0.0/ref/netstandard1.3/zh-hans/System.Net.WebSockets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.4.0.0/ref/netstandard1.3/zh-hans/System.Net.WebSockets.xml -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.4.0.0/ref/netstandard1.3/zh-hant/System.Net.WebSockets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.4.0.0/ref/netstandard1.3/zh-hant/System.Net.WebSockets.xml -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.4.0.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.4.0.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.4.0.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.4.0.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.Client.4.0.2/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.Client.4.0.2/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.Client.4.0.2/System.Net.WebSockets.Client.4.0.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.Client.4.0.2/System.Net.WebSockets.Client.4.0.2.nupkg -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.Client.4.0.2/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.Client.4.0.2/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.Client.4.0.2/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.Client.4.0.2/dotnet_library_license.txt -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.Client.4.0.2/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.Client.4.0.2/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.Client.4.0.2/lib/net46/System.Net.WebSockets.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.Client.4.0.2/lib/net46/System.Net.WebSockets.Client.dll -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.Client.4.0.2/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.Client.4.0.2/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.Client.4.0.2/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.Client.4.0.2/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.Client.4.0.2/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.Client.4.0.2/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.Client.4.0.2/ref/net46/System.Net.WebSockets.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.Client.4.0.2/ref/net46/System.Net.WebSockets.Client.dll -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.Client.4.0.2/ref/netstandard1.3/System.Net.WebSockets.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.Client.4.0.2/ref/netstandard1.3/System.Net.WebSockets.Client.dll -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.Client.4.0.2/ref/netstandard1.3/System.Net.WebSockets.Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.Client.4.0.2/ref/netstandard1.3/System.Net.WebSockets.Client.xml -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.Client.4.0.2/ref/netstandard1.3/de/System.Net.WebSockets.Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.Client.4.0.2/ref/netstandard1.3/de/System.Net.WebSockets.Client.xml -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.Client.4.0.2/ref/netstandard1.3/es/System.Net.WebSockets.Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.Client.4.0.2/ref/netstandard1.3/es/System.Net.WebSockets.Client.xml -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.Client.4.0.2/ref/netstandard1.3/fr/System.Net.WebSockets.Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.Client.4.0.2/ref/netstandard1.3/fr/System.Net.WebSockets.Client.xml -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.Client.4.0.2/ref/netstandard1.3/it/System.Net.WebSockets.Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.Client.4.0.2/ref/netstandard1.3/it/System.Net.WebSockets.Client.xml -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.Client.4.0.2/ref/netstandard1.3/ja/System.Net.WebSockets.Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.Client.4.0.2/ref/netstandard1.3/ja/System.Net.WebSockets.Client.xml -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.Client.4.0.2/ref/netstandard1.3/ko/System.Net.WebSockets.Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.Client.4.0.2/ref/netstandard1.3/ko/System.Net.WebSockets.Client.xml -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.Client.4.0.2/ref/netstandard1.3/ru/System.Net.WebSockets.Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.Client.4.0.2/ref/netstandard1.3/ru/System.Net.WebSockets.Client.xml -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.Client.4.0.2/ref/netstandard1.3/zh-hans/System.Net.WebSockets.Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.Client.4.0.2/ref/netstandard1.3/zh-hans/System.Net.WebSockets.Client.xml -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.Client.4.0.2/ref/netstandard1.3/zh-hant/System.Net.WebSockets.Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.Client.4.0.2/ref/netstandard1.3/zh-hant/System.Net.WebSockets.Client.xml -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.Client.4.0.2/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.Client.4.0.2/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.Client.4.0.2/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.Client.4.0.2/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.Client.4.0.2/runtimes/unix/lib/netstandard1.3/System.Net.WebSockets.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.Client.4.0.2/runtimes/unix/lib/netstandard1.3/System.Net.WebSockets.Client.dll -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.Client.4.0.2/runtimes/win/lib/net46/System.Net.WebSockets.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.Client.4.0.2/runtimes/win/lib/net46/System.Net.WebSockets.Client.dll -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.Client.4.0.2/runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.Client.4.0.2/runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll -------------------------------------------------------------------------------- /packages/System.Net.WebSockets.Client.4.0.2/runtimes/win/lib/netstandard1.3/System.Net.WebSockets.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Net.WebSockets.Client.4.0.2/runtimes/win/lib/netstandard1.3/System.Net.WebSockets.Client.dll -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/System.Runtime.4.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/System.Runtime.4.1.0.nupkg -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/dotnet_library_license.txt -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/lib/net462/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/lib/net462/System.Runtime.dll -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/lib/portable-net45+win8+wp80+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/net462/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/net462/System.Runtime.dll -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netcore50/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netcore50/System.Runtime.dll -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netcore50/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netcore50/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netcore50/de/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netcore50/de/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netcore50/es/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netcore50/es/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netcore50/fr/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netcore50/fr/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netcore50/it/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netcore50/it/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netcore50/ja/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netcore50/ja/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netcore50/ko/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netcore50/ko/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netcore50/ru/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netcore50/ru/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netcore50/zh-hans/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netcore50/zh-hans/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netcore50/zh-hant/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netcore50/zh-hant/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.0/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.0/System.Runtime.dll -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.0/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.0/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.0/de/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.0/de/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.0/es/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.0/es/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.0/fr/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.0/fr/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.0/it/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.0/it/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.0/ja/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.0/ja/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.0/ko/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.0/ko/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.0/ru/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.0/ru/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.0/zh-hans/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.0/zh-hans/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.0/zh-hant/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.0/zh-hant/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.2/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.2/System.Runtime.dll -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.2/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.2/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.2/de/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.2/de/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.2/es/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.2/es/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.2/fr/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.2/fr/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.2/it/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.2/it/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.2/ja/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.2/ja/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.2/ko/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.2/ko/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.2/ru/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.2/ru/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.2/zh-hans/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.2/zh-hans/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.2/zh-hant/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.2/zh-hant/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.3/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.3/System.Runtime.dll -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.3/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.3/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.3/de/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.3/de/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.3/es/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.3/es/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.3/fr/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.3/fr/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.3/it/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.3/it/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.3/ja/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.3/ja/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.3/ko/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.3/ko/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.3/ru/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.3/ru/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.3/zh-hans/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.3/zh-hans/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.3/zh-hant/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.3/zh-hant/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.5/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.5/System.Runtime.dll -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.5/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.5/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.5/de/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.5/de/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.5/es/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.5/es/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.5/fr/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.5/fr/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.5/it/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.5/it/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.5/ja/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.5/ja/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.5/ko/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.5/ko/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.5/ru/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.5/ru/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.5/zh-hans/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.5/zh-hans/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/netstandard1.5/zh-hant/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.4.1.0/ref/netstandard1.5/zh-hant/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/portable-net45+win8+wp80+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.1.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/System.Runtime.Serialization.Primitives.4.1.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/System.Runtime.Serialization.Primitives.4.1.1.nupkg -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/dotnet_library_license.txt -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/lib/net46/System.Runtime.Serialization.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/lib/net46/System.Runtime.Serialization.Primitives.dll -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/lib/netcore50/System.Runtime.Serialization.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/lib/netcore50/System.Runtime.Serialization.Primitives.dll -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/lib/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/net46/System.Runtime.Serialization.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/ref/net46/System.Runtime.Serialization.Primitives.dll -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netcore50/System.Runtime.Serialization.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netcore50/System.Runtime.Serialization.Primitives.dll -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netcore50/System.Runtime.Serialization.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netcore50/System.Runtime.Serialization.Primitives.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netcore50/de/System.Runtime.Serialization.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netcore50/de/System.Runtime.Serialization.Primitives.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netcore50/es/System.Runtime.Serialization.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netcore50/es/System.Runtime.Serialization.Primitives.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netcore50/it/System.Runtime.Serialization.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netcore50/it/System.Runtime.Serialization.Primitives.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Serialization.Primitives.4.1.1/runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Runtime.Serialization.Primitives.4.1.1/runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Algorithms.4.2.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/System.Security.Cryptography.Algorithms.4.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Algorithms.4.2.0/System.Security.Cryptography.Algorithms.4.2.0.nupkg -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Algorithms.4.2.0/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Algorithms.4.2.0/dotnet_library_license.txt -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/lib/net46/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Algorithms.4.2.0/lib/net46/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/lib/net461/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Algorithms.4.2.0/lib/net461/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/lib/net463/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Algorithms.4.2.0/lib/net463/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/ref/net46/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Algorithms.4.2.0/ref/net46/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/ref/net461/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Algorithms.4.2.0/ref/net461/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/ref/net463/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Algorithms.4.2.0/ref/net463/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Algorithms.4.2.0/ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Algorithms.4.2.0/ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Algorithms.4.2.0/ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Algorithms.4.2.0/runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Algorithms.4.2.0/runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Algorithms.4.2.0/runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Algorithms.4.2.0/runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Algorithms.4.2.0/runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Algorithms.4.2.0/runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Encoding.4.0.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/System.Security.Cryptography.Encoding.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Encoding.4.0.0/System.Security.Cryptography.Encoding.4.0.0.nupkg -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Encoding.4.0.0/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Encoding.4.0.0/dotnet_library_license.txt -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/lib/net46/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Encoding.4.0.0/lib/net46/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/ref/net46/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Encoding.4.0.0/ref/net46/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/ref/netstandard1.3/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Encoding.4.0.0/ref/netstandard1.3/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/ref/netstandard1.3/System.Security.Cryptography.Encoding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Encoding.4.0.0/ref/netstandard1.3/System.Security.Cryptography.Encoding.xml -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Encoding.4.0.0/ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Encoding.4.0.0/ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Encoding.4.0.0/ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Encoding.4.0.0/ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Encoding.4.0.0/ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Encoding.4.0.0/ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Encoding.4.0.0/ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Encoding.4.0.0/ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Encoding.4.0.0/ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Encoding.4.0.0/runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Encoding.4.0.0/runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Encoding.4.0.0/runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.0.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Primitives.4.0.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.0.0/System.Security.Cryptography.Primitives.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Primitives.4.0.0/System.Security.Cryptography.Primitives.4.0.0.nupkg -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.0.0/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Primitives.4.0.0/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.0.0/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Primitives.4.0.0/dotnet_library_license.txt -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.0.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.0.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.0.0/lib/net46/System.Security.Cryptography.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Primitives.4.0.0/lib/net46/System.Security.Cryptography.Primitives.dll -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.0.0/lib/netstandard1.3/System.Security.Cryptography.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Primitives.4.0.0/lib/netstandard1.3/System.Security.Cryptography.Primitives.dll -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.0.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.0.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.0.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.0.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.0.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.0.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.0.0/ref/net46/System.Security.Cryptography.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Primitives.4.0.0/ref/net46/System.Security.Cryptography.Primitives.dll -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.0.0/ref/netstandard1.3/System.Security.Cryptography.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.Primitives.4.0.0/ref/netstandard1.3/System.Security.Cryptography.Primitives.dll -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.0.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.0.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.0.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.0.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/System.Security.Cryptography.X509Certificates.4.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/System.Security.Cryptography.X509Certificates.4.1.0.nupkg -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/dotnet_library_license.txt -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/lib/net46/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/lib/net46/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/lib/net461/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/lib/net461/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/net46/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/net46/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/net461/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/net461/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/RequestResponseMessaging/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll --------------------------------------------------------------------------------