├── .gitignore ├── LICENSE ├── README.md ├── Shield.Communication ├── ApplicationInsights.config ├── Connection.cs ├── Connections.cs ├── Destinations │ ├── AzureBlob.cs │ ├── BlobHelper.cs │ └── RESTHelper.cs ├── IDestination.cs ├── Properties │ └── AssemblyInfo.cs ├── Services │ ├── Bluetooth.cs │ ├── RemotePeer.cs │ ├── ServerClient.cs │ ├── ServiceBase.cs │ ├── USB.cs │ └── Wifi.cs ├── Shield.Communication.csproj └── project.json ├── Shield.Core ├── ApplicationInsights.config ├── ConversionHelper.cs ├── Manager.cs ├── MessageFactory.cs ├── Models │ ├── CameraMessage.cs │ ├── DeviceMessage.cs │ ├── DeviceResultMessage.cs │ ├── EmailMessage.cs │ ├── IAddressable.cs │ ├── MessageBase.cs │ ├── NotifyMessage.cs │ ├── NotifyResultMessage.cs │ ├── ResultMessage.cs │ ├── ScreenMessage.cs │ ├── ScreenResultMessage.cs │ ├── SensorMessage.cs │ ├── ServiceMessage.cs │ ├── SmsMessage.cs │ ├── SpeechMessage.cs │ ├── SpeechRecognitionMessage.cs │ ├── SpeechResultMessage.cs │ ├── SystemResultMessage.cs │ ├── TimingMessage.cs │ └── WebMessage.cs ├── Properties │ └── AssemblyInfo.cs ├── SensorSwitches.cs ├── Service.cs ├── Shield.Core.csproj ├── StringHelper.cs ├── UnsupportedSensorException.cs └── project.json ├── Shield.sln └── Shield ├── App.xaml ├── App.xaml.cs ├── AppSettings.cs ├── ApplicationInsights.config ├── Assets ├── Logo.scale-100.png ├── ShieldsLogo1.png ├── ShieldsWelcome.png ├── ShieldsWelcome.xcf ├── SmallLogo.scale-100-old.png ├── SmallLogo.scale-100.png ├── SplashScreen.scale-100-old.png ├── SplashScreen.scale-100.png ├── StoreLogo.scale-100.png ├── WideLogo.scale-100.png ├── close.png ├── control.png ├── down.png ├── en-US │ ├── Logo.scale-100.png │ ├── SmallLogo.scale-100.png │ ├── SplashScreen.scale-100.png │ ├── StoreLogo.scale-100.png │ └── WideLogo.scale-100.png ├── fullscreen.png ├── left.png ├── leftcircle.png ├── mic.png ├── refresh.png ├── right.png ├── settings.png └── up.png ├── BoolToVisConverter.cs ├── BundleArtifacts └── neutral.txt ├── GrammarConstraintTemplate.grxml ├── MainPage.xaml ├── MainPage.xaml.cs ├── MainPageHandleMessage.cs ├── Manager.cs ├── MessageFactory.cs ├── Package.StoreAssociation.xml ├── Package.appxmanifest ├── Parser.cs ├── Properties ├── AssemblyInfo.cs └── Default.rd.xml ├── Service References └── Application Insights │ └── ConnectedService.json ├── Services ├── Audio.cs ├── Bluetooth.cs ├── Camera.cs ├── Screen.cs ├── Sensors.cs ├── Sms.cs ├── Speech.cs └── Web.cs ├── SettingsPage.xaml ├── SettingsPage.xaml.cs ├── Shield.csproj ├── Strings ├── en-US │ └── Resources.resw └── fr-fr ├── UwpDeviceTelemetryInitializer.cs ├── ViewModels ├── MainViewModel.cs └── ViewModelLocator.cs ├── project.json └── vcd.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/README.md -------------------------------------------------------------------------------- /Shield.Communication/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Communication/ApplicationInsights.config -------------------------------------------------------------------------------- /Shield.Communication/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Communication/Connection.cs -------------------------------------------------------------------------------- /Shield.Communication/Connections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Communication/Connections.cs -------------------------------------------------------------------------------- /Shield.Communication/Destinations/AzureBlob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Communication/Destinations/AzureBlob.cs -------------------------------------------------------------------------------- /Shield.Communication/Destinations/BlobHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Communication/Destinations/BlobHelper.cs -------------------------------------------------------------------------------- /Shield.Communication/Destinations/RESTHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Communication/Destinations/RESTHelper.cs -------------------------------------------------------------------------------- /Shield.Communication/IDestination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Communication/IDestination.cs -------------------------------------------------------------------------------- /Shield.Communication/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Communication/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Shield.Communication/Services/Bluetooth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Communication/Services/Bluetooth.cs -------------------------------------------------------------------------------- /Shield.Communication/Services/RemotePeer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Communication/Services/RemotePeer.cs -------------------------------------------------------------------------------- /Shield.Communication/Services/ServerClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Communication/Services/ServerClient.cs -------------------------------------------------------------------------------- /Shield.Communication/Services/ServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Communication/Services/ServiceBase.cs -------------------------------------------------------------------------------- /Shield.Communication/Services/USB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Communication/Services/USB.cs -------------------------------------------------------------------------------- /Shield.Communication/Services/Wifi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Communication/Services/Wifi.cs -------------------------------------------------------------------------------- /Shield.Communication/Shield.Communication.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Communication/Shield.Communication.csproj -------------------------------------------------------------------------------- /Shield.Communication/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Communication/project.json -------------------------------------------------------------------------------- /Shield.Core/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Core/ApplicationInsights.config -------------------------------------------------------------------------------- /Shield.Core/ConversionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Core/ConversionHelper.cs -------------------------------------------------------------------------------- /Shield.Core/Manager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Core/Manager.cs -------------------------------------------------------------------------------- /Shield.Core/MessageFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Core/MessageFactory.cs -------------------------------------------------------------------------------- /Shield.Core/Models/CameraMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Core/Models/CameraMessage.cs -------------------------------------------------------------------------------- /Shield.Core/Models/DeviceMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Core/Models/DeviceMessage.cs -------------------------------------------------------------------------------- /Shield.Core/Models/DeviceResultMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Core/Models/DeviceResultMessage.cs -------------------------------------------------------------------------------- /Shield.Core/Models/EmailMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Core/Models/EmailMessage.cs -------------------------------------------------------------------------------- /Shield.Core/Models/IAddressable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Core/Models/IAddressable.cs -------------------------------------------------------------------------------- /Shield.Core/Models/MessageBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Core/Models/MessageBase.cs -------------------------------------------------------------------------------- /Shield.Core/Models/NotifyMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Core/Models/NotifyMessage.cs -------------------------------------------------------------------------------- /Shield.Core/Models/NotifyResultMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Core/Models/NotifyResultMessage.cs -------------------------------------------------------------------------------- /Shield.Core/Models/ResultMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Core/Models/ResultMessage.cs -------------------------------------------------------------------------------- /Shield.Core/Models/ScreenMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Core/Models/ScreenMessage.cs -------------------------------------------------------------------------------- /Shield.Core/Models/ScreenResultMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Core/Models/ScreenResultMessage.cs -------------------------------------------------------------------------------- /Shield.Core/Models/SensorMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Core/Models/SensorMessage.cs -------------------------------------------------------------------------------- /Shield.Core/Models/ServiceMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Core/Models/ServiceMessage.cs -------------------------------------------------------------------------------- /Shield.Core/Models/SmsMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Core/Models/SmsMessage.cs -------------------------------------------------------------------------------- /Shield.Core/Models/SpeechMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Core/Models/SpeechMessage.cs -------------------------------------------------------------------------------- /Shield.Core/Models/SpeechRecognitionMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Core/Models/SpeechRecognitionMessage.cs -------------------------------------------------------------------------------- /Shield.Core/Models/SpeechResultMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Core/Models/SpeechResultMessage.cs -------------------------------------------------------------------------------- /Shield.Core/Models/SystemResultMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Core/Models/SystemResultMessage.cs -------------------------------------------------------------------------------- /Shield.Core/Models/TimingMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Core/Models/TimingMessage.cs -------------------------------------------------------------------------------- /Shield.Core/Models/WebMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Core/Models/WebMessage.cs -------------------------------------------------------------------------------- /Shield.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Shield.Core/SensorSwitches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Core/SensorSwitches.cs -------------------------------------------------------------------------------- /Shield.Core/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Core/Service.cs -------------------------------------------------------------------------------- /Shield.Core/Shield.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Core/Shield.Core.csproj -------------------------------------------------------------------------------- /Shield.Core/StringHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Core/StringHelper.cs -------------------------------------------------------------------------------- /Shield.Core/UnsupportedSensorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Core/UnsupportedSensorException.cs -------------------------------------------------------------------------------- /Shield.Core/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.Core/project.json -------------------------------------------------------------------------------- /Shield.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield.sln -------------------------------------------------------------------------------- /Shield/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/App.xaml -------------------------------------------------------------------------------- /Shield/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/App.xaml.cs -------------------------------------------------------------------------------- /Shield/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/AppSettings.cs -------------------------------------------------------------------------------- /Shield/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/ApplicationInsights.config -------------------------------------------------------------------------------- /Shield/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /Shield/Assets/ShieldsLogo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Assets/ShieldsLogo1.png -------------------------------------------------------------------------------- /Shield/Assets/ShieldsWelcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Assets/ShieldsWelcome.png -------------------------------------------------------------------------------- /Shield/Assets/ShieldsWelcome.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Assets/ShieldsWelcome.xcf -------------------------------------------------------------------------------- /Shield/Assets/SmallLogo.scale-100-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Assets/SmallLogo.scale-100-old.png -------------------------------------------------------------------------------- /Shield/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /Shield/Assets/SplashScreen.scale-100-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Assets/SplashScreen.scale-100-old.png -------------------------------------------------------------------------------- /Shield/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /Shield/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /Shield/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /Shield/Assets/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Assets/close.png -------------------------------------------------------------------------------- /Shield/Assets/control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Assets/control.png -------------------------------------------------------------------------------- /Shield/Assets/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Assets/down.png -------------------------------------------------------------------------------- /Shield/Assets/en-US/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Assets/en-US/Logo.scale-100.png -------------------------------------------------------------------------------- /Shield/Assets/en-US/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Assets/en-US/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /Shield/Assets/en-US/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Assets/en-US/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /Shield/Assets/en-US/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Assets/en-US/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /Shield/Assets/en-US/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Assets/en-US/WideLogo.scale-100.png -------------------------------------------------------------------------------- /Shield/Assets/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Assets/fullscreen.png -------------------------------------------------------------------------------- /Shield/Assets/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Assets/left.png -------------------------------------------------------------------------------- /Shield/Assets/leftcircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Assets/leftcircle.png -------------------------------------------------------------------------------- /Shield/Assets/mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Assets/mic.png -------------------------------------------------------------------------------- /Shield/Assets/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Assets/refresh.png -------------------------------------------------------------------------------- /Shield/Assets/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Assets/right.png -------------------------------------------------------------------------------- /Shield/Assets/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Assets/settings.png -------------------------------------------------------------------------------- /Shield/Assets/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Assets/up.png -------------------------------------------------------------------------------- /Shield/BoolToVisConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/BoolToVisConverter.cs -------------------------------------------------------------------------------- /Shield/BundleArtifacts/neutral.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/BundleArtifacts/neutral.txt -------------------------------------------------------------------------------- /Shield/GrammarConstraintTemplate.grxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/GrammarConstraintTemplate.grxml -------------------------------------------------------------------------------- /Shield/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/MainPage.xaml -------------------------------------------------------------------------------- /Shield/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/MainPage.xaml.cs -------------------------------------------------------------------------------- /Shield/MainPageHandleMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/MainPageHandleMessage.cs -------------------------------------------------------------------------------- /Shield/Manager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Manager.cs -------------------------------------------------------------------------------- /Shield/MessageFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/MessageFactory.cs -------------------------------------------------------------------------------- /Shield/Package.StoreAssociation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Package.StoreAssociation.xml -------------------------------------------------------------------------------- /Shield/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Package.appxmanifest -------------------------------------------------------------------------------- /Shield/Parser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Parser.cs -------------------------------------------------------------------------------- /Shield/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Shield/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Shield/Service References/Application Insights/ConnectedService.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Service References/Application Insights/ConnectedService.json -------------------------------------------------------------------------------- /Shield/Services/Audio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Services/Audio.cs -------------------------------------------------------------------------------- /Shield/Services/Bluetooth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Services/Bluetooth.cs -------------------------------------------------------------------------------- /Shield/Services/Camera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Services/Camera.cs -------------------------------------------------------------------------------- /Shield/Services/Screen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Services/Screen.cs -------------------------------------------------------------------------------- /Shield/Services/Sensors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Services/Sensors.cs -------------------------------------------------------------------------------- /Shield/Services/Sms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Services/Sms.cs -------------------------------------------------------------------------------- /Shield/Services/Speech.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Services/Speech.cs -------------------------------------------------------------------------------- /Shield/Services/Web.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Services/Web.cs -------------------------------------------------------------------------------- /Shield/SettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/SettingsPage.xaml -------------------------------------------------------------------------------- /Shield/SettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/SettingsPage.xaml.cs -------------------------------------------------------------------------------- /Shield/Shield.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Shield.csproj -------------------------------------------------------------------------------- /Shield/Strings/en-US/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Strings/en-US/Resources.resw -------------------------------------------------------------------------------- /Shield/Strings/fr-fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/Strings/fr-fr -------------------------------------------------------------------------------- /Shield/UwpDeviceTelemetryInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/UwpDeviceTelemetryInitializer.cs -------------------------------------------------------------------------------- /Shield/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /Shield/ViewModels/ViewModelLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/ViewModels/ViewModelLocator.cs -------------------------------------------------------------------------------- /Shield/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/project.json -------------------------------------------------------------------------------- /Shield/vcd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/virtual-shields-universal/HEAD/Shield/vcd.xml --------------------------------------------------------------------------------