├── .gitattributes ├── .gitignore ├── CONTRIBUTING.md ├── DocConfig.txt ├── GettingStarted.md ├── License.txt ├── README.md ├── SECURITY.md ├── Samples ├── SampleDeviceCollection │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── BooleanConverter.cs │ ├── Controls │ │ ├── AutoScrollTextBox.cs │ │ ├── BindablePassword.xaml │ │ ├── BindablePassword.xaml.cs │ │ ├── DeviceCollectionView.xaml │ │ ├── DeviceCollectionView.xaml.cs │ │ ├── DeviceSignInView.xaml │ │ ├── DeviceSignInView.xaml.cs │ │ ├── NumberEntryBox.xaml │ │ ├── NumberEntryBox.xaml.cs │ │ └── SelectionListBox.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── SampleDeviceCollection.csproj │ ├── SampleDeviceCollection.sln │ ├── Settings.StyleCop │ ├── Themes │ │ ├── CustomStyles.xaml │ │ └── Generic.xaml │ ├── ViewModels │ │ ├── CommandSequence.cs │ │ ├── DevicePortalCommandModel.cs │ │ ├── DevicePortalViewModel.cs │ │ ├── DeviceSignInViewModel.cs │ │ ├── DiagnosticOutputViewModel.cs │ │ ├── DiagnosticSinks.cs │ │ ├── MainViewModel.cs │ │ └── ObservableCommandQueue.cs │ └── packages.config ├── SampleWdpClient.UniversalWindows │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── SampleWdpClient.UniversalWindows.csproj │ ├── Settings.StyleCop │ └── project.json ├── SampleWdpClient │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── SampleWdpClient.csproj │ └── Settings.StyleCop └── XboxWdpDriver │ ├── App.config │ ├── CredManager.cs │ ├── NetworkShare.cs │ ├── Operations │ ├── AppOperation.cs │ ├── ConfigOperation.cs │ ├── FiddlerOperation.cs │ ├── FileOperation.cs │ ├── InstallOperation.cs │ ├── ListProcessesOperation.cs │ ├── SandboxOperation.cs │ ├── ScreenshotOperation.cs │ ├── SystemPerfOperation.cs │ └── UserOperation.cs │ ├── ParameterHelper.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Settings.StyleCop │ ├── Tools │ └── XbUser.cmd │ └── XboxWdpDriver.csproj ├── Testing.md ├── WindowsDevicePortalWrapper ├── MockDataGenerator │ ├── App.config │ ├── MockDataGenerator.csproj │ ├── ParameterHelper.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Settings.StyleCop ├── UnitTestProject │ ├── BaseTests.cs │ ├── Core │ │ ├── AppFileExplorerTests.cs │ │ ├── EtwTests.cs │ │ ├── OsInformationTests.cs │ │ ├── PerformanceDataTests.cs │ │ └── WindowsErrorReportingTests.cs │ ├── Device-VersionTests │ │ ├── HoloLens │ │ │ ├── HoloLensHelpers.cs │ │ │ └── HoloLens_rs1_release.cs │ │ ├── IoT │ │ │ └── IoT_rs1_release.cs │ │ └── XboxOne │ │ │ ├── XboxHelpers.cs │ │ │ └── XboxOne_rs1_xbox_rel_1608.cs │ ├── MockData │ │ ├── Defaults │ │ │ ├── Put_ext_settings_TVResolution_Default.dat │ │ │ ├── WebSocket_api_etw_session_realtime_Default.dat │ │ │ ├── WebSocket_api_resourcemanager_processes_Default.dat │ │ │ ├── WebSocket_api_resourcemanager_systemperf_Default.dat │ │ │ ├── api_etw_customproviders_Default.dat │ │ │ ├── api_etw_providers_Default.dat │ │ │ ├── api_os_devicefamily_Default.dat │ │ │ ├── api_os_info_Default.dat │ │ │ ├── api_os_machinename_Default.dat │ │ │ ├── api_resourcemanager_processes_Default.dat │ │ │ ├── api_resourcemanager_systemperf_Default.dat │ │ │ ├── api_wer_report_files_Default.dat │ │ │ ├── api_wer_reports_Default.dat │ │ │ ├── ext_settings_Default.dat │ │ │ ├── ext_settings_TVResolution_Default.dat │ │ │ └── ext_user_Default.dat │ │ ├── Desktop │ │ │ └── rs1_release │ │ │ │ ├── WebSocket_api_resourcemanager_processes_Desktop_rs1_release.dat │ │ │ │ ├── WebSocket_api_resourcemanager_systemperf_Desktop_rs1_release.dat │ │ │ │ ├── api_networking_ipconfig_Desktop_rs1_release.dat │ │ │ │ ├── api_os_devicefamily_Desktop_rs1_release.dat │ │ │ │ ├── api_os_info_Desktop_rs1_release.dat │ │ │ │ ├── api_os_machinename_Desktop_rs1_release.dat │ │ │ │ ├── api_power_battery_Desktop_rs1_release.dat │ │ │ │ ├── api_power_state_Desktop_rs1_release.dat │ │ │ │ ├── api_resourcemanager_processes_Desktop_rs1_release.dat │ │ │ │ ├── api_resourcemanager_systemperf_Desktop_rs1_release.dat │ │ │ │ └── ext_xboxlive_sandbox_Desktop_rs1_release.dat │ │ ├── HoloLens │ │ │ └── rs1_release │ │ │ │ ├── WebSocket_api_resourcemanager_processes_HoloLens_rs1_release.dat │ │ │ │ ├── WebSocket_api_resourcemanager_systemperf_HoloLens_rs1_release.dat │ │ │ │ ├── api_holographic_mrc_files_HoloLens_rs1_release.dat │ │ │ │ ├── api_holographic_mrc_status_HoloLens_rs1_release.dat │ │ │ │ ├── api_holographic_os_services_HoloLens_rs1_release.dat │ │ │ │ ├── api_holographic_os_settings_ipd_HoloLens_rs1_release.dat │ │ │ │ ├── api_holographic_os_webmanagement_settings_https_HoloLens_rs1_release.dat │ │ │ │ ├── api_holographic_thermal_stage_HoloLens_rs1_release.dat │ │ │ │ ├── api_networking_ipconfig_HoloLens_rs1_release.dat │ │ │ │ ├── api_os_devicefamily_HoloLens_rs1_release.dat │ │ │ │ ├── api_os_info_HoloLens_rs1_release.dat │ │ │ │ ├── api_os_machinename_HoloLens_rs1_release.dat │ │ │ │ ├── api_power_battery_HoloLens_rs1_release.dat │ │ │ │ ├── api_power_state_HoloLens_rs1_release.dat │ │ │ │ ├── api_resourcemanager_processes_HoloLens_rs1_release.dat │ │ │ │ └── api_resourcemanager_systemperf_HoloLens_rs1_release.dat │ │ ├── IoT │ │ │ └── rs1_release │ │ │ │ ├── WebSocket_api_resourcemanager_processes_IoTDragonboard410c_rs1_release.dat │ │ │ │ ├── WebSocket_api_resourcemanager_processes_IoTMinnowboardMax_rs1_release.dat │ │ │ │ ├── WebSocket_api_resourcemanager_processes_IoTRaspberryPi3_rs1_release.dat │ │ │ │ ├── WebSocket_api_resourcemanager_systemperf_IoTDragonboard410c_rs1_release.dat │ │ │ │ ├── WebSocket_api_resourcemanager_systemperf_IoTMinnowboardMax_rs1_release.dat │ │ │ │ ├── WebSocket_api_resourcemanager_systemperf_IoTRaspberryPi3_rs1_release.dat │ │ │ │ ├── api_iot_appx_default_IoTRaspberryPi3_rs1_release.dat │ │ │ │ ├── api_iot_appx_listHeadlessApps_IoTRaspberryPi3_rs1_release.dat │ │ │ │ ├── api_iot_audio_listdevices_IoTRaspberryPi3_rs1_release.dat │ │ │ │ ├── api_iot_device_controllersdriver_IoTRaspberryPi3_rs1_release.dat │ │ │ │ ├── api_iot_device_datetime_IoTRaspberryPi3_rs1_release.dat │ │ │ │ ├── api_iot_device_displayorientation_IoTRaspberryPi3_rs1_release.dat │ │ │ │ ├── api_iot_device_displayresolution_IoTRaspberryPi3_rs1_release.dat │ │ │ │ ├── api_iot_device_information_IoTRaspberryPi3_rs1_release.dat │ │ │ │ ├── api_iot_device_timezones_IoTRaspberryPi3_rs1_release.dat │ │ │ │ ├── api_iot_ics_interfaces_IoTRaspberryPi3_rs1_release.dat │ │ │ │ ├── api_iot_iotonboarding_alljoynsettings_IoTRaspberryPi3_rs1_release.dat │ │ │ │ ├── api_iot_iotonboarding_softapsettings_IoTRaspberryPi3_rs1_release.dat │ │ │ │ ├── api_iot_remote_status_IoTRaspberryPi3_rs1_release.dat │ │ │ │ ├── api_iot_tpm_acpitables_IoTRaspberryPi3_rs1_release.dat │ │ │ │ ├── api_iot_tpm_azuretoken_0_IoTRaspberryPi3_rs1_release.dat │ │ │ │ ├── api_iot_tpm_settings_1_IoTRaspberryPi3_rs1_release.dat │ │ │ │ ├── api_iot_tpm_settings_IoTRaspberryPi3_rs1_release.dat │ │ │ │ ├── api_iot_windowsupdate_installtime_IoTRaspberryPi3_rs1_release.dat │ │ │ │ ├── api_iot_windowsupdate_status_IoTRaspberryPi3_rs1_release.dat │ │ │ │ ├── api_networking_ipconfig_IoTDragonboard410c_rs1_release.dat │ │ │ │ ├── api_networking_ipconfig_IoTMinnowboardMax_rs1_release.dat │ │ │ │ ├── api_networking_ipconfig_IoTRaspberryPi3_rs1_release.dat │ │ │ │ ├── api_os_devicefamily_IoTDragonboard410c_rs1_release.dat │ │ │ │ ├── api_os_devicefamily_IoTMinnowboardMax_rs1_release.dat │ │ │ │ ├── api_os_devicefamily_IoTRaspberryPi3_rs1_release.dat │ │ │ │ ├── api_os_info_IoTDragonboard410c_rs1_release.dat │ │ │ │ ├── api_os_info_IoTMinnowboardMax_rs1_release.dat │ │ │ │ ├── api_os_info_IoTRaspberryPi3_rs1_release.dat │ │ │ │ ├── api_os_machinename_IoTDragonboard410c_rs1_release.dat │ │ │ │ ├── api_os_machinename_IoTMinnowboardMax_rs1_release.dat │ │ │ │ ├── api_os_machinename_IoTRaspberryPi3_rs1_release.dat │ │ │ │ ├── api_power_battery_IoTDragonboard410c_rs1_release.dat │ │ │ │ ├── api_power_battery_IoTMinnowboardMax_rs1_release.dat │ │ │ │ ├── api_power_battery_IoTRaspberryPi3_rs1_release.dat │ │ │ │ ├── api_power_state_IoTDragonboard410c_rs1_release.dat │ │ │ │ ├── api_power_state_IoTMinnowboardMax_rs1_release.dat │ │ │ │ ├── api_power_state_IoTRaspberryPi3_rs1_release.dat │ │ │ │ ├── api_resourcemanager_processes_IoTDragonboard410c_rs1_release.dat │ │ │ │ ├── api_resourcemanager_processes_IoTMinnowboardMax_rs1_release.dat │ │ │ │ ├── api_resourcemanager_processes_IoTRaspberryPi3_rs1_release.dat │ │ │ │ ├── api_resourcemanager_systemperf_IoTDragonboard410c_rs1_release.dat │ │ │ │ ├── api_resourcemanager_systemperf_IoTMinnowboardMax_rs1_release.dat │ │ │ │ └── api_resourcemanager_systemperf_IoTRaspberryPi3_rs1_release.dat │ │ ├── ReadMe.txt │ │ └── XboxOne │ │ │ └── rs1_xbox_rel_1608 │ │ │ ├── WebSocket_api_resourcemanager_processes_XboxOne_rs1_xbox_rel_1608.dat │ │ │ ├── WebSocket_api_resourcemanager_systemperf_XboxOne_rs1_xbox_rel_1608.dat │ │ │ ├── api_filesystem_apps_files_XboxOne_rs1_xbox_rel_1608.dat │ │ │ ├── api_filesystem_apps_knownfolders_XboxOne_rs1_xbox_rel_1608.dat │ │ │ ├── api_os_devicefamily_XboxOne_rs1_xbox_rel_1608.dat │ │ │ ├── api_os_info_XboxOne_rs1_xbox_rel_1608.dat │ │ │ ├── api_os_machinename_XboxOne_rs1_xbox_rel_1608.dat │ │ │ ├── api_resourcemanager_processes_XboxOne_rs1_xbox_rel_1608.dat │ │ │ ├── api_resourcemanager_systemperf_XboxOne_rs1_xbox_rel_1608.dat │ │ │ ├── ext_settings_XboxOne_rs1_xbox_rel_1608.dat │ │ │ ├── ext_user_XboxOne_rs1_xbox_rel_1608.dat │ │ │ ├── ext_xboxlive_sandbox_XboxOne_rs1_xbox_rel_1608.dat │ │ │ └── xbox_screenshot.png │ ├── MockHttpResponder.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Settings.StyleCop │ ├── TestHelpers.cs │ ├── UnitTestProject.csproj │ └── WDPMockImplementations │ │ ├── AppDeployment.cs │ │ ├── CertificateHandling.cs │ │ ├── MockDevicePortalConnection.cs │ │ ├── RestDelete.cs │ │ ├── RestGet.cs │ │ ├── RestPost.cs │ │ ├── RestPut.cs │ │ └── WebSocket.cs ├── Utilities │ ├── WindowsDevicePortalWrapper.nuspec │ └── signConfig.xml ├── WindowsDevicePortalWrapper.Shared │ ├── Core │ │ ├── AppCrashDumpCollection.cs │ │ ├── AppDeployment.cs │ │ ├── AppFileExplorer.cs │ │ ├── DeviceManager.cs │ │ ├── Dns-Sd.cs │ │ ├── DumpCollection.cs │ │ ├── Etw.cs │ │ ├── Networking.cs │ │ ├── OsInformation.cs │ │ ├── PerformanceData.cs │ │ ├── Power.cs │ │ ├── RemoteControl.cs │ │ ├── ResourceManager.cs │ │ ├── TaskManager.cs │ │ ├── WiFiManagement.cs │ │ ├── WindowsErrorReporting.cs │ │ └── WindowsPerformanceRecorder.cs │ ├── DevicePortal.cs │ ├── Events │ │ ├── ApplicationInstallStatus.cs │ │ ├── ConnectionStatus.cs │ │ └── WebSocketMessageReceivedEventArgs.cs │ ├── Exceptions │ │ └── DevicePortalException.cs │ ├── HoloLens │ │ ├── HolographicOs.cs │ │ ├── HolographicPerception.cs │ │ ├── HolographicThermal.cs │ │ ├── MixedRealityCapture.cs │ │ ├── PerceptionSimulationPlayback.cs │ │ └── PerceptionSimulationRecording.cs │ ├── HttpRest │ │ ├── HttpHeadersHelper.cs │ │ ├── RequestHelpers.cs │ │ ├── ResponseHelpers.cs │ │ ├── RestDelete.cs │ │ ├── RestGet.cs │ │ ├── RestPost.cs │ │ ├── RestPut.cs │ │ └── WebSocket.cs │ ├── Interfaces │ │ └── IDevicePortalConnection.cs │ ├── IoT │ │ ├── ApplicationManager.cs │ │ ├── AudioDevices.cs │ │ ├── BluetoothConnectivity.cs │ │ ├── DeviceInfo.cs │ │ ├── IcsManager.cs │ │ ├── IoTOnboarding.cs │ │ ├── Limpet.cs │ │ ├── ProcessManagement.cs │ │ ├── RemoteSettings.cs │ │ └── WindowsUpdate.cs │ ├── Settings.StyleCop │ ├── Utilities.cs │ ├── WindowsDevicePortalWrapper.Shared.projitems │ ├── WindowsDevicePortalWrapper.Shared.shproj │ └── Xbox │ │ ├── FiddlerSetup.cs │ │ ├── SmbShare.cs │ │ ├── UserManagement.cs │ │ ├── XboxAppDeployment.cs │ │ ├── XboxLiveSandbox.cs │ │ ├── XboxMediaCapture.cs │ │ └── XboxSettings.cs ├── WindowsDevicePortalWrapper.UniversalWindows │ ├── CertificateHandling.cs │ ├── Core │ │ └── AppDeployment.cs │ ├── DefaultDevicePortalConnection.cs │ ├── DevicePortalWrapperUniversal.snk │ ├── HttpRest │ │ ├── HttpMultipartFileContent.cs │ │ ├── RequestHelpers.cs │ │ ├── RestDelete.cs │ │ ├── RestGet.cs │ │ ├── RestPost.cs │ │ ├── RestPut.cs │ │ └── WebSocket.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── WindowsDevicePortalWrapper.UniversalWindows.rd.xml │ ├── Settings.StyleCop │ ├── WindowsDevicePortalWrapper.UniversalWindows.csproj │ └── project.json ├── WindowsDevicePortalWrapper.sln └── WindowsDevicePortalWrapper │ ├── CertificateHandling.cs │ ├── Core │ └── AppDeployment.cs │ ├── DefaultDevicePortalConnection.cs │ ├── DevicePortalWrapperNet.snk │ ├── Events │ └── UnvalidatedCert.cs │ ├── HttpRest │ ├── HttpMultipartFileContent.cs │ ├── RestDelete.cs │ ├── RestGet.cs │ ├── RestPost.cs │ ├── RestPut.cs │ └── WebSocket.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Settings.StyleCop │ └── WindowsDevicePortalWrapper.csproj └── XboxWDPDriver.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DocConfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/DocConfig.txt -------------------------------------------------------------------------------- /GettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/GettingStarted.md -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Samples/SampleDeviceCollection/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleDeviceCollection/App.config -------------------------------------------------------------------------------- /Samples/SampleDeviceCollection/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleDeviceCollection/App.xaml -------------------------------------------------------------------------------- /Samples/SampleDeviceCollection/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleDeviceCollection/App.xaml.cs -------------------------------------------------------------------------------- /Samples/SampleDeviceCollection/BooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleDeviceCollection/BooleanConverter.cs -------------------------------------------------------------------------------- /Samples/SampleDeviceCollection/Controls/AutoScrollTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleDeviceCollection/Controls/AutoScrollTextBox.cs -------------------------------------------------------------------------------- /Samples/SampleDeviceCollection/Controls/BindablePassword.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleDeviceCollection/Controls/BindablePassword.xaml -------------------------------------------------------------------------------- /Samples/SampleDeviceCollection/Controls/BindablePassword.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleDeviceCollection/Controls/BindablePassword.xaml.cs -------------------------------------------------------------------------------- /Samples/SampleDeviceCollection/Controls/DeviceCollectionView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleDeviceCollection/Controls/DeviceCollectionView.xaml -------------------------------------------------------------------------------- /Samples/SampleDeviceCollection/Controls/DeviceCollectionView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleDeviceCollection/Controls/DeviceCollectionView.xaml.cs -------------------------------------------------------------------------------- /Samples/SampleDeviceCollection/Controls/DeviceSignInView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleDeviceCollection/Controls/DeviceSignInView.xaml -------------------------------------------------------------------------------- /Samples/SampleDeviceCollection/Controls/DeviceSignInView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleDeviceCollection/Controls/DeviceSignInView.xaml.cs -------------------------------------------------------------------------------- /Samples/SampleDeviceCollection/Controls/NumberEntryBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleDeviceCollection/Controls/NumberEntryBox.xaml -------------------------------------------------------------------------------- /Samples/SampleDeviceCollection/Controls/NumberEntryBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleDeviceCollection/Controls/NumberEntryBox.xaml.cs -------------------------------------------------------------------------------- /Samples/SampleDeviceCollection/Controls/SelectionListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleDeviceCollection/Controls/SelectionListBox.cs -------------------------------------------------------------------------------- /Samples/SampleDeviceCollection/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleDeviceCollection/MainWindow.xaml -------------------------------------------------------------------------------- /Samples/SampleDeviceCollection/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleDeviceCollection/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Samples/SampleDeviceCollection/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleDeviceCollection/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/SampleDeviceCollection/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleDeviceCollection/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Samples/SampleDeviceCollection/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleDeviceCollection/Properties/Resources.resx -------------------------------------------------------------------------------- /Samples/SampleDeviceCollection/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleDeviceCollection/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Samples/SampleDeviceCollection/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleDeviceCollection/Properties/Settings.settings -------------------------------------------------------------------------------- /Samples/SampleDeviceCollection/SampleDeviceCollection.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleDeviceCollection/SampleDeviceCollection.csproj -------------------------------------------------------------------------------- /Samples/SampleDeviceCollection/SampleDeviceCollection.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleDeviceCollection/SampleDeviceCollection.sln -------------------------------------------------------------------------------- /Samples/SampleDeviceCollection/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleDeviceCollection/Settings.StyleCop -------------------------------------------------------------------------------- /Samples/SampleDeviceCollection/Themes/CustomStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleDeviceCollection/Themes/CustomStyles.xaml -------------------------------------------------------------------------------- /Samples/SampleDeviceCollection/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleDeviceCollection/Themes/Generic.xaml -------------------------------------------------------------------------------- /Samples/SampleDeviceCollection/ViewModels/CommandSequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleDeviceCollection/ViewModels/CommandSequence.cs -------------------------------------------------------------------------------- /Samples/SampleDeviceCollection/ViewModels/DevicePortalCommandModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleDeviceCollection/ViewModels/DevicePortalCommandModel.cs -------------------------------------------------------------------------------- /Samples/SampleDeviceCollection/ViewModels/DevicePortalViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleDeviceCollection/ViewModels/DevicePortalViewModel.cs -------------------------------------------------------------------------------- /Samples/SampleDeviceCollection/ViewModels/DeviceSignInViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleDeviceCollection/ViewModels/DeviceSignInViewModel.cs -------------------------------------------------------------------------------- /Samples/SampleDeviceCollection/ViewModels/DiagnosticOutputViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleDeviceCollection/ViewModels/DiagnosticOutputViewModel.cs -------------------------------------------------------------------------------- /Samples/SampleDeviceCollection/ViewModels/DiagnosticSinks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleDeviceCollection/ViewModels/DiagnosticSinks.cs -------------------------------------------------------------------------------- /Samples/SampleDeviceCollection/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleDeviceCollection/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /Samples/SampleDeviceCollection/ViewModels/ObservableCommandQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleDeviceCollection/ViewModels/ObservableCommandQueue.cs -------------------------------------------------------------------------------- /Samples/SampleDeviceCollection/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleDeviceCollection/packages.config -------------------------------------------------------------------------------- /Samples/SampleWdpClient.UniversalWindows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleWdpClient.UniversalWindows/App.xaml -------------------------------------------------------------------------------- /Samples/SampleWdpClient.UniversalWindows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleWdpClient.UniversalWindows/App.xaml.cs -------------------------------------------------------------------------------- /Samples/SampleWdpClient.UniversalWindows/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleWdpClient.UniversalWindows/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Samples/SampleWdpClient.UniversalWindows/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleWdpClient.UniversalWindows/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Samples/SampleWdpClient.UniversalWindows/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleWdpClient.UniversalWindows/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Samples/SampleWdpClient.UniversalWindows/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleWdpClient.UniversalWindows/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Samples/SampleWdpClient.UniversalWindows/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleWdpClient.UniversalWindows/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Samples/SampleWdpClient.UniversalWindows/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleWdpClient.UniversalWindows/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Samples/SampleWdpClient.UniversalWindows/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleWdpClient.UniversalWindows/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Samples/SampleWdpClient.UniversalWindows/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleWdpClient.UniversalWindows/MainPage.xaml -------------------------------------------------------------------------------- /Samples/SampleWdpClient.UniversalWindows/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleWdpClient.UniversalWindows/MainPage.xaml.cs -------------------------------------------------------------------------------- /Samples/SampleWdpClient.UniversalWindows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleWdpClient.UniversalWindows/Package.appxmanifest -------------------------------------------------------------------------------- /Samples/SampleWdpClient.UniversalWindows/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleWdpClient.UniversalWindows/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/SampleWdpClient.UniversalWindows/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleWdpClient.UniversalWindows/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Samples/SampleWdpClient.UniversalWindows/SampleWdpClient.UniversalWindows.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleWdpClient.UniversalWindows/SampleWdpClient.UniversalWindows.csproj -------------------------------------------------------------------------------- /Samples/SampleWdpClient.UniversalWindows/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleWdpClient.UniversalWindows/Settings.StyleCop -------------------------------------------------------------------------------- /Samples/SampleWdpClient.UniversalWindows/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleWdpClient.UniversalWindows/project.json -------------------------------------------------------------------------------- /Samples/SampleWdpClient/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleWdpClient/App.config -------------------------------------------------------------------------------- /Samples/SampleWdpClient/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleWdpClient/App.xaml -------------------------------------------------------------------------------- /Samples/SampleWdpClient/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleWdpClient/App.xaml.cs -------------------------------------------------------------------------------- /Samples/SampleWdpClient/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleWdpClient/MainWindow.xaml -------------------------------------------------------------------------------- /Samples/SampleWdpClient/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleWdpClient/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Samples/SampleWdpClient/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleWdpClient/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/SampleWdpClient/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleWdpClient/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Samples/SampleWdpClient/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleWdpClient/Properties/Resources.resx -------------------------------------------------------------------------------- /Samples/SampleWdpClient/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleWdpClient/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Samples/SampleWdpClient/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleWdpClient/Properties/Settings.settings -------------------------------------------------------------------------------- /Samples/SampleWdpClient/SampleWdpClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleWdpClient/SampleWdpClient.csproj -------------------------------------------------------------------------------- /Samples/SampleWdpClient/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/SampleWdpClient/Settings.StyleCop -------------------------------------------------------------------------------- /Samples/XboxWdpDriver/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/XboxWdpDriver/App.config -------------------------------------------------------------------------------- /Samples/XboxWdpDriver/CredManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/XboxWdpDriver/CredManager.cs -------------------------------------------------------------------------------- /Samples/XboxWdpDriver/NetworkShare.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/XboxWdpDriver/NetworkShare.cs -------------------------------------------------------------------------------- /Samples/XboxWdpDriver/Operations/AppOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/XboxWdpDriver/Operations/AppOperation.cs -------------------------------------------------------------------------------- /Samples/XboxWdpDriver/Operations/ConfigOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/XboxWdpDriver/Operations/ConfigOperation.cs -------------------------------------------------------------------------------- /Samples/XboxWdpDriver/Operations/FiddlerOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/XboxWdpDriver/Operations/FiddlerOperation.cs -------------------------------------------------------------------------------- /Samples/XboxWdpDriver/Operations/FileOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/XboxWdpDriver/Operations/FileOperation.cs -------------------------------------------------------------------------------- /Samples/XboxWdpDriver/Operations/InstallOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/XboxWdpDriver/Operations/InstallOperation.cs -------------------------------------------------------------------------------- /Samples/XboxWdpDriver/Operations/ListProcessesOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/XboxWdpDriver/Operations/ListProcessesOperation.cs -------------------------------------------------------------------------------- /Samples/XboxWdpDriver/Operations/SandboxOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/XboxWdpDriver/Operations/SandboxOperation.cs -------------------------------------------------------------------------------- /Samples/XboxWdpDriver/Operations/ScreenshotOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/XboxWdpDriver/Operations/ScreenshotOperation.cs -------------------------------------------------------------------------------- /Samples/XboxWdpDriver/Operations/SystemPerfOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/XboxWdpDriver/Operations/SystemPerfOperation.cs -------------------------------------------------------------------------------- /Samples/XboxWdpDriver/Operations/UserOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/XboxWdpDriver/Operations/UserOperation.cs -------------------------------------------------------------------------------- /Samples/XboxWdpDriver/ParameterHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/XboxWdpDriver/ParameterHelper.cs -------------------------------------------------------------------------------- /Samples/XboxWdpDriver/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/XboxWdpDriver/Program.cs -------------------------------------------------------------------------------- /Samples/XboxWdpDriver/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/XboxWdpDriver/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/XboxWdpDriver/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/XboxWdpDriver/Settings.StyleCop -------------------------------------------------------------------------------- /Samples/XboxWdpDriver/Tools/XbUser.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/XboxWdpDriver/Tools/XbUser.cmd -------------------------------------------------------------------------------- /Samples/XboxWdpDriver/XboxWdpDriver.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Samples/XboxWdpDriver/XboxWdpDriver.csproj -------------------------------------------------------------------------------- /Testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/Testing.md -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/MockDataGenerator/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/MockDataGenerator/App.config -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/MockDataGenerator/MockDataGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/MockDataGenerator/MockDataGenerator.csproj -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/MockDataGenerator/ParameterHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/MockDataGenerator/ParameterHelper.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/MockDataGenerator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/MockDataGenerator/Program.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/MockDataGenerator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/MockDataGenerator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/MockDataGenerator/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/MockDataGenerator/Settings.StyleCop -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/BaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/BaseTests.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/Core/AppFileExplorerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/Core/AppFileExplorerTests.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/Core/EtwTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/Core/EtwTests.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/Core/OsInformationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/Core/OsInformationTests.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/Core/PerformanceDataTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/Core/PerformanceDataTests.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/Core/WindowsErrorReportingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/Core/WindowsErrorReportingTests.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/Device-VersionTests/HoloLens/HoloLensHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/Device-VersionTests/HoloLens/HoloLensHelpers.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/Device-VersionTests/HoloLens/HoloLens_rs1_release.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/Device-VersionTests/HoloLens/HoloLens_rs1_release.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/Device-VersionTests/IoT/IoT_rs1_release.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/Device-VersionTests/IoT/IoT_rs1_release.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/Device-VersionTests/XboxOne/XboxHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/Device-VersionTests/XboxOne/XboxHelpers.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/Device-VersionTests/XboxOne/XboxOne_rs1_xbox_rel_1608.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/Device-VersionTests/XboxOne/XboxOne_rs1_xbox_rel_1608.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/Defaults/Put_ext_settings_TVResolution_Default.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/Defaults/Put_ext_settings_TVResolution_Default.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/Defaults/WebSocket_api_etw_session_realtime_Default.dat: -------------------------------------------------------------------------------- 1 | { } -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/Defaults/WebSocket_api_resourcemanager_processes_Default.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/Defaults/WebSocket_api_resourcemanager_processes_Default.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/Defaults/WebSocket_api_resourcemanager_systemperf_Default.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/Defaults/WebSocket_api_resourcemanager_systemperf_Default.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/Defaults/api_etw_customproviders_Default.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/Defaults/api_etw_customproviders_Default.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/Defaults/api_etw_providers_Default.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/Defaults/api_etw_providers_Default.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/Defaults/api_os_devicefamily_Default.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/Defaults/api_os_devicefamily_Default.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/Defaults/api_os_info_Default.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/Defaults/api_os_info_Default.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/Defaults/api_os_machinename_Default.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/Defaults/api_os_machinename_Default.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/Defaults/api_resourcemanager_processes_Default.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/Defaults/api_resourcemanager_processes_Default.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/Defaults/api_resourcemanager_systemperf_Default.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/Defaults/api_resourcemanager_systemperf_Default.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/Defaults/api_wer_report_files_Default.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/Defaults/api_wer_report_files_Default.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/Defaults/api_wer_reports_Default.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/Defaults/api_wer_reports_Default.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/Defaults/ext_settings_Default.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/Defaults/ext_settings_Default.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/Defaults/ext_settings_TVResolution_Default.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/Defaults/ext_settings_TVResolution_Default.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/Defaults/ext_user_Default.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/Defaults/ext_user_Default.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/Desktop/rs1_release/WebSocket_api_resourcemanager_processes_Desktop_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/Desktop/rs1_release/WebSocket_api_resourcemanager_processes_Desktop_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/Desktop/rs1_release/WebSocket_api_resourcemanager_systemperf_Desktop_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/Desktop/rs1_release/WebSocket_api_resourcemanager_systemperf_Desktop_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/Desktop/rs1_release/api_networking_ipconfig_Desktop_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/Desktop/rs1_release/api_networking_ipconfig_Desktop_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/Desktop/rs1_release/api_os_devicefamily_Desktop_rs1_release.dat: -------------------------------------------------------------------------------- 1 | {"DeviceType" : "Windows.Desktop"} -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/Desktop/rs1_release/api_os_info_Desktop_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/Desktop/rs1_release/api_os_info_Desktop_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/Desktop/rs1_release/api_os_machinename_Desktop_rs1_release.dat: -------------------------------------------------------------------------------- 1 | {"ComputerName" : "desktop"} -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/Desktop/rs1_release/api_power_battery_Desktop_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/Desktop/rs1_release/api_power_battery_Desktop_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/Desktop/rs1_release/api_power_state_Desktop_rs1_release.dat: -------------------------------------------------------------------------------- 1 | {"LowPowerStateAvailable" : false} -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/Desktop/rs1_release/api_resourcemanager_processes_Desktop_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/Desktop/rs1_release/api_resourcemanager_processes_Desktop_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/Desktop/rs1_release/api_resourcemanager_systemperf_Desktop_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/Desktop/rs1_release/api_resourcemanager_systemperf_Desktop_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/Desktop/rs1_release/ext_xboxlive_sandbox_Desktop_rs1_release.dat: -------------------------------------------------------------------------------- 1 | {"Sandbox" : "RETAIL"} -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/HoloLens/rs1_release/WebSocket_api_resourcemanager_processes_HoloLens_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/HoloLens/rs1_release/WebSocket_api_resourcemanager_processes_HoloLens_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/HoloLens/rs1_release/WebSocket_api_resourcemanager_systemperf_HoloLens_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/HoloLens/rs1_release/WebSocket_api_resourcemanager_systemperf_HoloLens_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/HoloLens/rs1_release/api_holographic_mrc_files_HoloLens_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/HoloLens/rs1_release/api_holographic_mrc_files_HoloLens_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/HoloLens/rs1_release/api_holographic_mrc_status_HoloLens_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/HoloLens/rs1_release/api_holographic_mrc_status_HoloLens_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/HoloLens/rs1_release/api_holographic_os_services_HoloLens_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/HoloLens/rs1_release/api_holographic_os_services_HoloLens_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/HoloLens/rs1_release/api_holographic_os_settings_ipd_HoloLens_rs1_release.dat: -------------------------------------------------------------------------------- 1 | {"ipd" : 67500} -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/HoloLens/rs1_release/api_holographic_os_webmanagement_settings_https_HoloLens_rs1_release.dat: -------------------------------------------------------------------------------- 1 | {"httpsRequired" : true} -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/HoloLens/rs1_release/api_holographic_thermal_stage_HoloLens_rs1_release.dat: -------------------------------------------------------------------------------- 1 | {"CurrentStage" : 0} -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/HoloLens/rs1_release/api_networking_ipconfig_HoloLens_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/HoloLens/rs1_release/api_networking_ipconfig_HoloLens_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/HoloLens/rs1_release/api_os_devicefamily_HoloLens_rs1_release.dat: -------------------------------------------------------------------------------- 1 | {"DeviceType" : "Windows.Holographic"} -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/HoloLens/rs1_release/api_os_info_HoloLens_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/HoloLens/rs1_release/api_os_info_HoloLens_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/HoloLens/rs1_release/api_os_machinename_HoloLens_rs1_release.dat: -------------------------------------------------------------------------------- 1 | {"ComputerName" : "MyHoloLens"} -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/HoloLens/rs1_release/api_power_battery_HoloLens_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/HoloLens/rs1_release/api_power_battery_HoloLens_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/HoloLens/rs1_release/api_power_state_HoloLens_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/HoloLens/rs1_release/api_power_state_HoloLens_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/HoloLens/rs1_release/api_resourcemanager_processes_HoloLens_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/HoloLens/rs1_release/api_resourcemanager_processes_HoloLens_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/HoloLens/rs1_release/api_resourcemanager_systemperf_HoloLens_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/HoloLens/rs1_release/api_resourcemanager_systemperf_HoloLens_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/WebSocket_api_resourcemanager_processes_IoTDragonboard410c_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/WebSocket_api_resourcemanager_processes_IoTDragonboard410c_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/WebSocket_api_resourcemanager_processes_IoTMinnowboardMax_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/WebSocket_api_resourcemanager_processes_IoTMinnowboardMax_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/WebSocket_api_resourcemanager_processes_IoTRaspberryPi3_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/WebSocket_api_resourcemanager_processes_IoTRaspberryPi3_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/WebSocket_api_resourcemanager_systemperf_IoTDragonboard410c_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/WebSocket_api_resourcemanager_systemperf_IoTDragonboard410c_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/WebSocket_api_resourcemanager_systemperf_IoTMinnowboardMax_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/WebSocket_api_resourcemanager_systemperf_IoTMinnowboardMax_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/WebSocket_api_resourcemanager_systemperf_IoTRaspberryPi3_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/WebSocket_api_resourcemanager_systemperf_IoTRaspberryPi3_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_iot_appx_default_IoTRaspberryPi3_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_iot_appx_default_IoTRaspberryPi3_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_iot_appx_listHeadlessApps_IoTRaspberryPi3_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_iot_appx_listHeadlessApps_IoTRaspberryPi3_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_iot_audio_listdevices_IoTRaspberryPi3_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_iot_audio_listdevices_IoTRaspberryPi3_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_iot_device_controllersdriver_IoTRaspberryPi3_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_iot_device_controllersdriver_IoTRaspberryPi3_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_iot_device_datetime_IoTRaspberryPi3_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_iot_device_datetime_IoTRaspberryPi3_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_iot_device_displayorientation_IoTRaspberryPi3_rs1_release.dat: -------------------------------------------------------------------------------- 1 | {"Orientation" : 0} -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_iot_device_displayresolution_IoTRaspberryPi3_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_iot_device_displayresolution_IoTRaspberryPi3_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_iot_device_information_IoTRaspberryPi3_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_iot_device_information_IoTRaspberryPi3_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_iot_device_timezones_IoTRaspberryPi3_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_iot_device_timezones_IoTRaspberryPi3_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_iot_ics_interfaces_IoTRaspberryPi3_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_iot_ics_interfaces_IoTRaspberryPi3_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_iot_iotonboarding_alljoynsettings_IoTRaspberryPi3_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_iot_iotonboarding_alljoynsettings_IoTRaspberryPi3_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_iot_iotonboarding_softapsettings_IoTRaspberryPi3_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_iot_iotonboarding_softapsettings_IoTRaspberryPi3_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_iot_remote_status_IoTRaspberryPi3_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_iot_remote_status_IoTRaspberryPi3_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_iot_tpm_acpitables_IoTRaspberryPi3_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_iot_tpm_acpitables_IoTRaspberryPi3_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_iot_tpm_azuretoken_0_IoTRaspberryPi3_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_iot_tpm_azuretoken_0_IoTRaspberryPi3_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_iot_tpm_settings_1_IoTRaspberryPi3_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_iot_tpm_settings_1_IoTRaspberryPi3_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_iot_tpm_settings_IoTRaspberryPi3_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_iot_tpm_settings_IoTRaspberryPi3_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_iot_windowsupdate_installtime_IoTRaspberryPi3_rs1_release.dat: -------------------------------------------------------------------------------- 1 | {"rebootscheduled" : 0} -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_iot_windowsupdate_status_IoTRaspberryPi3_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_iot_windowsupdate_status_IoTRaspberryPi3_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_networking_ipconfig_IoTDragonboard410c_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_networking_ipconfig_IoTDragonboard410c_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_networking_ipconfig_IoTMinnowboardMax_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_networking_ipconfig_IoTMinnowboardMax_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_networking_ipconfig_IoTRaspberryPi3_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_networking_ipconfig_IoTRaspberryPi3_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_os_devicefamily_IoTDragonboard410c_rs1_release.dat: -------------------------------------------------------------------------------- 1 | {"DeviceType" : "Windows.IoT"} -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_os_devicefamily_IoTMinnowboardMax_rs1_release.dat: -------------------------------------------------------------------------------- 1 | {"DeviceType" : "Windows.IoT"} -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_os_devicefamily_IoTRaspberryPi3_rs1_release.dat: -------------------------------------------------------------------------------- 1 | {"DeviceType" : "Windows.IoT"} -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_os_info_IoTDragonboard410c_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_os_info_IoTDragonboard410c_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_os_info_IoTMinnowboardMax_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_os_info_IoTMinnowboardMax_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_os_info_IoTRaspberryPi3_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_os_info_IoTRaspberryPi3_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_os_machinename_IoTDragonboard410c_rs1_release.dat: -------------------------------------------------------------------------------- 1 | {"ComputerName" : "mydb410"} -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_os_machinename_IoTMinnowboardMax_rs1_release.dat: -------------------------------------------------------------------------------- 1 | {"ComputerName" : "mymbm"} -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_os_machinename_IoTRaspberryPi3_rs1_release.dat: -------------------------------------------------------------------------------- 1 | {"ComputerName" : "myrpi3"} -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_power_battery_IoTDragonboard410c_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_power_battery_IoTDragonboard410c_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_power_battery_IoTMinnowboardMax_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_power_battery_IoTMinnowboardMax_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_power_battery_IoTRaspberryPi3_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_power_battery_IoTRaspberryPi3_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_power_state_IoTDragonboard410c_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_power_state_IoTDragonboard410c_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_power_state_IoTMinnowboardMax_rs1_release.dat: -------------------------------------------------------------------------------- 1 | {"LowPowerStateAvailable" : false} -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_power_state_IoTRaspberryPi3_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_power_state_IoTRaspberryPi3_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_resourcemanager_processes_IoTDragonboard410c_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_resourcemanager_processes_IoTDragonboard410c_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_resourcemanager_processes_IoTMinnowboardMax_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_resourcemanager_processes_IoTMinnowboardMax_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_resourcemanager_processes_IoTRaspberryPi3_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_resourcemanager_processes_IoTRaspberryPi3_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_resourcemanager_systemperf_IoTDragonboard410c_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_resourcemanager_systemperf_IoTDragonboard410c_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_resourcemanager_systemperf_IoTMinnowboardMax_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_resourcemanager_systemperf_IoTMinnowboardMax_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_resourcemanager_systemperf_IoTRaspberryPi3_rs1_release.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/IoT/rs1_release/api_resourcemanager_systemperf_IoTRaspberryPi3_rs1_release.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/ReadMe.txt -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/XboxOne/rs1_xbox_rel_1608/WebSocket_api_resourcemanager_processes_XboxOne_rs1_xbox_rel_1608.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/XboxOne/rs1_xbox_rel_1608/WebSocket_api_resourcemanager_processes_XboxOne_rs1_xbox_rel_1608.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/XboxOne/rs1_xbox_rel_1608/WebSocket_api_resourcemanager_systemperf_XboxOne_rs1_xbox_rel_1608.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/XboxOne/rs1_xbox_rel_1608/WebSocket_api_resourcemanager_systemperf_XboxOne_rs1_xbox_rel_1608.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/XboxOne/rs1_xbox_rel_1608/api_filesystem_apps_files_XboxOne_rs1_xbox_rel_1608.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/XboxOne/rs1_xbox_rel_1608/api_filesystem_apps_files_XboxOne_rs1_xbox_rel_1608.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/XboxOne/rs1_xbox_rel_1608/api_filesystem_apps_knownfolders_XboxOne_rs1_xbox_rel_1608.dat: -------------------------------------------------------------------------------- 1 | {"KnownFolders" : ["DevelopmentFiles","LocalAppData"]} -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/XboxOne/rs1_xbox_rel_1608/api_os_devicefamily_XboxOne_rs1_xbox_rel_1608.dat: -------------------------------------------------------------------------------- 1 | {"DeviceType" : "Windows.Xbox"} -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/XboxOne/rs1_xbox_rel_1608/api_os_info_XboxOne_rs1_xbox_rel_1608.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/XboxOne/rs1_xbox_rel_1608/api_os_info_XboxOne_rs1_xbox_rel_1608.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/XboxOne/rs1_xbox_rel_1608/api_os_machinename_XboxOne_rs1_xbox_rel_1608.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/XboxOne/rs1_xbox_rel_1608/api_os_machinename_XboxOne_rs1_xbox_rel_1608.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/XboxOne/rs1_xbox_rel_1608/api_resourcemanager_processes_XboxOne_rs1_xbox_rel_1608.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/XboxOne/rs1_xbox_rel_1608/api_resourcemanager_processes_XboxOne_rs1_xbox_rel_1608.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/XboxOne/rs1_xbox_rel_1608/api_resourcemanager_systemperf_XboxOne_rs1_xbox_rel_1608.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/XboxOne/rs1_xbox_rel_1608/api_resourcemanager_systemperf_XboxOne_rs1_xbox_rel_1608.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/XboxOne/rs1_xbox_rel_1608/ext_settings_XboxOne_rs1_xbox_rel_1608.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/XboxOne/rs1_xbox_rel_1608/ext_settings_XboxOne_rs1_xbox_rel_1608.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/XboxOne/rs1_xbox_rel_1608/ext_user_XboxOne_rs1_xbox_rel_1608.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/XboxOne/rs1_xbox_rel_1608/ext_user_XboxOne_rs1_xbox_rel_1608.dat -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/XboxOne/rs1_xbox_rel_1608/ext_xboxlive_sandbox_XboxOne_rs1_xbox_rel_1608.dat: -------------------------------------------------------------------------------- 1 | {"Sandbox" : "XDKS.1"} -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockData/XboxOne/rs1_xbox_rel_1608/xbox_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockData/XboxOne/rs1_xbox_rel_1608/xbox_screenshot.png -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/MockHttpResponder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/MockHttpResponder.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/Settings.StyleCop -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/TestHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/TestHelpers.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/UnitTestProject.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/UnitTestProject.csproj -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/WDPMockImplementations/AppDeployment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/WDPMockImplementations/AppDeployment.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/WDPMockImplementations/CertificateHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/WDPMockImplementations/CertificateHandling.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/WDPMockImplementations/MockDevicePortalConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/WDPMockImplementations/MockDevicePortalConnection.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/WDPMockImplementations/RestDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/WDPMockImplementations/RestDelete.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/WDPMockImplementations/RestGet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/WDPMockImplementations/RestGet.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/WDPMockImplementations/RestPost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/WDPMockImplementations/RestPost.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/WDPMockImplementations/RestPut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/WDPMockImplementations/RestPut.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/UnitTestProject/WDPMockImplementations/WebSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/UnitTestProject/WDPMockImplementations/WebSocket.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/Utilities/WindowsDevicePortalWrapper.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/Utilities/WindowsDevicePortalWrapper.nuspec -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/Utilities/signConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/Utilities/signConfig.xml -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Core/AppCrashDumpCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Core/AppCrashDumpCollection.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Core/AppDeployment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Core/AppDeployment.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Core/AppFileExplorer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Core/AppFileExplorer.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Core/DeviceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Core/DeviceManager.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Core/Dns-Sd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Core/Dns-Sd.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Core/DumpCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Core/DumpCollection.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Core/Etw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Core/Etw.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Core/Networking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Core/Networking.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Core/OsInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Core/OsInformation.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Core/PerformanceData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Core/PerformanceData.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Core/Power.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Core/Power.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Core/RemoteControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Core/RemoteControl.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Core/ResourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Core/ResourceManager.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Core/TaskManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Core/TaskManager.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Core/WiFiManagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Core/WiFiManagement.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Core/WindowsErrorReporting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Core/WindowsErrorReporting.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Core/WindowsPerformanceRecorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Core/WindowsPerformanceRecorder.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/DevicePortal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/DevicePortal.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Events/ApplicationInstallStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Events/ApplicationInstallStatus.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Events/ConnectionStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Events/ConnectionStatus.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Events/WebSocketMessageReceivedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Events/WebSocketMessageReceivedEventArgs.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Exceptions/DevicePortalException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Exceptions/DevicePortalException.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/HoloLens/HolographicOs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/HoloLens/HolographicOs.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/HoloLens/HolographicPerception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/HoloLens/HolographicPerception.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/HoloLens/HolographicThermal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/HoloLens/HolographicThermal.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/HoloLens/MixedRealityCapture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/HoloLens/MixedRealityCapture.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/HoloLens/PerceptionSimulationPlayback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/HoloLens/PerceptionSimulationPlayback.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/HoloLens/PerceptionSimulationRecording.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/HoloLens/PerceptionSimulationRecording.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/HttpRest/HttpHeadersHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/HttpRest/HttpHeadersHelper.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/HttpRest/RequestHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/HttpRest/RequestHelpers.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/HttpRest/ResponseHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/HttpRest/ResponseHelpers.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/HttpRest/RestDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/HttpRest/RestDelete.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/HttpRest/RestGet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/HttpRest/RestGet.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/HttpRest/RestPost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/HttpRest/RestPost.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/HttpRest/RestPut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/HttpRest/RestPut.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/HttpRest/WebSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/HttpRest/WebSocket.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Interfaces/IDevicePortalConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Interfaces/IDevicePortalConnection.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/IoT/ApplicationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/IoT/ApplicationManager.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/IoT/AudioDevices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/IoT/AudioDevices.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/IoT/BluetoothConnectivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/IoT/BluetoothConnectivity.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/IoT/DeviceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/IoT/DeviceInfo.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/IoT/IcsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/IoT/IcsManager.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/IoT/IoTOnboarding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/IoT/IoTOnboarding.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/IoT/Limpet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/IoT/Limpet.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/IoT/ProcessManagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/IoT/ProcessManagement.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/IoT/RemoteSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/IoT/RemoteSettings.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/IoT/WindowsUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/IoT/WindowsUpdate.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Settings.StyleCop: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Utilities.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/WindowsDevicePortalWrapper.Shared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/WindowsDevicePortalWrapper.Shared.projitems -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/WindowsDevicePortalWrapper.Shared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/WindowsDevicePortalWrapper.Shared.shproj -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Xbox/FiddlerSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Xbox/FiddlerSetup.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Xbox/SmbShare.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Xbox/SmbShare.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Xbox/UserManagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Xbox/UserManagement.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Xbox/XboxAppDeployment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Xbox/XboxAppDeployment.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Xbox/XboxLiveSandbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Xbox/XboxLiveSandbox.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Xbox/XboxMediaCapture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Xbox/XboxMediaCapture.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Xbox/XboxSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/Xbox/XboxSettings.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.UniversalWindows/CertificateHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.UniversalWindows/CertificateHandling.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.UniversalWindows/Core/AppDeployment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.UniversalWindows/Core/AppDeployment.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.UniversalWindows/DefaultDevicePortalConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.UniversalWindows/DefaultDevicePortalConnection.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.UniversalWindows/DevicePortalWrapperUniversal.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.UniversalWindows/DevicePortalWrapperUniversal.snk -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.UniversalWindows/HttpRest/HttpMultipartFileContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.UniversalWindows/HttpRest/HttpMultipartFileContent.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.UniversalWindows/HttpRest/RequestHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.UniversalWindows/HttpRest/RequestHelpers.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.UniversalWindows/HttpRest/RestDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.UniversalWindows/HttpRest/RestDelete.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.UniversalWindows/HttpRest/RestGet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.UniversalWindows/HttpRest/RestGet.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.UniversalWindows/HttpRest/RestPost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.UniversalWindows/HttpRest/RestPost.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.UniversalWindows/HttpRest/RestPut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.UniversalWindows/HttpRest/RestPut.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.UniversalWindows/HttpRest/WebSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.UniversalWindows/HttpRest/WebSocket.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.UniversalWindows/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.UniversalWindows/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.UniversalWindows/Properties/WindowsDevicePortalWrapper.UniversalWindows.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.UniversalWindows/Properties/WindowsDevicePortalWrapper.UniversalWindows.rd.xml -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.UniversalWindows/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.UniversalWindows/Settings.StyleCop -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.UniversalWindows/WindowsDevicePortalWrapper.UniversalWindows.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.UniversalWindows/WindowsDevicePortalWrapper.UniversalWindows.csproj -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.UniversalWindows/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.UniversalWindows/project.json -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.sln -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper/CertificateHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper/CertificateHandling.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper/Core/AppDeployment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper/Core/AppDeployment.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper/DefaultDevicePortalConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper/DefaultDevicePortalConnection.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper/DevicePortalWrapperNet.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper/DevicePortalWrapperNet.snk -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper/Events/UnvalidatedCert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper/Events/UnvalidatedCert.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper/HttpRest/HttpMultipartFileContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper/HttpRest/HttpMultipartFileContent.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper/HttpRest/RestDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper/HttpRest/RestDelete.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper/HttpRest/RestGet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper/HttpRest/RestGet.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper/HttpRest/RestPost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper/HttpRest/RestPost.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper/HttpRest/RestPut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper/HttpRest/RestPut.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper/HttpRest/WebSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper/HttpRest/WebSocket.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper/Settings.StyleCop -------------------------------------------------------------------------------- /WindowsDevicePortalWrapper/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.csproj -------------------------------------------------------------------------------- /XboxWDPDriver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsDevicePortalWrapper/HEAD/XboxWDPDriver.md --------------------------------------------------------------------------------