├── .gitattributes ├── .gitignore ├── Drivers ├── BouncyCastle.Crypto.dll ├── ESPSchemeHandler.dll ├── ES_Encrypt.dll ├── MAuth.dll ├── MediaLibrary.dll ├── Microsoft.WindowsAPICodePack.Shell.dll ├── Microsoft.WindowsAPICodePack.dll ├── Networking.Native.dll ├── Networking.dll ├── Newtonsoft.Json.dll ├── SPCApi.dll ├── SmartView2.Core.dll ├── SmartView2.Devices.dll ├── SocketIOClient.dll ├── UIFoundation.dll ├── UPnP.dll ├── WebSocket4Net.dll ├── libavcodec.dll ├── libavformat.dll ├── libavutil.dll ├── log4net.dll ├── multiscreen-windows-api-csharp.dll └── taglib-sharp.dll ├── README.md ├── SmartTVRemoteControl.sln ├── SmartTVRemoteControl ├── .vs │ └── SmartTVRemoteControl │ │ └── v14 │ │ └── .suo ├── App.config ├── Common │ ├── Enums │ │ └── SettingsType.cs │ ├── IBaseController.cs │ └── IDispatcher.cs ├── DeviceController.cs ├── DeviceFactory.cs ├── DeviceSettingProvider.cs ├── Drivers │ ├── BouncyCastle.Crypto.dll │ ├── ESPSchemeHandler.dll │ ├── ES_Encrypt.dll │ ├── MAuth.dll │ ├── MediaLibrary.dll │ ├── Microsoft.WindowsAPICodePack.Shell.dll │ ├── Microsoft.WindowsAPICodePack.dll │ ├── Networking.Native.dll │ ├── Networking.dll │ ├── Newtonsoft.Json.dll │ ├── SPCApi.dll │ ├── SmartView2.Core.dll │ ├── SmartView2.Devices.dll │ ├── SocketIOClient.dll │ ├── UIFoundation.dll │ ├── UPnP.dll │ ├── WebSocket4Net.dll │ ├── libavcodec.dll │ ├── libavformat.dll │ ├── libavutil.dll │ ├── log4net.dll │ ├── multiscreen-windows-api-csharp.dll │ └── taglib-sharp.dll ├── Log4NetLogger.cs ├── MediaLibrary │ └── DataLibrary.cs ├── Models │ ├── BaseModel.cs │ └── Settings │ │ └── SettingsModel.cs ├── Native │ ├── EDataFlow.cs │ ├── ERole.cs │ ├── HTTP │ │ ├── Headers.cs │ │ ├── HttpCode.cs │ │ ├── HttpPhrases.cs │ │ ├── HttpRequest.cs │ │ ├── HttpResponse.cs │ │ ├── HttpServer.cs │ │ └── IHttpHandler.cs │ ├── IAudioSessionControl2.cs │ ├── IAudioSessionEnumerator.cs │ ├── IAudioSessionManager2.cs │ ├── IMMDevice.cs │ ├── IMMDeviceEnumerator.cs │ ├── ISimpleAudioVolume.cs │ ├── MMDeviceEnumerator.cs │ ├── MediaLibrary │ │ └── DataLibrary.cs │ ├── MultiScreen │ │ ├── ChannelListner.cs │ │ ├── DeviceResult_T_.cs │ │ ├── MediaContent.cs │ │ ├── MediaPanel.cs │ │ ├── MediaQueueItem.cs │ │ ├── MediaQueuePlayer.cs │ │ ├── MediaTimeInfo.cs │ │ ├── MediaUser.cs │ │ ├── MultiScreenController.cs │ │ ├── MultiScreenResult_T_.cs │ │ ├── QueueConfig.cs │ │ └── StateObject.cs │ ├── Player │ │ └── PlayerNotificationProvider.cs │ ├── SpcApiWrapper.cs │ ├── Wlan │ │ ├── WlanApiWrapper.cs │ │ ├── WlanConnectionInfo.cs │ │ ├── WlanConnectionMode.cs │ │ ├── WlanInterfaceInfo.cs │ │ └── WlanInterfaceState.cs │ └── dlna │ │ ├── DLNAFlags.cs │ │ ├── DLNAMaps.cs │ │ ├── DLNAMime.cs │ │ ├── DlnaServer.cs │ │ ├── Handler │ │ ├── ContentDirectoryHandler.cs │ │ ├── ControlHandler.cs │ │ ├── DescriptionHandler.cs │ │ └── FileHandler.cs │ │ ├── SSDP │ │ ├── Datagram.cs │ │ └── SsdpServer.cs │ │ ├── UPnP │ │ └── UPnPDevice.cs │ │ └── resources │ │ └── error.xml ├── Options.cs ├── Pin.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── SmartTVRemoteControl.csproj ├── SmartTVRemoteControl.csproj.user ├── SmartTVRemoteControl.sln ├── SmartTVRemoteControl_TemporaryKey.pfx ├── ThreadSafeCollection_T_.cs ├── TvDiscovery.cs ├── bin │ ├── Debug │ │ ├── BouncyCastle.Crypto.dll │ │ ├── MediaLibrary.dll │ │ ├── Microsoft.WindowsAPICodePack.Shell.dll │ │ ├── Microsoft.WindowsAPICodePack.dll │ │ ├── Networking.Native.dll │ │ ├── Networking.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── SPCApi.dll │ │ ├── SmartTVRemoteControl.exe │ │ ├── SmartTVRemoteControl.exe.config │ │ ├── SmartTVRemoteControl.pdb │ │ ├── SmartTVRemoteControl.vshost.exe │ │ ├── SmartTVRemoteControl.vshost.exe.config │ │ ├── SmartTVRemoteControl.vshost.exe.manifest │ │ ├── SmartView2.Core.dll │ │ ├── SmartView2.Devices.dll │ │ ├── SocketIOClient.dll │ │ ├── System.Runtime.dll │ │ ├── UIFoundation.dll │ │ ├── UPnP.dll │ │ ├── WebSocket4Net.dll │ │ ├── log4net.dll │ │ ├── multiscreen-windows-api-csharp.dll │ │ └── taglib-sharp.dll │ └── x86 │ │ ├── Debug.zip │ │ ├── Debug │ │ ├── SmartTVRemoteControl.vshost.exe │ │ ├── SmartTVRemoteControl.vshost.exe.config │ │ └── System.Runtime.dll │ │ └── Release │ │ ├── BouncyCastle.Crypto.dll │ │ ├── CommandLine.dll │ │ ├── CommandLine.xml │ │ ├── MediaLibrary.dll │ │ ├── Microsoft.WindowsAPICodePack.Shell.dll │ │ ├── Microsoft.WindowsAPICodePack.dll │ │ ├── Networking.Native.dll │ │ ├── Networking.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── Nito.AsyncEx.Concurrent.dll │ │ ├── Nito.AsyncEx.Concurrent.xml │ │ ├── Nito.AsyncEx.Enlightenment.dll │ │ ├── Nito.AsyncEx.Enlightenment.xml │ │ ├── Nito.AsyncEx.dll │ │ ├── Nito.AsyncEx.xml │ │ ├── SPCApi.dll │ │ ├── SamsungRemoteControl.zip │ │ ├── SmartTVRemoteControl.application │ │ ├── SmartTVRemoteControl.exe │ │ ├── SmartTVRemoteControl.exe.config │ │ ├── SmartTVRemoteControl.exe.manifest │ │ ├── SmartTVRemoteControl.pdb │ │ ├── SmartTVRemoteControl.vshost.application │ │ ├── SmartTVRemoteControl.vshost.exe │ │ ├── SmartTVRemoteControl.vshost.exe.config │ │ ├── SmartTVRemoteControl.vshost.exe.manifest │ │ ├── SmartView2.Core.dll │ │ ├── SmartView2.Devices.dll │ │ ├── SocketIOClient.dll │ │ ├── UIFoundation.dll │ │ ├── UPnP.dll │ │ ├── WebSocket4Net.dll │ │ ├── app.publish │ │ ├── Application Files │ │ │ └── SmartTVRemoteControl_1_0_0_1 │ │ │ │ ├── BouncyCastle.Crypto.dll.deploy │ │ │ │ ├── CommandLine.dll.deploy │ │ │ │ ├── MediaLibrary.dll.deploy │ │ │ │ ├── Microsoft.WindowsAPICodePack.Shell.dll.deploy │ │ │ │ ├── Microsoft.WindowsAPICodePack.dll.deploy │ │ │ │ ├── Native │ │ │ │ └── dlna │ │ │ │ │ └── resources │ │ │ │ │ └── error.xml.deploy │ │ │ │ ├── Networking.Native.dll.deploy │ │ │ │ ├── Networking.dll.deploy │ │ │ │ ├── Newtonsoft.Json.dll.deploy │ │ │ │ ├── Nito.AsyncEx.Concurrent.dll.deploy │ │ │ │ ├── Nito.AsyncEx.Enlightenment.dll.deploy │ │ │ │ ├── Nito.AsyncEx.dll.deploy │ │ │ │ ├── SPCApi.dll.deploy │ │ │ │ ├── SmartTVRemoteControl.exe.config.deploy │ │ │ │ ├── SmartTVRemoteControl.exe.deploy │ │ │ │ ├── SmartTVRemoteControl.exe.manifest │ │ │ │ ├── SmartView2.Core.dll.deploy │ │ │ │ ├── SmartView2.Devices.dll.deploy │ │ │ │ ├── SocketIOClient.dll.deploy │ │ │ │ ├── UIFoundation.dll.deploy │ │ │ │ ├── UPnP.dll.deploy │ │ │ │ ├── WebSocket4Net.dll.deploy │ │ │ │ ├── log4net.dll.deploy │ │ │ │ ├── multiscreen-windows-api-csharp.dll.deploy │ │ │ │ └── taglib-sharp.dll.deploy │ │ ├── SmartTVRemoteControl.application │ │ ├── SmartTVRemoteControl.exe │ │ └── setup.exe │ │ ├── log4net.dll │ │ ├── multiscreen-windows-api-csharp.dll │ │ └── taglib-sharp.dll ├── obj │ ├── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── SmartTVRemoteControl.Properties.Resources.resources │ │ ├── SmartTVRemoteControl.csproj.FileListAbsolute.txt │ │ ├── SmartTVRemoteControl.csproj.GenerateResource.Cache │ │ ├── SmartTVRemoteControl.csprojResolveAssemblyReference.cache │ │ ├── SmartTVRemoteControl.exe │ │ ├── SmartTVRemoteControl.pdb │ │ ├── TempPE │ │ │ ├── Properties.Resources.Designer.cs.dll │ │ │ └── Resources.Designer.cs.dll │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── x86 │ │ ├── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── SmartTVRemoteControl.csproj.FileListAbsolute.txt │ │ ├── TempPE │ │ │ └── Properties.Resources.Designer.cs.dll │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ └── Release │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── SmartTVRemoteControl.Properties.Resources.resources │ │ ├── SmartTVRemoteControl.application │ │ ├── SmartTVRemoteControl.csproj.FileListAbsolute.txt │ │ ├── SmartTVRemoteControl.csproj.GenerateResource.Cache │ │ ├── SmartTVRemoteControl.csprojResolveAssemblyReference.cache │ │ ├── SmartTVRemoteControl.exe │ │ ├── SmartTVRemoteControl.exe.manifest │ │ ├── SmartTVRemoteControl.pdb │ │ ├── TempPE │ │ └── Properties.Resources.Designer.cs.dll │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── packages.config └── packages │ ├── CommandLineParser.1.9.71 │ ├── CommandLineParser.1.9.71.nupkg │ ├── lib │ │ ├── net35 │ │ │ ├── CommandLine.dll │ │ │ └── CommandLine.xml │ │ ├── net40 │ │ │ ├── CommandLine.dll │ │ │ └── CommandLine.xml │ │ └── net45 │ │ │ ├── CommandLine.dll │ │ │ └── CommandLine.xml │ └── readme.txt │ └── Nito.AsyncEx.3.0.1 │ ├── Nito.AsyncEx.3.0.1.nupkg │ └── lib │ ├── MonoAndroid │ ├── Nito.AsyncEx.Concurrent.dll │ ├── Nito.AsyncEx.Concurrent.xml │ ├── Nito.AsyncEx.Enlightenment.dll │ ├── Nito.AsyncEx.Enlightenment.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── Xamarin.Mac20 │ ├── Nito.AsyncEx.Concurrent.dll │ ├── Nito.AsyncEx.Concurrent.xml │ ├── Nito.AsyncEx.Enlightenment.dll │ ├── Nito.AsyncEx.Enlightenment.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── Xamarin.iOS10 │ ├── Nito.AsyncEx.Concurrent.dll │ ├── Nito.AsyncEx.Concurrent.xml │ ├── Nito.AsyncEx.Enlightenment.dll │ ├── Nito.AsyncEx.Enlightenment.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── net40 │ ├── Nito.AsyncEx.Concurrent.dll │ ├── Nito.AsyncEx.Concurrent.xml │ ├── Nito.AsyncEx.Enlightenment.dll │ ├── Nito.AsyncEx.Enlightenment.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── net45 │ ├── Nito.AsyncEx.Concurrent.dll │ ├── Nito.AsyncEx.Concurrent.xml │ ├── Nito.AsyncEx.Enlightenment.dll │ ├── Nito.AsyncEx.Enlightenment.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── netcore45 │ ├── Nito.AsyncEx.Concurrent.dll │ ├── Nito.AsyncEx.Concurrent.xml │ ├── Nito.AsyncEx.Enlightenment.dll │ ├── Nito.AsyncEx.Enlightenment.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── portable-net40+netcore45+sl4+wp71 │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── portable-net40+netcore45+sl5+wp8+wpa81 │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── portable-net40+netcore45 │ ├── Nito.AsyncEx.Concurrent.dll │ ├── Nito.AsyncEx.Concurrent.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── portable-net45+netcore45+wp8+wpa81 │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── portable-net45+netcore45+wpa81 │ ├── Nito.AsyncEx.Concurrent.dll │ ├── Nito.AsyncEx.Concurrent.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── sl4 │ ├── Nito.AsyncEx.Enlightenment.dll │ ├── Nito.AsyncEx.Enlightenment.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── sl5 │ ├── Nito.AsyncEx.Enlightenment.dll │ ├── Nito.AsyncEx.Enlightenment.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── wp71 │ ├── Nito.AsyncEx.Enlightenment.dll │ ├── Nito.AsyncEx.Enlightenment.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── wp8 │ ├── Nito.AsyncEx.Enlightenment.dll │ ├── Nito.AsyncEx.Enlightenment.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ └── wpa81 │ ├── Nito.AsyncEx.Concurrent.dll │ ├── Nito.AsyncEx.Concurrent.xml │ ├── Nito.AsyncEx.Enlightenment.dll │ ├── Nito.AsyncEx.Enlightenment.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml └── packages ├── CommandLineParser.1.9.71 ├── CommandLineParser.1.9.71.nupkg ├── lib │ ├── net35 │ │ ├── CommandLine.dll │ │ └── CommandLine.xml │ ├── net40 │ │ ├── CommandLine.dll │ │ └── CommandLine.xml │ └── net45 │ │ ├── CommandLine.dll │ │ └── CommandLine.xml └── readme.txt └── Nito.AsyncEx.3.0.1 ├── Nito.AsyncEx.3.0.1.nupkg └── lib ├── MonoAndroid ├── Nito.AsyncEx.Concurrent.dll ├── Nito.AsyncEx.Concurrent.xml ├── Nito.AsyncEx.Enlightenment.dll ├── Nito.AsyncEx.Enlightenment.xml ├── Nito.AsyncEx.dll └── Nito.AsyncEx.xml ├── Xamarin.Mac20 ├── Nito.AsyncEx.Concurrent.dll ├── Nito.AsyncEx.Concurrent.xml ├── Nito.AsyncEx.Enlightenment.dll ├── Nito.AsyncEx.Enlightenment.xml ├── Nito.AsyncEx.dll └── Nito.AsyncEx.xml ├── Xamarin.iOS10 ├── Nito.AsyncEx.Concurrent.dll ├── Nito.AsyncEx.Concurrent.xml ├── Nito.AsyncEx.Enlightenment.dll ├── Nito.AsyncEx.Enlightenment.xml ├── Nito.AsyncEx.dll └── Nito.AsyncEx.xml ├── net40 ├── Nito.AsyncEx.Concurrent.dll ├── Nito.AsyncEx.Concurrent.xml ├── Nito.AsyncEx.Enlightenment.dll ├── Nito.AsyncEx.Enlightenment.xml ├── Nito.AsyncEx.dll └── Nito.AsyncEx.xml ├── net45 ├── Nito.AsyncEx.Concurrent.dll ├── Nito.AsyncEx.Concurrent.xml ├── Nito.AsyncEx.Enlightenment.dll ├── Nito.AsyncEx.Enlightenment.xml ├── Nito.AsyncEx.dll └── Nito.AsyncEx.xml ├── netcore45 ├── Nito.AsyncEx.Concurrent.dll ├── Nito.AsyncEx.Concurrent.xml ├── Nito.AsyncEx.Enlightenment.dll ├── Nito.AsyncEx.Enlightenment.xml ├── Nito.AsyncEx.dll └── Nito.AsyncEx.xml ├── portable-net40+netcore45+sl4+wp71 ├── Nito.AsyncEx.dll └── Nito.AsyncEx.xml ├── portable-net40+netcore45+sl5+wp8+wpa81 ├── Nito.AsyncEx.dll └── Nito.AsyncEx.xml ├── portable-net40+netcore45 ├── Nito.AsyncEx.Concurrent.dll ├── Nito.AsyncEx.Concurrent.xml ├── Nito.AsyncEx.dll └── Nito.AsyncEx.xml ├── portable-net45+netcore45+wp8+wpa81 ├── Nito.AsyncEx.dll └── Nito.AsyncEx.xml ├── portable-net45+netcore45+wpa81 ├── Nito.AsyncEx.Concurrent.dll ├── Nito.AsyncEx.Concurrent.xml ├── Nito.AsyncEx.dll └── Nito.AsyncEx.xml ├── sl4 ├── Nito.AsyncEx.Enlightenment.dll ├── Nito.AsyncEx.Enlightenment.xml ├── Nito.AsyncEx.dll └── Nito.AsyncEx.xml ├── sl5 ├── Nito.AsyncEx.Enlightenment.dll ├── Nito.AsyncEx.Enlightenment.xml ├── Nito.AsyncEx.dll └── Nito.AsyncEx.xml ├── wp71 ├── Nito.AsyncEx.Enlightenment.dll ├── Nito.AsyncEx.Enlightenment.xml ├── Nito.AsyncEx.dll └── Nito.AsyncEx.xml ├── wp8 ├── Nito.AsyncEx.Enlightenment.dll ├── Nito.AsyncEx.Enlightenment.xml ├── Nito.AsyncEx.dll └── Nito.AsyncEx.xml └── wpa81 ├── Nito.AsyncEx.Concurrent.dll ├── Nito.AsyncEx.Concurrent.xml ├── Nito.AsyncEx.Enlightenment.dll ├── Nito.AsyncEx.Enlightenment.xml ├── Nito.AsyncEx.dll └── Nito.AsyncEx.xml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/.gitignore -------------------------------------------------------------------------------- /Drivers/BouncyCastle.Crypto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/Drivers/BouncyCastle.Crypto.dll -------------------------------------------------------------------------------- /Drivers/ESPSchemeHandler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/Drivers/ESPSchemeHandler.dll -------------------------------------------------------------------------------- /Drivers/ES_Encrypt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/Drivers/ES_Encrypt.dll -------------------------------------------------------------------------------- /Drivers/MAuth.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/Drivers/MAuth.dll -------------------------------------------------------------------------------- /Drivers/MediaLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/Drivers/MediaLibrary.dll -------------------------------------------------------------------------------- /Drivers/Microsoft.WindowsAPICodePack.Shell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/Drivers/Microsoft.WindowsAPICodePack.Shell.dll -------------------------------------------------------------------------------- /Drivers/Microsoft.WindowsAPICodePack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/Drivers/Microsoft.WindowsAPICodePack.dll -------------------------------------------------------------------------------- /Drivers/Networking.Native.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/Drivers/Networking.Native.dll -------------------------------------------------------------------------------- /Drivers/Networking.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/Drivers/Networking.dll -------------------------------------------------------------------------------- /Drivers/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/Drivers/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Drivers/SPCApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/Drivers/SPCApi.dll -------------------------------------------------------------------------------- /Drivers/SmartView2.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/Drivers/SmartView2.Core.dll -------------------------------------------------------------------------------- /Drivers/SmartView2.Devices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/Drivers/SmartView2.Devices.dll -------------------------------------------------------------------------------- /Drivers/SocketIOClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/Drivers/SocketIOClient.dll -------------------------------------------------------------------------------- /Drivers/UIFoundation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/Drivers/UIFoundation.dll -------------------------------------------------------------------------------- /Drivers/UPnP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/Drivers/UPnP.dll -------------------------------------------------------------------------------- /Drivers/WebSocket4Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/Drivers/WebSocket4Net.dll -------------------------------------------------------------------------------- /Drivers/libavcodec.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/Drivers/libavcodec.dll -------------------------------------------------------------------------------- /Drivers/libavformat.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/Drivers/libavformat.dll -------------------------------------------------------------------------------- /Drivers/libavutil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/Drivers/libavutil.dll -------------------------------------------------------------------------------- /Drivers/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/Drivers/log4net.dll -------------------------------------------------------------------------------- /Drivers/multiscreen-windows-api-csharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/Drivers/multiscreen-windows-api-csharp.dll -------------------------------------------------------------------------------- /Drivers/taglib-sharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/Drivers/taglib-sharp.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/README.md -------------------------------------------------------------------------------- /SmartTVRemoteControl.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl.sln -------------------------------------------------------------------------------- /SmartTVRemoteControl/.vs/SmartTVRemoteControl/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/.vs/SmartTVRemoteControl/v14/.suo -------------------------------------------------------------------------------- /SmartTVRemoteControl/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/App.config -------------------------------------------------------------------------------- /SmartTVRemoteControl/Common/Enums/SettingsType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Common/Enums/SettingsType.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Common/IBaseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Common/IBaseController.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Common/IDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Common/IDispatcher.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/DeviceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/DeviceController.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/DeviceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/DeviceFactory.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/DeviceSettingProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/DeviceSettingProvider.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Drivers/BouncyCastle.Crypto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Drivers/BouncyCastle.Crypto.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/Drivers/ESPSchemeHandler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Drivers/ESPSchemeHandler.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/Drivers/ES_Encrypt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Drivers/ES_Encrypt.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/Drivers/MAuth.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Drivers/MAuth.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/Drivers/MediaLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Drivers/MediaLibrary.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/Drivers/Microsoft.WindowsAPICodePack.Shell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Drivers/Microsoft.WindowsAPICodePack.Shell.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/Drivers/Microsoft.WindowsAPICodePack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Drivers/Microsoft.WindowsAPICodePack.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/Drivers/Networking.Native.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Drivers/Networking.Native.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/Drivers/Networking.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Drivers/Networking.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/Drivers/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Drivers/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/Drivers/SPCApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Drivers/SPCApi.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/Drivers/SmartView2.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Drivers/SmartView2.Core.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/Drivers/SmartView2.Devices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Drivers/SmartView2.Devices.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/Drivers/SocketIOClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Drivers/SocketIOClient.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/Drivers/UIFoundation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Drivers/UIFoundation.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/Drivers/UPnP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Drivers/UPnP.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/Drivers/WebSocket4Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Drivers/WebSocket4Net.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/Drivers/libavcodec.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Drivers/libavcodec.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/Drivers/libavformat.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Drivers/libavformat.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/Drivers/libavutil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Drivers/libavutil.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/Drivers/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Drivers/log4net.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/Drivers/multiscreen-windows-api-csharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Drivers/multiscreen-windows-api-csharp.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/Drivers/taglib-sharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Drivers/taglib-sharp.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/Log4NetLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Log4NetLogger.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/MediaLibrary/DataLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/MediaLibrary/DataLibrary.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Models/BaseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Models/BaseModel.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Models/Settings/SettingsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Models/Settings/SettingsModel.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/EDataFlow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/EDataFlow.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/ERole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/ERole.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/HTTP/Headers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/HTTP/Headers.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/HTTP/HttpCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/HTTP/HttpCode.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/HTTP/HttpPhrases.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/HTTP/HttpPhrases.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/HTTP/HttpRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/HTTP/HttpRequest.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/HTTP/HttpResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/HTTP/HttpResponse.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/HTTP/HttpServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/HTTP/HttpServer.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/HTTP/IHttpHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/HTTP/IHttpHandler.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/IAudioSessionControl2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/IAudioSessionControl2.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/IAudioSessionEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/IAudioSessionEnumerator.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/IAudioSessionManager2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/IAudioSessionManager2.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/IMMDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/IMMDevice.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/IMMDeviceEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/IMMDeviceEnumerator.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/ISimpleAudioVolume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/ISimpleAudioVolume.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/MMDeviceEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/MMDeviceEnumerator.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/MediaLibrary/DataLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/MediaLibrary/DataLibrary.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/MultiScreen/ChannelListner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/MultiScreen/ChannelListner.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/MultiScreen/DeviceResult_T_.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/MultiScreen/DeviceResult_T_.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/MultiScreen/MediaContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/MultiScreen/MediaContent.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/MultiScreen/MediaPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/MultiScreen/MediaPanel.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/MultiScreen/MediaQueueItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/MultiScreen/MediaQueueItem.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/MultiScreen/MediaQueuePlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/MultiScreen/MediaQueuePlayer.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/MultiScreen/MediaTimeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/MultiScreen/MediaTimeInfo.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/MultiScreen/MediaUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/MultiScreen/MediaUser.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/MultiScreen/MultiScreenController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/MultiScreen/MultiScreenController.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/MultiScreen/MultiScreenResult_T_.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/MultiScreen/MultiScreenResult_T_.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/MultiScreen/QueueConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/MultiScreen/QueueConfig.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/MultiScreen/StateObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/MultiScreen/StateObject.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/Player/PlayerNotificationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/Player/PlayerNotificationProvider.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/SpcApiWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/SpcApiWrapper.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/Wlan/WlanApiWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/Wlan/WlanApiWrapper.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/Wlan/WlanConnectionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/Wlan/WlanConnectionInfo.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/Wlan/WlanConnectionMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/Wlan/WlanConnectionMode.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/Wlan/WlanInterfaceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/Wlan/WlanInterfaceInfo.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/Wlan/WlanInterfaceState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/Wlan/WlanInterfaceState.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/dlna/DLNAFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/dlna/DLNAFlags.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/dlna/DLNAMaps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/dlna/DLNAMaps.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/dlna/DLNAMime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/dlna/DLNAMime.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/dlna/DlnaServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/dlna/DlnaServer.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/dlna/Handler/ContentDirectoryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/dlna/Handler/ContentDirectoryHandler.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/dlna/Handler/ControlHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/dlna/Handler/ControlHandler.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/dlna/Handler/DescriptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/dlna/Handler/DescriptionHandler.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/dlna/Handler/FileHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/dlna/Handler/FileHandler.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/dlna/SSDP/Datagram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/dlna/SSDP/Datagram.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/dlna/SSDP/SsdpServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/dlna/SSDP/SsdpServer.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/dlna/UPnP/UPnPDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/dlna/UPnP/UPnPDevice.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Native/dlna/resources/error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Native/dlna/resources/error.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Options.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Pin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Pin.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Program.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Properties/Resources.resx -------------------------------------------------------------------------------- /SmartTVRemoteControl/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/Properties/Settings.settings -------------------------------------------------------------------------------- /SmartTVRemoteControl/SmartTVRemoteControl.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/SmartTVRemoteControl.csproj -------------------------------------------------------------------------------- /SmartTVRemoteControl/SmartTVRemoteControl.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/SmartTVRemoteControl.csproj.user -------------------------------------------------------------------------------- /SmartTVRemoteControl/SmartTVRemoteControl.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/SmartTVRemoteControl.sln -------------------------------------------------------------------------------- /SmartTVRemoteControl/SmartTVRemoteControl_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/SmartTVRemoteControl_TemporaryKey.pfx -------------------------------------------------------------------------------- /SmartTVRemoteControl/ThreadSafeCollection_T_.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/ThreadSafeCollection_T_.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/TvDiscovery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/TvDiscovery.cs -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/Debug/BouncyCastle.Crypto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/Debug/BouncyCastle.Crypto.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/Debug/MediaLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/Debug/MediaLibrary.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/Debug/Microsoft.WindowsAPICodePack.Shell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/Debug/Microsoft.WindowsAPICodePack.Shell.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/Debug/Microsoft.WindowsAPICodePack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/Debug/Microsoft.WindowsAPICodePack.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/Debug/Networking.Native.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/Debug/Networking.Native.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/Debug/Networking.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/Debug/Networking.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/Debug/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/Debug/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/Debug/SPCApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/Debug/SPCApi.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/Debug/SmartTVRemoteControl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/Debug/SmartTVRemoteControl.exe -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/Debug/SmartTVRemoteControl.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/Debug/SmartTVRemoteControl.exe.config -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/Debug/SmartTVRemoteControl.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/Debug/SmartTVRemoteControl.pdb -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/Debug/SmartTVRemoteControl.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/Debug/SmartTVRemoteControl.vshost.exe -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/Debug/SmartTVRemoteControl.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/Debug/SmartTVRemoteControl.vshost.exe.config -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/Debug/SmartTVRemoteControl.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/Debug/SmartTVRemoteControl.vshost.exe.manifest -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/Debug/SmartView2.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/Debug/SmartView2.Core.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/Debug/SmartView2.Devices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/Debug/SmartView2.Devices.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/Debug/SocketIOClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/Debug/SocketIOClient.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/Debug/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/Debug/System.Runtime.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/Debug/UIFoundation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/Debug/UIFoundation.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/Debug/UPnP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/Debug/UPnP.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/Debug/WebSocket4Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/Debug/WebSocket4Net.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/Debug/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/Debug/log4net.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/Debug/multiscreen-windows-api-csharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/Debug/multiscreen-windows-api-csharp.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/Debug/taglib-sharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/Debug/taglib-sharp.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Debug.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Debug.zip -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Debug/SmartTVRemoteControl.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Debug/SmartTVRemoteControl.vshost.exe -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Debug/SmartTVRemoteControl.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Debug/SmartTVRemoteControl.vshost.exe.config -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Debug/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Debug/System.Runtime.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/BouncyCastle.Crypto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/BouncyCastle.Crypto.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/CommandLine.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/CommandLine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/CommandLine.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/MediaLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/MediaLibrary.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/Microsoft.WindowsAPICodePack.Shell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/Microsoft.WindowsAPICodePack.Shell.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/Microsoft.WindowsAPICodePack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/Microsoft.WindowsAPICodePack.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/Networking.Native.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/Networking.Native.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/Networking.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/Networking.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/Nito.AsyncEx.Concurrent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/Nito.AsyncEx.Concurrent.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/Nito.AsyncEx.Enlightenment.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/SPCApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/SPCApi.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/SamsungRemoteControl.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/SamsungRemoteControl.zip -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/SmartTVRemoteControl.application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/SmartTVRemoteControl.application -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/SmartTVRemoteControl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/SmartTVRemoteControl.exe -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/SmartTVRemoteControl.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/SmartTVRemoteControl.exe.config -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/SmartTVRemoteControl.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/SmartTVRemoteControl.exe.manifest -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/SmartTVRemoteControl.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/SmartTVRemoteControl.pdb -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/SmartTVRemoteControl.vshost.application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/SmartTVRemoteControl.vshost.application -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/SmartTVRemoteControl.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/SmartTVRemoteControl.vshost.exe -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/SmartTVRemoteControl.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/SmartTVRemoteControl.vshost.exe.config -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/SmartTVRemoteControl.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/SmartTVRemoteControl.vshost.exe.manifest -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/SmartView2.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/SmartView2.Core.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/SmartView2.Devices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/SmartView2.Devices.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/SocketIOClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/SocketIOClient.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/UIFoundation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/UIFoundation.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/UPnP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/UPnP.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/WebSocket4Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/WebSocket4Net.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/BouncyCastle.Crypto.dll.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/BouncyCastle.Crypto.dll.deploy -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/CommandLine.dll.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/CommandLine.dll.deploy -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/MediaLibrary.dll.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/MediaLibrary.dll.deploy -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/Microsoft.WindowsAPICodePack.Shell.dll.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/Microsoft.WindowsAPICodePack.Shell.dll.deploy -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/Microsoft.WindowsAPICodePack.dll.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/Microsoft.WindowsAPICodePack.dll.deploy -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/Native/dlna/resources/error.xml.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/Native/dlna/resources/error.xml.deploy -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/Networking.Native.dll.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/Networking.Native.dll.deploy -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/Networking.dll.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/Networking.dll.deploy -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/Newtonsoft.Json.dll.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/Newtonsoft.Json.dll.deploy -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/Nito.AsyncEx.Concurrent.dll.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/Nito.AsyncEx.Concurrent.dll.deploy -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/Nito.AsyncEx.Enlightenment.dll.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/Nito.AsyncEx.Enlightenment.dll.deploy -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/Nito.AsyncEx.dll.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/Nito.AsyncEx.dll.deploy -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/SPCApi.dll.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/SPCApi.dll.deploy -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/SmartTVRemoteControl.exe.config.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/SmartTVRemoteControl.exe.config.deploy -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/SmartTVRemoteControl.exe.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/SmartTVRemoteControl.exe.deploy -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/SmartTVRemoteControl.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/SmartTVRemoteControl.exe.manifest -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/SmartView2.Core.dll.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/SmartView2.Core.dll.deploy -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/SmartView2.Devices.dll.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/SmartView2.Devices.dll.deploy -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/SocketIOClient.dll.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/SocketIOClient.dll.deploy -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/UIFoundation.dll.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/UIFoundation.dll.deploy -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/UPnP.dll.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/UPnP.dll.deploy -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/WebSocket4Net.dll.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/WebSocket4Net.dll.deploy -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/log4net.dll.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/log4net.dll.deploy -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/multiscreen-windows-api-csharp.dll.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/multiscreen-windows-api-csharp.dll.deploy -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/taglib-sharp.dll.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/app.publish/Application Files/SmartTVRemoteControl_1_0_0_1/taglib-sharp.dll.deploy -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/app.publish/SmartTVRemoteControl.application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/app.publish/SmartTVRemoteControl.application -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/app.publish/SmartTVRemoteControl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/app.publish/SmartTVRemoteControl.exe -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/app.publish/setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/app.publish/setup.exe -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/log4net.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/multiscreen-windows-api-csharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/multiscreen-windows-api-csharp.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/bin/x86/Release/taglib-sharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/bin/x86/Release/taglib-sharp.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /SmartTVRemoteControl/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /SmartTVRemoteControl/obj/Debug/SmartTVRemoteControl.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/obj/Debug/SmartTVRemoteControl.Properties.Resources.resources -------------------------------------------------------------------------------- /SmartTVRemoteControl/obj/Debug/SmartTVRemoteControl.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/obj/Debug/SmartTVRemoteControl.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SmartTVRemoteControl/obj/Debug/SmartTVRemoteControl.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/obj/Debug/SmartTVRemoteControl.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /SmartTVRemoteControl/obj/Debug/SmartTVRemoteControl.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/obj/Debug/SmartTVRemoteControl.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /SmartTVRemoteControl/obj/Debug/SmartTVRemoteControl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/obj/Debug/SmartTVRemoteControl.exe -------------------------------------------------------------------------------- /SmartTVRemoteControl/obj/Debug/SmartTVRemoteControl.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/obj/Debug/SmartTVRemoteControl.pdb -------------------------------------------------------------------------------- /SmartTVRemoteControl/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/obj/Debug/TempPE/Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/obj/Debug/TempPE/Resources.Designer.cs.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartTVRemoteControl/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartTVRemoteControl/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartTVRemoteControl/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /SmartTVRemoteControl/obj/x86/Debug/SmartTVRemoteControl.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/obj/x86/Debug/SmartTVRemoteControl.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SmartTVRemoteControl/obj/x86/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/obj/x86/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/obj/x86/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartTVRemoteControl/obj/x86/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartTVRemoteControl/obj/x86/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartTVRemoteControl/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /SmartTVRemoteControl/obj/x86/Release/SmartTVRemoteControl.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/obj/x86/Release/SmartTVRemoteControl.Properties.Resources.resources -------------------------------------------------------------------------------- /SmartTVRemoteControl/obj/x86/Release/SmartTVRemoteControl.application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/obj/x86/Release/SmartTVRemoteControl.application -------------------------------------------------------------------------------- /SmartTVRemoteControl/obj/x86/Release/SmartTVRemoteControl.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/obj/x86/Release/SmartTVRemoteControl.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SmartTVRemoteControl/obj/x86/Release/SmartTVRemoteControl.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/obj/x86/Release/SmartTVRemoteControl.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /SmartTVRemoteControl/obj/x86/Release/SmartTVRemoteControl.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/obj/x86/Release/SmartTVRemoteControl.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /SmartTVRemoteControl/obj/x86/Release/SmartTVRemoteControl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/obj/x86/Release/SmartTVRemoteControl.exe -------------------------------------------------------------------------------- /SmartTVRemoteControl/obj/x86/Release/SmartTVRemoteControl.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/obj/x86/Release/SmartTVRemoteControl.exe.manifest -------------------------------------------------------------------------------- /SmartTVRemoteControl/obj/x86/Release/SmartTVRemoteControl.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/obj/x86/Release/SmartTVRemoteControl.pdb -------------------------------------------------------------------------------- /SmartTVRemoteControl/obj/x86/Release/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/obj/x86/Release/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/obj/x86/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartTVRemoteControl/obj/x86/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartTVRemoteControl/obj/x86/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages.config -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/CommandLineParser.1.9.71/CommandLineParser.1.9.71.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/CommandLineParser.1.9.71/CommandLineParser.1.9.71.nupkg -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/CommandLineParser.1.9.71/lib/net35/CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/CommandLineParser.1.9.71/lib/net35/CommandLine.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/CommandLineParser.1.9.71/lib/net35/CommandLine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/CommandLineParser.1.9.71/lib/net35/CommandLine.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/CommandLineParser.1.9.71/lib/net40/CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/CommandLineParser.1.9.71/lib/net40/CommandLine.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/CommandLineParser.1.9.71/lib/net40/CommandLine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/CommandLineParser.1.9.71/lib/net40/CommandLine.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/CommandLineParser.1.9.71/lib/net45/CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/CommandLineParser.1.9.71/lib/net45/CommandLine.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/CommandLineParser.1.9.71/lib/net45/CommandLine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/CommandLineParser.1.9.71/lib/net45/CommandLine.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/CommandLineParser.1.9.71/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/CommandLineParser.1.9.71/readme.txt -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/Nito.AsyncEx.3.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/Nito.AsyncEx.3.0.1.nupkg -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.Concurrent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.Concurrent.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.Enlightenment.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.Concurrent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.Concurrent.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.Enlightenment.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.Concurrent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.Concurrent.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.Enlightenment.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.Concurrent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.Concurrent.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.Enlightenment.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.Concurrent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.Concurrent.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.Enlightenment.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.Concurrent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.Concurrent.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.Enlightenment.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45+sl4+wp71/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45+sl4+wp71/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45+sl4+wp71/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45+sl4+wp71/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45+sl5+wp8+wpa81/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45+sl5+wp8+wpa81/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45+sl5+wp8+wpa81/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45+sl5+wp8+wpa81/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45/Nito.AsyncEx.Concurrent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45/Nito.AsyncEx.Concurrent.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wp8+wpa81/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wp8+wpa81/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wp8+wpa81/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wp8+wpa81/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wpa81/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wpa81/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wpa81/Nito.AsyncEx.Concurrent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wpa81/Nito.AsyncEx.Concurrent.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wpa81/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wpa81/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wpa81/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wpa81/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/sl4/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/sl4/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/sl4/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/sl4/Nito.AsyncEx.Enlightenment.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/sl4/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/sl4/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/sl4/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/sl4/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/sl5/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/sl5/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/sl5/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/sl5/Nito.AsyncEx.Enlightenment.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/sl5/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/sl5/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/sl5/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/sl5/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/wp71/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/wp71/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/wp71/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/wp71/Nito.AsyncEx.Enlightenment.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/wp71/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/wp71/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/wp71/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/wp71/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/wp8/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/wp8/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/wp8/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/wp8/Nito.AsyncEx.Enlightenment.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/wp8/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/wp8/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/wp8/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/wp8/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.Concurrent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.Concurrent.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.Enlightenment.xml -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/SmartTVRemoteControl/packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /packages/CommandLineParser.1.9.71/CommandLineParser.1.9.71.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/CommandLineParser.1.9.71/CommandLineParser.1.9.71.nupkg -------------------------------------------------------------------------------- /packages/CommandLineParser.1.9.71/lib/net35/CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/CommandLineParser.1.9.71/lib/net35/CommandLine.dll -------------------------------------------------------------------------------- /packages/CommandLineParser.1.9.71/lib/net35/CommandLine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/CommandLineParser.1.9.71/lib/net35/CommandLine.xml -------------------------------------------------------------------------------- /packages/CommandLineParser.1.9.71/lib/net40/CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/CommandLineParser.1.9.71/lib/net40/CommandLine.dll -------------------------------------------------------------------------------- /packages/CommandLineParser.1.9.71/lib/net40/CommandLine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/CommandLineParser.1.9.71/lib/net40/CommandLine.xml -------------------------------------------------------------------------------- /packages/CommandLineParser.1.9.71/lib/net45/CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/CommandLineParser.1.9.71/lib/net45/CommandLine.dll -------------------------------------------------------------------------------- /packages/CommandLineParser.1.9.71/lib/net45/CommandLine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/CommandLineParser.1.9.71/lib/net45/CommandLine.xml -------------------------------------------------------------------------------- /packages/CommandLineParser.1.9.71/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/CommandLineParser.1.9.71/readme.txt -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/Nito.AsyncEx.3.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/Nito.AsyncEx.3.0.1.nupkg -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.Concurrent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.Concurrent.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.Enlightenment.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.Concurrent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.Concurrent.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.Enlightenment.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.Concurrent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.Concurrent.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.Enlightenment.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.Concurrent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.Concurrent.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.Enlightenment.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.Concurrent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.Concurrent.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.Enlightenment.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.Concurrent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.Concurrent.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.Enlightenment.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45+sl4+wp71/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45+sl4+wp71/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45+sl4+wp71/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45+sl4+wp71/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45+sl5+wp8+wpa81/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45+sl5+wp8+wpa81/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45+sl5+wp8+wpa81/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45+sl5+wp8+wpa81/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45/Nito.AsyncEx.Concurrent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45/Nito.AsyncEx.Concurrent.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wp8+wpa81/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wp8+wpa81/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wp8+wpa81/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wp8+wpa81/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wpa81/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wpa81/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wpa81/Nito.AsyncEx.Concurrent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wpa81/Nito.AsyncEx.Concurrent.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wpa81/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wpa81/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wpa81/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wpa81/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/sl4/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/sl4/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/sl4/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/sl4/Nito.AsyncEx.Enlightenment.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/sl4/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/sl4/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/sl4/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/sl4/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/sl5/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/sl5/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/sl5/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/sl5/Nito.AsyncEx.Enlightenment.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/sl5/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/sl5/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/sl5/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/sl5/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wp71/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/wp71/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wp71/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/wp71/Nito.AsyncEx.Enlightenment.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wp71/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/wp71/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wp71/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/wp71/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wp8/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/wp8/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wp8/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/wp8/Nito.AsyncEx.Enlightenment.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wp8/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/wp8/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wp8/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/wp8/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.Concurrent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.Concurrent.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.Enlightenment.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelery/Samsung-RemoteControl/HEAD/packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.xml --------------------------------------------------------------------------------