├── .gitattributes ├── .gitignore ├── AccelMobileClient ├── AccelMobileClient.sln ├── AccelMobileClient │ ├── AccelMobileClient.Android │ │ ├── AccelMobileClient.Android.csproj │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.Designer.cs │ │ │ ├── drawable-hdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-xxhdpi │ │ │ │ └── icon.png │ │ │ ├── drawable │ │ │ │ └── icon.png │ │ │ ├── layout │ │ │ │ ├── Tabbar.axml │ │ │ │ └── Toolbar.axml │ │ │ └── values │ │ │ │ └── styles.xml │ │ ├── app.config │ │ └── packages.config │ ├── AccelMobileClient.UWP │ │ ├── AccelMobileClient.UWP.csproj │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── LockScreenLogo.scale-100.png │ │ │ ├── LockScreenLogo.scale-125.png │ │ │ ├── LockScreenLogo.scale-150.png │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── LockScreenLogo.scale-400.png │ │ │ ├── SplashScreen.scale-100.png │ │ │ ├── SplashScreen.scale-125.png │ │ │ ├── SplashScreen.scale-150.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── SplashScreen.scale-400.png │ │ │ ├── Square150x150Logo.scale-100.png │ │ │ ├── Square150x150Logo.scale-125.png │ │ │ ├── Square150x150Logo.scale-150.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square150x150Logo.scale-400.png │ │ │ ├── Square44x44Logo.scale-100.png │ │ │ ├── Square44x44Logo.scale-125.png │ │ │ ├── Square44x44Logo.scale-150.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-400.png │ │ │ ├── Square44x44Logo.targetsize-16_altform-unplated.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── Square44x44Logo.targetsize-256_altform-unplated.png │ │ │ ├── Square44x44Logo.targetsize-32_altform-unplated.png │ │ │ ├── Square44x44Logo.targetsize-48_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ ├── Wide310x150Logo.scale-100.png │ │ │ ├── Wide310x150Logo.scale-125.png │ │ │ ├── Wide310x150Logo.scale-150.png │ │ │ ├── Wide310x150Logo.scale-200.png │ │ │ └── Wide310x150Logo.scale-400.png │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ └── project.json │ ├── AccelMobileClient.iOS │ │ ├── AccelMobileClient.iOS.csproj │ │ ├── AppDelegate.cs │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default-Portrait@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-76@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small-40@3x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon-Small@3x.png │ │ │ └── LaunchScreen.storyboard │ │ ├── app.config │ │ ├── iTunesArtwork │ │ ├── iTunesArtwork@2x │ │ └── packages.config │ ├── AccelMobileClient │ │ ├── AccelMobileClient.csproj │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── DeviceManager.cs │ │ ├── Images │ │ │ ├── Console.png │ │ │ ├── Desktop.png │ │ │ ├── IoT.png │ │ │ └── Mobile.png │ │ ├── Models │ │ │ ├── DeviceData.cs │ │ │ └── DeviceStatus.cs │ │ ├── Pages │ │ │ ├── DeviceDetail.xaml │ │ │ ├── DeviceDetail.xaml.cs │ │ │ ├── DeviceDetailMobile.xaml │ │ │ ├── DeviceDetailMobile.xaml.cs │ │ │ ├── DevicesMaster.xaml │ │ │ ├── DevicesMaster.xaml.cs │ │ │ ├── DevicesMasterDetail.xaml │ │ │ ├── DevicesMasterDetail.xaml.cs │ │ │ ├── RealTime.xaml │ │ │ └── RealTime.xaml.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SignalR │ │ │ ├── AzureIoTHubConfig.cs │ │ │ └── CommonSensorConfig.cs │ │ ├── ViewModels │ │ │ └── DeviceDetailViewModel.cs │ │ ├── app.config │ │ └── packages.config │ └── AccelerationAndGyro │ │ ├── AccelerationAndGyro.csproj │ │ ├── AccelerationAndGyroModel.cs │ │ ├── FakeSensor │ │ ├── FakeAccelerometerAndGyro.cs │ │ └── SampleData.txt │ │ ├── HandleAccelAndGyroPushToAzure.cs │ │ ├── IAccelerationAndGyroSensor.cs │ │ ├── RotationAngles.cs │ │ └── VirtualAccelerationAndGyroSensorFromAzure.cs └── AccelerationAndGyroPortable │ ├── AccelerationAndGyroModel.cs │ ├── AccelerationAndGyroPortable.csproj │ ├── FakeSensor │ ├── FakeAccelerometerAndGyro.cs │ └── SampleData.txt │ ├── HandleAccelAndGyroPushToAzure.cs │ ├── IAccelerationAndGyroSensor.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── RotationAngles.cs │ ├── VirtualAccelerationAndGyroSensorFromAzure.cs │ ├── app.config │ └── packages.config ├── AndroidThings └── BlinkThings │ ├── BlinkThings.sln │ └── BlinkThings │ ├── Assets │ └── AboutAssets.txt │ ├── BlinkThings.csproj │ ├── GettingStarted.Xamarin │ ├── MainActivity.cs │ ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs │ ├── Resources │ ├── AboutResources.txt │ ├── Resource.Designer.cs │ ├── layout │ │ └── Main.axml │ └── values │ │ └── Strings.xml │ └── packages.config ├── IoTDevices ├── AndroidDevice │ ├── AndroidDevice.csproj │ ├── Assets │ │ └── AboutAssets.txt │ ├── GettingStarted.Xamarin │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.Designer.cs │ │ ├── drawable │ │ │ └── Icon.png │ │ ├── layout │ │ │ └── Main.axml │ │ └── values │ │ │ └── Strings.xml │ ├── app.config │ └── packages.config ├── AndroidThingsDevice │ ├── AndroidThingsDevice.csproj │ ├── Assets │ │ └── AboutAssets.txt │ ├── GettingStarted.Xamarin │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.Designer.cs │ │ ├── drawable │ │ │ └── Icon.png │ │ ├── layout │ │ │ └── Main.axml │ │ └── values │ │ │ └── Strings.xml │ ├── app.config │ └── packages.config ├── ConsoleDevice │ ├── App.config │ ├── ConsoleDevice.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── ConsoleMessageMonitor │ ├── App.config │ ├── ConsoleMessageMonitor.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── ConsoleMessageMonitorSimple │ ├── App.config │ ├── ConsoleMessageMonitorSimple.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── IoTDevices.sln ├── IoTDevicesShared │ ├── DeviceToCloud.cs │ ├── IoTDevicesShared.projitems │ ├── IoTDevicesShared.shproj │ └── Models │ │ └── SensorData.cs ├── UWPDevice │ ├── 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 │ └── UWPDevice.csproj └── UWPIoTDevice │ ├── 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 │ ├── MPU6050.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml │ └── UWPIoTDevice.csproj ├── LICENSE ├── README.md ├── Radio ├── .gitattributes ├── .gitignore ├── Radio.sln ├── Radio │ ├── Radio.Droid │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── GradientEffectDroid.cs │ │ ├── MainActivity.cs │ │ ├── PlatformFileHelper.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Radio.Droid.csproj │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.Designer.cs │ │ │ ├── drawable-hdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-xxhdpi │ │ │ │ └── icon.png │ │ │ └── drawable │ │ │ │ └── icon.png │ │ └── packages.config │ ├── Radio.UWP │ │ ├── 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 │ │ ├── GradientEffectWindows.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── PlatformFileHelper.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── Radio.UWP.csproj │ │ └── project.json │ ├── Radio.iOS │ │ ├── AppDelegate.cs │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-57x57@1x.png │ │ │ │ ├── Icon-App-60x60@1x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ ├── Icon-App-76x76@3x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ ├── DisabledOpacityEffectIOS.cs │ │ ├── Entitlements.plist │ │ ├── GradientEffectIOS.cs │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── PlatformFileHelper.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Radio.iOS.csproj │ │ ├── Resources │ │ │ └── LaunchScreen.storyboard │ │ ├── iTunesArtwork │ │ ├── iTunesArtwork@2x │ │ └── packages.config │ ├── Radio.macOS │ │ ├── AppDelegate.cs │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── AppIcon-128.png │ │ │ │ ├── AppIcon-128@2x.png │ │ │ │ ├── AppIcon-16.png │ │ │ │ ├── AppIcon-16@2x.png │ │ │ │ ├── AppIcon-256.png │ │ │ │ ├── AppIcon-256@2x.png │ │ │ │ ├── AppIcon-32.png │ │ │ │ ├── AppIcon-32@2x.png │ │ │ │ ├── AppIcon-512.png │ │ │ │ ├── AppIcon-512@2x.png │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Entitlements.plist │ │ ├── GradientEffectMac.cs │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Radio.macOS.csproj │ │ ├── ViewController.cs │ │ ├── ViewController.designer.cs │ │ └── packages.config │ └── Radio │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Audio │ │ └── click.mp3 │ │ ├── Data │ │ ├── AdvancedQuestions.json │ │ ├── BasicQuestions.json │ │ ├── QuestionsAdvanced.txt │ │ └── QuestionsBasic.txt │ │ ├── DisabledOpacityEffect.cs │ │ ├── Game │ │ ├── Game.cs │ │ ├── GameManager.cs │ │ ├── HamQuestionParser.cs │ │ └── QuizQuestion.cs │ │ ├── GradientEffect.cs │ │ ├── IFileHelper.cs │ │ ├── Images │ │ └── background.jpg │ │ ├── NavigationService.cs │ │ ├── Pages │ │ ├── HomePage.cs │ │ ├── LessonsPage.xaml │ │ ├── LessonsPage.xaml.cs │ │ ├── QuestionPage.xaml │ │ ├── QuestionPage.xaml.cs │ │ ├── ReviewPage.xaml │ │ └── ReviewPage.xaml.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── QuizQuestionXmlSerializer.cs │ │ ├── Radio.csproj │ │ ├── ViewModels │ │ ├── LessonsPageViewModel.cs │ │ ├── QuestionPageViewModel.cs │ │ ├── QuizQuestionViewModel.cs │ │ └── ReviewPageViewModel.cs │ │ └── packages.config └── background.jpg ├── SayHelloXF ├── SayHelloXF.sln └── SayHelloXF │ ├── SayHelloXF.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.Designer.cs │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ ├── drawable │ │ │ └── icon.png │ │ ├── layout │ │ │ ├── Tabbar.axml │ │ │ └── Toolbar.axml │ │ └── values │ │ │ └── styles.xml │ ├── SayHelloXF.Android.csproj │ ├── TextToSpeechService.Android.cs │ └── packages.config │ ├── SayHelloXF.UWP │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── LockScreenLogo.scale-100.png │ │ ├── LockScreenLogo.scale-125.png │ │ ├── LockScreenLogo.scale-150.png │ │ ├── LockScreenLogo.scale-200.png │ │ ├── LockScreenLogo.scale-400.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-125.png │ │ ├── SplashScreen.scale-150.png │ │ ├── SplashScreen.scale-200.png │ │ ├── SplashScreen.scale-400.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-125.png │ │ ├── Square150x150Logo.scale-150.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-125.png │ │ ├── Square44x44Logo.scale-150.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.targetsize-16_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-256_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-32_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-48_altform-unplated.png │ │ ├── StoreLogo.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-125.png │ │ ├── Wide310x150Logo.scale-150.png │ │ ├── Wide310x150Logo.scale-200.png │ │ └── Wide310x150Logo.scale-400.png │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── SayHelloXF.UWP.csproj │ ├── TextToSpeechService.Win.cs │ └── project.json │ ├── SayHelloXF.iOS │ ├── AppDelegate.cs │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-60@3x.png │ │ ├── Icon-76.png │ │ ├── Icon-76@2x.png │ │ ├── Icon-Small-40.png │ │ ├── Icon-Small-40@2x.png │ │ ├── Icon-Small-40@3x.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon-Small@3x.png │ │ └── LaunchScreen.storyboard │ ├── SayHelloXF.iOS.csproj │ ├── TextToSpeechService.iOS.cs │ ├── iTunesArtwork │ ├── iTunesArtwork@2x │ └── packages.config │ └── SayHelloXF │ ├── App.xaml │ ├── App.xaml.cs │ ├── ITextToSpeech.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── SayHelloXF.csproj │ ├── packages.config │ └── sayhello.png ├── TheRightDrawerStuff ├── TheRightDrawerStuff.XF │ ├── HistoricalPage.xaml │ ├── HistoricalPage.xaml.cs │ ├── RealTimePage.xaml │ ├── RealTimePage.xaml.cs │ └── TheRightDrawerStuff.XF.csproj ├── TheRightDrawerStuff.sln └── TheRightDrawerStuff │ ├── Assets │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs │ ├── Resources │ ├── AboutResources.txt │ ├── Resource.designer.cs │ ├── drawable-hdpi │ │ ├── ic_timeline_white_24dp.png │ │ └── ic_update_white_24dp.png │ ├── drawable-mdpi │ │ ├── ic_timeline_white_24dp.png │ │ └── ic_update_white_24dp.png │ ├── drawable-xhdpi │ │ ├── ic_timeline_white_24dp.png │ │ └── ic_update_white_24dp.png │ ├── drawable-xxhdpi │ │ ├── ic_timeline_white_24dp.png │ │ └── ic_update_white_24dp.png │ ├── drawable-xxxhdpi │ │ ├── ic_timeline_white_24dp.png │ │ └── ic_update_white_24dp.png │ ├── layout │ │ └── Main.axml │ ├── menu │ │ └── navigation_menu.xml │ ├── mipmap-hdpi │ │ └── Icon.png │ ├── mipmap-mdpi │ │ └── Icon.png │ ├── mipmap-xhdpi │ │ └── Icon.png │ ├── mipmap-xxhdpi │ │ └── Icon.png │ ├── mipmap-xxxhdpi │ │ └── Icon.png │ └── values │ │ └── Strings.xml │ ├── TheRightDrawerStuff.csproj │ ├── nuget_info.txt │ └── packages.config ├── UWPIoT Samples ├── UWPIoTBlink │ ├── BlinkTest │ │ ├── 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 │ │ └── UWPIoT_BlinkTest.csproj │ └── UWPBlinkTest.sln └── UWPIoTMPU6050 │ ├── Accel.sln │ └── Accel │ ├── Accel.csproj │ ├── 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 │ ├── MPU6050.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml │ └── SensorValue.cs ├── XamDraw ├── XFDraw.sln └── XFDraw │ ├── XFDraw.Droid │ ├── Assets │ │ └── AboutAssets.txt │ ├── HyperlinkLabelRenderer.Droid.cs │ ├── MainActivity.cs │ ├── PaintView.Droid.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.Designer.cs │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ ├── drawable │ │ │ ├── icon.png │ │ │ ├── pencil.png │ │ │ └── trash.png │ │ ├── layout │ │ │ ├── Tabbar.axml │ │ │ └── Toolbar.axml │ │ └── values │ │ │ └── styles.xml │ ├── SketchViewRenderer.Droid.cs │ ├── XFDraw.Droid.csproj │ └── packages.config │ ├── XFDraw.Shared │ ├── App.cs │ ├── HyperlinkLabel.cs │ ├── ISketchController.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── SharedUI.projitems │ ├── SketchView.cs │ ├── Views │ │ ├── ColorButton.cs │ │ ├── ColorPicker.cs │ │ ├── ColorPickerMouseOld.cs │ │ ├── ColorPickerMouseView.xaml │ │ ├── ColorPickerMouseView.xaml.cs │ │ ├── ColorPickerTouchView.xaml │ │ └── ColorPickerTouchView.xaml.cs │ └── XFDraw.shproj │ ├── XFDraw.UWP │ ├── 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 │ ├── HyperlinkLabelRenderer.UWP.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── PaintView.UWP.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── SketchViewRenderer.UWP.cs │ ├── XFDraw.UWP.csproj │ ├── pencil.png │ ├── project.json │ └── trash.png │ └── XFDraw.iOS │ ├── AppDelegate.cs │ ├── Entitlements.plist │ ├── HyperlinkLabelRenderer.iOS.cs │ ├── Info.plist │ ├── Main.cs │ ├── PaintView.iOS.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Resources │ ├── Default-568h@2x.png │ ├── Default-Portrait.png │ ├── Default-Portrait@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── Icon-60@2x.png │ ├── Icon-60@3x.png │ ├── Icon-76.png │ ├── Icon-76@2x.png │ ├── Icon-Small-40.png │ ├── Icon-Small-40@2x.png │ ├── Icon-Small-40@3x.png │ ├── Icon-Small.png │ ├── Icon-Small@2x.png │ ├── Icon-Small@3x.png │ ├── LaunchScreen.storyboard │ ├── pencil.png │ └── trash.png │ ├── SketchViewRenderer.iOS.cs │ ├── XFDraw.iOS.csproj │ ├── iTunesArtwork │ ├── iTunesArtwork@2x │ └── packages.config └── clean.bat /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/.gitignore -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient.sln -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.Android/AccelMobileClient.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.Android/AccelMobileClient.Android.csproj -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.Android/MainActivity.cs -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.Android/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.Android/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.Android/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.Android/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.Android/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.Android/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.Android/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.Android/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.Android/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.Android/Resources/drawable/icon.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.Android/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.Android/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.Android/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.Android/app.config -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.Android/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.Android/packages.config -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/AccelMobileClient.UWP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/AccelMobileClient.UWP.csproj -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/App.xaml -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/App.xaml.cs -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/LockScreenLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/LockScreenLogo.scale-100.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/LockScreenLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/LockScreenLogo.scale-125.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/LockScreenLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/LockScreenLogo.scale-150.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/LockScreenLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/LockScreenLogo.scale-400.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Square44x44Logo.targetsize-16_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Square44x44Logo.targetsize-16_altform-unplated.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Square44x44Logo.targetsize-256_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Square44x44Logo.targetsize-256_altform-unplated.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Square44x44Logo.targetsize-32_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Square44x44Logo.targetsize-32_altform-unplated.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Square44x44Logo.targetsize-48_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Square44x44Logo.targetsize-48_altform-unplated.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/MainPage.xaml -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/MainPage.xaml.cs -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Package.appxmanifest -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/Properties/Default.rd.xml -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.UWP/project.json -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/AccelMobileClient.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/AccelMobileClient.iOS.csproj -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Entitlements.plist -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Info.plist -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Main.cs -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Resources/Default.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Resources/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Resources/Icon-60@3x.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Resources/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Resources/Icon-76.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Resources/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Resources/Icon-76@2x.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Resources/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Resources/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Resources/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Resources/Icon-Small@3x.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/app.config -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/iTunesArtwork -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/iTunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/iTunesArtwork@2x -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient.iOS/packages.config -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient/AccelMobileClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient/AccelMobileClient.csproj -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient/App.xaml -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient/App.xaml.cs -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient/DeviceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient/DeviceManager.cs -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient/Images/Console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient/Images/Console.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient/Images/Desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient/Images/Desktop.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient/Images/IoT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient/Images/IoT.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient/Images/Mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient/Images/Mobile.png -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient/Models/DeviceData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient/Models/DeviceData.cs -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient/Models/DeviceStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient/Models/DeviceStatus.cs -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient/Pages/DeviceDetail.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient/Pages/DeviceDetail.xaml -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient/Pages/DeviceDetail.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient/Pages/DeviceDetail.xaml.cs -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient/Pages/DeviceDetailMobile.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient/Pages/DeviceDetailMobile.xaml -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient/Pages/DeviceDetailMobile.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient/Pages/DeviceDetailMobile.xaml.cs -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient/Pages/DevicesMaster.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient/Pages/DevicesMaster.xaml -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient/Pages/DevicesMaster.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient/Pages/DevicesMaster.xaml.cs -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient/Pages/DevicesMasterDetail.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient/Pages/DevicesMasterDetail.xaml -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient/Pages/DevicesMasterDetail.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient/Pages/DevicesMasterDetail.xaml.cs -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient/Pages/RealTime.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient/Pages/RealTime.xaml -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient/Pages/RealTime.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient/Pages/RealTime.xaml.cs -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient/SignalR/AzureIoTHubConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient/SignalR/AzureIoTHubConfig.cs -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient/SignalR/CommonSensorConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient/SignalR/CommonSensorConfig.cs -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient/ViewModels/DeviceDetailViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient/ViewModels/DeviceDetailViewModel.cs -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient/app.config -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelMobileClient/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelMobileClient/packages.config -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelerationAndGyro/AccelerationAndGyro.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelerationAndGyro/AccelerationAndGyro.csproj -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelerationAndGyro/AccelerationAndGyroModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelerationAndGyro/AccelerationAndGyroModel.cs -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelerationAndGyro/FakeSensor/FakeAccelerometerAndGyro.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelerationAndGyro/FakeSensor/FakeAccelerometerAndGyro.cs -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelerationAndGyro/FakeSensor/SampleData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelerationAndGyro/FakeSensor/SampleData.txt -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelerationAndGyro/HandleAccelAndGyroPushToAzure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelerationAndGyro/HandleAccelAndGyroPushToAzure.cs -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelerationAndGyro/IAccelerationAndGyroSensor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelerationAndGyro/IAccelerationAndGyroSensor.cs -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelerationAndGyro/RotationAngles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelerationAndGyro/RotationAngles.cs -------------------------------------------------------------------------------- /AccelMobileClient/AccelMobileClient/AccelerationAndGyro/VirtualAccelerationAndGyroSensorFromAzure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelMobileClient/AccelerationAndGyro/VirtualAccelerationAndGyroSensorFromAzure.cs -------------------------------------------------------------------------------- /AccelMobileClient/AccelerationAndGyroPortable/AccelerationAndGyroModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelerationAndGyroPortable/AccelerationAndGyroModel.cs -------------------------------------------------------------------------------- /AccelMobileClient/AccelerationAndGyroPortable/AccelerationAndGyroPortable.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelerationAndGyroPortable/AccelerationAndGyroPortable.csproj -------------------------------------------------------------------------------- /AccelMobileClient/AccelerationAndGyroPortable/FakeSensor/FakeAccelerometerAndGyro.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelerationAndGyroPortable/FakeSensor/FakeAccelerometerAndGyro.cs -------------------------------------------------------------------------------- /AccelMobileClient/AccelerationAndGyroPortable/FakeSensor/SampleData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelerationAndGyroPortable/FakeSensor/SampleData.txt -------------------------------------------------------------------------------- /AccelMobileClient/AccelerationAndGyroPortable/HandleAccelAndGyroPushToAzure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelerationAndGyroPortable/HandleAccelAndGyroPushToAzure.cs -------------------------------------------------------------------------------- /AccelMobileClient/AccelerationAndGyroPortable/IAccelerationAndGyroSensor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelerationAndGyroPortable/IAccelerationAndGyroSensor.cs -------------------------------------------------------------------------------- /AccelMobileClient/AccelerationAndGyroPortable/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelerationAndGyroPortable/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AccelMobileClient/AccelerationAndGyroPortable/RotationAngles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelerationAndGyroPortable/RotationAngles.cs -------------------------------------------------------------------------------- /AccelMobileClient/AccelerationAndGyroPortable/VirtualAccelerationAndGyroSensorFromAzure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelerationAndGyroPortable/VirtualAccelerationAndGyroSensorFromAzure.cs -------------------------------------------------------------------------------- /AccelMobileClient/AccelerationAndGyroPortable/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelerationAndGyroPortable/app.config -------------------------------------------------------------------------------- /AccelMobileClient/AccelerationAndGyroPortable/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AccelMobileClient/AccelerationAndGyroPortable/packages.config -------------------------------------------------------------------------------- /AndroidThings/BlinkThings/BlinkThings.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AndroidThings/BlinkThings/BlinkThings.sln -------------------------------------------------------------------------------- /AndroidThings/BlinkThings/BlinkThings/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AndroidThings/BlinkThings/BlinkThings/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /AndroidThings/BlinkThings/BlinkThings/BlinkThings.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AndroidThings/BlinkThings/BlinkThings/BlinkThings.csproj -------------------------------------------------------------------------------- /AndroidThings/BlinkThings/BlinkThings/GettingStarted.Xamarin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AndroidThings/BlinkThings/BlinkThings/GettingStarted.Xamarin -------------------------------------------------------------------------------- /AndroidThings/BlinkThings/BlinkThings/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AndroidThings/BlinkThings/BlinkThings/MainActivity.cs -------------------------------------------------------------------------------- /AndroidThings/BlinkThings/BlinkThings/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AndroidThings/BlinkThings/BlinkThings/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /AndroidThings/BlinkThings/BlinkThings/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AndroidThings/BlinkThings/BlinkThings/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AndroidThings/BlinkThings/BlinkThings/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AndroidThings/BlinkThings/BlinkThings/Resources/AboutResources.txt -------------------------------------------------------------------------------- /AndroidThings/BlinkThings/BlinkThings/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AndroidThings/BlinkThings/BlinkThings/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /AndroidThings/BlinkThings/BlinkThings/Resources/layout/Main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AndroidThings/BlinkThings/BlinkThings/Resources/layout/Main.axml -------------------------------------------------------------------------------- /AndroidThings/BlinkThings/BlinkThings/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AndroidThings/BlinkThings/BlinkThings/Resources/values/Strings.xml -------------------------------------------------------------------------------- /AndroidThings/BlinkThings/BlinkThings/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/AndroidThings/BlinkThings/BlinkThings/packages.config -------------------------------------------------------------------------------- /IoTDevices/AndroidDevice/AndroidDevice.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/AndroidDevice/AndroidDevice.csproj -------------------------------------------------------------------------------- /IoTDevices/AndroidDevice/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/AndroidDevice/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /IoTDevices/AndroidDevice/GettingStarted.Xamarin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/AndroidDevice/GettingStarted.Xamarin -------------------------------------------------------------------------------- /IoTDevices/AndroidDevice/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/AndroidDevice/MainActivity.cs -------------------------------------------------------------------------------- /IoTDevices/AndroidDevice/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/AndroidDevice/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /IoTDevices/AndroidDevice/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/AndroidDevice/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /IoTDevices/AndroidDevice/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/AndroidDevice/Resources/AboutResources.txt -------------------------------------------------------------------------------- /IoTDevices/AndroidDevice/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/AndroidDevice/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /IoTDevices/AndroidDevice/Resources/drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/AndroidDevice/Resources/drawable/Icon.png -------------------------------------------------------------------------------- /IoTDevices/AndroidDevice/Resources/layout/Main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/AndroidDevice/Resources/layout/Main.axml -------------------------------------------------------------------------------- /IoTDevices/AndroidDevice/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/AndroidDevice/Resources/values/Strings.xml -------------------------------------------------------------------------------- /IoTDevices/AndroidDevice/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/AndroidDevice/app.config -------------------------------------------------------------------------------- /IoTDevices/AndroidDevice/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/AndroidDevice/packages.config -------------------------------------------------------------------------------- /IoTDevices/AndroidThingsDevice/AndroidThingsDevice.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/AndroidThingsDevice/AndroidThingsDevice.csproj -------------------------------------------------------------------------------- /IoTDevices/AndroidThingsDevice/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/AndroidThingsDevice/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /IoTDevices/AndroidThingsDevice/GettingStarted.Xamarin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/AndroidThingsDevice/GettingStarted.Xamarin -------------------------------------------------------------------------------- /IoTDevices/AndroidThingsDevice/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/AndroidThingsDevice/MainActivity.cs -------------------------------------------------------------------------------- /IoTDevices/AndroidThingsDevice/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/AndroidThingsDevice/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /IoTDevices/AndroidThingsDevice/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/AndroidThingsDevice/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /IoTDevices/AndroidThingsDevice/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/AndroidThingsDevice/Resources/AboutResources.txt -------------------------------------------------------------------------------- /IoTDevices/AndroidThingsDevice/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/AndroidThingsDevice/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /IoTDevices/AndroidThingsDevice/Resources/drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/AndroidThingsDevice/Resources/drawable/Icon.png -------------------------------------------------------------------------------- /IoTDevices/AndroidThingsDevice/Resources/layout/Main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/AndroidThingsDevice/Resources/layout/Main.axml -------------------------------------------------------------------------------- /IoTDevices/AndroidThingsDevice/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/AndroidThingsDevice/Resources/values/Strings.xml -------------------------------------------------------------------------------- /IoTDevices/AndroidThingsDevice/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/AndroidThingsDevice/app.config -------------------------------------------------------------------------------- /IoTDevices/AndroidThingsDevice/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/AndroidThingsDevice/packages.config -------------------------------------------------------------------------------- /IoTDevices/ConsoleDevice/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/ConsoleDevice/App.config -------------------------------------------------------------------------------- /IoTDevices/ConsoleDevice/ConsoleDevice.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/ConsoleDevice/ConsoleDevice.csproj -------------------------------------------------------------------------------- /IoTDevices/ConsoleDevice/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/ConsoleDevice/Program.cs -------------------------------------------------------------------------------- /IoTDevices/ConsoleDevice/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/ConsoleDevice/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /IoTDevices/ConsoleDevice/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/ConsoleDevice/packages.config -------------------------------------------------------------------------------- /IoTDevices/ConsoleMessageMonitor/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/ConsoleMessageMonitor/App.config -------------------------------------------------------------------------------- /IoTDevices/ConsoleMessageMonitor/ConsoleMessageMonitor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/ConsoleMessageMonitor/ConsoleMessageMonitor.csproj -------------------------------------------------------------------------------- /IoTDevices/ConsoleMessageMonitor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/ConsoleMessageMonitor/Program.cs -------------------------------------------------------------------------------- /IoTDevices/ConsoleMessageMonitor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/ConsoleMessageMonitor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /IoTDevices/ConsoleMessageMonitor/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/ConsoleMessageMonitor/packages.config -------------------------------------------------------------------------------- /IoTDevices/ConsoleMessageMonitorSimple/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/ConsoleMessageMonitorSimple/App.config -------------------------------------------------------------------------------- /IoTDevices/ConsoleMessageMonitorSimple/ConsoleMessageMonitorSimple.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/ConsoleMessageMonitorSimple/ConsoleMessageMonitorSimple.csproj -------------------------------------------------------------------------------- /IoTDevices/ConsoleMessageMonitorSimple/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/ConsoleMessageMonitorSimple/Program.cs -------------------------------------------------------------------------------- /IoTDevices/ConsoleMessageMonitorSimple/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/ConsoleMessageMonitorSimple/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /IoTDevices/ConsoleMessageMonitorSimple/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/ConsoleMessageMonitorSimple/packages.config -------------------------------------------------------------------------------- /IoTDevices/IoTDevices.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/IoTDevices.sln -------------------------------------------------------------------------------- /IoTDevices/IoTDevicesShared/DeviceToCloud.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/IoTDevicesShared/DeviceToCloud.cs -------------------------------------------------------------------------------- /IoTDevices/IoTDevicesShared/IoTDevicesShared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/IoTDevicesShared/IoTDevicesShared.projitems -------------------------------------------------------------------------------- /IoTDevices/IoTDevicesShared/IoTDevicesShared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/IoTDevicesShared/IoTDevicesShared.shproj -------------------------------------------------------------------------------- /IoTDevices/IoTDevicesShared/Models/SensorData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/IoTDevicesShared/Models/SensorData.cs -------------------------------------------------------------------------------- /IoTDevices/UWPDevice/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/UWPDevice/App.xaml -------------------------------------------------------------------------------- /IoTDevices/UWPDevice/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/UWPDevice/App.xaml.cs -------------------------------------------------------------------------------- /IoTDevices/UWPDevice/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/UWPDevice/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /IoTDevices/UWPDevice/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/UWPDevice/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /IoTDevices/UWPDevice/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/UWPDevice/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /IoTDevices/UWPDevice/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/UWPDevice/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /IoTDevices/UWPDevice/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/UWPDevice/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /IoTDevices/UWPDevice/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/UWPDevice/Assets/StoreLogo.png -------------------------------------------------------------------------------- /IoTDevices/UWPDevice/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/UWPDevice/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /IoTDevices/UWPDevice/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/UWPDevice/MainPage.xaml -------------------------------------------------------------------------------- /IoTDevices/UWPDevice/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/UWPDevice/MainPage.xaml.cs -------------------------------------------------------------------------------- /IoTDevices/UWPDevice/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/UWPDevice/Package.appxmanifest -------------------------------------------------------------------------------- /IoTDevices/UWPDevice/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/UWPDevice/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /IoTDevices/UWPDevice/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/UWPDevice/Properties/Default.rd.xml -------------------------------------------------------------------------------- /IoTDevices/UWPDevice/UWPDevice.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/UWPDevice/UWPDevice.csproj -------------------------------------------------------------------------------- /IoTDevices/UWPIoTDevice/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/UWPIoTDevice/App.xaml -------------------------------------------------------------------------------- /IoTDevices/UWPIoTDevice/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/UWPIoTDevice/App.xaml.cs -------------------------------------------------------------------------------- /IoTDevices/UWPIoTDevice/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/UWPIoTDevice/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /IoTDevices/UWPIoTDevice/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/UWPIoTDevice/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /IoTDevices/UWPIoTDevice/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/UWPIoTDevice/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /IoTDevices/UWPIoTDevice/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/UWPIoTDevice/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /IoTDevices/UWPIoTDevice/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/UWPIoTDevice/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /IoTDevices/UWPIoTDevice/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/UWPIoTDevice/Assets/StoreLogo.png -------------------------------------------------------------------------------- /IoTDevices/UWPIoTDevice/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/UWPIoTDevice/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /IoTDevices/UWPIoTDevice/MPU6050.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/UWPIoTDevice/MPU6050.cs -------------------------------------------------------------------------------- /IoTDevices/UWPIoTDevice/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/UWPIoTDevice/MainPage.xaml -------------------------------------------------------------------------------- /IoTDevices/UWPIoTDevice/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/UWPIoTDevice/MainPage.xaml.cs -------------------------------------------------------------------------------- /IoTDevices/UWPIoTDevice/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/UWPIoTDevice/Package.appxmanifest -------------------------------------------------------------------------------- /IoTDevices/UWPIoTDevice/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/UWPIoTDevice/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /IoTDevices/UWPIoTDevice/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/UWPIoTDevice/Properties/Default.rd.xml -------------------------------------------------------------------------------- /IoTDevices/UWPIoTDevice/UWPIoTDevice.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/IoTDevices/UWPIoTDevice/UWPIoTDevice.csproj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/README.md -------------------------------------------------------------------------------- /Radio/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/.gitattributes -------------------------------------------------------------------------------- /Radio/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/.gitignore -------------------------------------------------------------------------------- /Radio/Radio.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio.sln -------------------------------------------------------------------------------- /Radio/Radio/Radio.Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Radio/Radio/Radio.Droid/GradientEffectDroid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.Droid/GradientEffectDroid.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio.Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.Droid/MainActivity.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio.Droid/PlatformFileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.Droid/PlatformFileHelper.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio.Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Radio/Radio/Radio.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio.Droid/Radio.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.Droid/Radio.Droid.csproj -------------------------------------------------------------------------------- /Radio/Radio/Radio.Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Radio/Radio/Radio.Droid/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.Droid/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio.Droid/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.Droid/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.Droid/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.Droid/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.Droid/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.Droid/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.Droid/packages.config -------------------------------------------------------------------------------- /Radio/Radio/Radio.UWP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.UWP/App.xaml -------------------------------------------------------------------------------- /Radio/Radio/Radio.UWP/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.UWP/App.xaml.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio.UWP/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.UWP/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.UWP/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.UWP/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.UWP/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.UWP/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.UWP/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.UWP/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.UWP/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.UWP/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.UWP/GradientEffectWindows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.UWP/GradientEffectWindows.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio.UWP/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.UWP/MainPage.xaml -------------------------------------------------------------------------------- /Radio/Radio/Radio.UWP/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.UWP/MainPage.xaml.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio.UWP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.UWP/Package.appxmanifest -------------------------------------------------------------------------------- /Radio/Radio/Radio.UWP/PlatformFileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.UWP/PlatformFileHelper.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio.UWP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.UWP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio.UWP/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.UWP/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Radio/Radio/Radio.UWP/Radio.UWP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.UWP/Radio.UWP.csproj -------------------------------------------------------------------------------- /Radio/Radio/Radio.UWP/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.UWP/project.json -------------------------------------------------------------------------------- /Radio/Radio/Radio.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Radio/Radio/Radio.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@1x.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@3x.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.iOS/DisabledOpacityEffectIOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.iOS/DisabledOpacityEffectIOS.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Radio/Radio/Radio.iOS/GradientEffectIOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.iOS/GradientEffectIOS.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.iOS/Info.plist -------------------------------------------------------------------------------- /Radio/Radio/Radio.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.iOS/Main.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio.iOS/PlatformFileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.iOS/PlatformFileHelper.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio.iOS/Radio.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.iOS/Radio.iOS.csproj -------------------------------------------------------------------------------- /Radio/Radio/Radio.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Radio/Radio/Radio.iOS/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.iOS/iTunesArtwork -------------------------------------------------------------------------------- /Radio/Radio/Radio.iOS/iTunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.iOS/iTunesArtwork@2x -------------------------------------------------------------------------------- /Radio/Radio/Radio.iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.iOS/packages.config -------------------------------------------------------------------------------- /Radio/Radio/Radio.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.macOS/AppDelegate.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-128.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-128@2x.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-16.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-16@2x.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-256.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-256@2x.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-32.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-32@2x.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-512.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.macOS/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png -------------------------------------------------------------------------------- /Radio/Radio/Radio.macOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.macOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Radio/Radio/Radio.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.macOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Radio/Radio/Radio.macOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.macOS/Entitlements.plist -------------------------------------------------------------------------------- /Radio/Radio/Radio.macOS/GradientEffectMac.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.macOS/GradientEffectMac.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio.macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.macOS/Info.plist -------------------------------------------------------------------------------- /Radio/Radio/Radio.macOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.macOS/Main.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio.macOS/Radio.macOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.macOS/Radio.macOS.csproj -------------------------------------------------------------------------------- /Radio/Radio/Radio.macOS/ViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.macOS/ViewController.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio.macOS/ViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.macOS/ViewController.designer.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio.macOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio.macOS/packages.config -------------------------------------------------------------------------------- /Radio/Radio/Radio/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio/App.xaml -------------------------------------------------------------------------------- /Radio/Radio/Radio/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio/App.xaml.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio/Audio/click.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio/Audio/click.mp3 -------------------------------------------------------------------------------- /Radio/Radio/Radio/Data/AdvancedQuestions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio/Data/AdvancedQuestions.json -------------------------------------------------------------------------------- /Radio/Radio/Radio/Data/BasicQuestions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio/Data/BasicQuestions.json -------------------------------------------------------------------------------- /Radio/Radio/Radio/Data/QuestionsAdvanced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio/Data/QuestionsAdvanced.txt -------------------------------------------------------------------------------- /Radio/Radio/Radio/Data/QuestionsBasic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio/Data/QuestionsBasic.txt -------------------------------------------------------------------------------- /Radio/Radio/Radio/DisabledOpacityEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio/DisabledOpacityEffect.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio/Game/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio/Game/Game.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio/Game/GameManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio/Game/GameManager.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio/Game/HamQuestionParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio/Game/HamQuestionParser.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio/Game/QuizQuestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio/Game/QuizQuestion.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio/GradientEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio/GradientEffect.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio/IFileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio/IFileHelper.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio/Images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio/Images/background.jpg -------------------------------------------------------------------------------- /Radio/Radio/Radio/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio/NavigationService.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio/Pages/HomePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio/Pages/HomePage.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio/Pages/LessonsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio/Pages/LessonsPage.xaml -------------------------------------------------------------------------------- /Radio/Radio/Radio/Pages/LessonsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio/Pages/LessonsPage.xaml.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio/Pages/QuestionPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio/Pages/QuestionPage.xaml -------------------------------------------------------------------------------- /Radio/Radio/Radio/Pages/QuestionPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio/Pages/QuestionPage.xaml.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio/Pages/ReviewPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio/Pages/ReviewPage.xaml -------------------------------------------------------------------------------- /Radio/Radio/Radio/Pages/ReviewPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio/Pages/ReviewPage.xaml.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio/QuizQuestionXmlSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio/QuizQuestionXmlSerializer.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio/Radio.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio/Radio.csproj -------------------------------------------------------------------------------- /Radio/Radio/Radio/ViewModels/LessonsPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio/ViewModels/LessonsPageViewModel.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio/ViewModels/QuestionPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio/ViewModels/QuestionPageViewModel.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio/ViewModels/QuizQuestionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio/ViewModels/QuizQuestionViewModel.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio/ViewModels/ReviewPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio/ViewModels/ReviewPageViewModel.cs -------------------------------------------------------------------------------- /Radio/Radio/Radio/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/Radio/Radio/packages.config -------------------------------------------------------------------------------- /Radio/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/Radio/background.jpg -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF.sln -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.Android/MainActivity.cs -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.Android/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.Android/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.Android/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.Android/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.Android/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.Android/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.Android/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.Android/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.Android/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.Android/Resources/drawable/icon.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.Android/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.Android/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.Android/SayHelloXF.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.Android/SayHelloXF.Android.csproj -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.Android/TextToSpeechService.Android.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.Android/TextToSpeechService.Android.cs -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.Android/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.Android/packages.config -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/App.xaml -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/App.xaml.cs -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/LockScreenLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/LockScreenLogo.scale-100.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/LockScreenLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/LockScreenLogo.scale-125.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/LockScreenLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/LockScreenLogo.scale-150.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/LockScreenLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/LockScreenLogo.scale-400.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Square44x44Logo.targetsize-16_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Square44x44Logo.targetsize-16_altform-unplated.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Square44x44Logo.targetsize-256_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Square44x44Logo.targetsize-256_altform-unplated.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Square44x44Logo.targetsize-32_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Square44x44Logo.targetsize-32_altform-unplated.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Square44x44Logo.targetsize-48_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Square44x44Logo.targetsize-48_altform-unplated.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/MainPage.xaml -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/MainPage.xaml.cs -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/Package.appxmanifest -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/Properties/Default.rd.xml -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/SayHelloXF.UWP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/SayHelloXF.UWP.csproj -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/TextToSpeechService.Win.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/TextToSpeechService.Win.cs -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.UWP/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.UWP/project.json -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.iOS/Entitlements.plist -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.iOS/Info.plist -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.iOS/Main.cs -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.iOS/Resources/Default.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.iOS/Resources/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.iOS/Resources/Icon-60@3x.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.iOS/Resources/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.iOS/Resources/Icon-76.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.iOS/Resources/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.iOS/Resources/Icon-76@2x.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.iOS/Resources/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.iOS/Resources/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.iOS/Resources/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.iOS/Resources/Icon-Small@3x.png -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.iOS/SayHelloXF.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.iOS/SayHelloXF.iOS.csproj -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.iOS/TextToSpeechService.iOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.iOS/TextToSpeechService.iOS.cs -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.iOS/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.iOS/iTunesArtwork -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.iOS/iTunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.iOS/iTunesArtwork@2x -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF.iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF.iOS/packages.config -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF/App.xaml -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF/App.xaml.cs -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF/ITextToSpeech.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF/ITextToSpeech.cs -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF/MainPage.xaml -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF/MainPage.xaml.cs -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF/SayHelloXF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF/SayHelloXF.csproj -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF/packages.config -------------------------------------------------------------------------------- /SayHelloXF/SayHelloXF/SayHelloXF/sayhello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/SayHelloXF/SayHelloXF/SayHelloXF/sayhello.png -------------------------------------------------------------------------------- /TheRightDrawerStuff/TheRightDrawerStuff.XF/HistoricalPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/TheRightDrawerStuff/TheRightDrawerStuff.XF/HistoricalPage.xaml -------------------------------------------------------------------------------- /TheRightDrawerStuff/TheRightDrawerStuff.XF/HistoricalPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/TheRightDrawerStuff/TheRightDrawerStuff.XF/HistoricalPage.xaml.cs -------------------------------------------------------------------------------- /TheRightDrawerStuff/TheRightDrawerStuff.XF/RealTimePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/TheRightDrawerStuff/TheRightDrawerStuff.XF/RealTimePage.xaml -------------------------------------------------------------------------------- /TheRightDrawerStuff/TheRightDrawerStuff.XF/RealTimePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/TheRightDrawerStuff/TheRightDrawerStuff.XF/RealTimePage.xaml.cs -------------------------------------------------------------------------------- /TheRightDrawerStuff/TheRightDrawerStuff.XF/TheRightDrawerStuff.XF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/TheRightDrawerStuff/TheRightDrawerStuff.XF/TheRightDrawerStuff.XF.csproj -------------------------------------------------------------------------------- /TheRightDrawerStuff/TheRightDrawerStuff.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/TheRightDrawerStuff/TheRightDrawerStuff.sln -------------------------------------------------------------------------------- /TheRightDrawerStuff/TheRightDrawerStuff/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/TheRightDrawerStuff/TheRightDrawerStuff/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /TheRightDrawerStuff/TheRightDrawerStuff/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/TheRightDrawerStuff/TheRightDrawerStuff/MainActivity.cs -------------------------------------------------------------------------------- /TheRightDrawerStuff/TheRightDrawerStuff/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/TheRightDrawerStuff/TheRightDrawerStuff/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /TheRightDrawerStuff/TheRightDrawerStuff/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/TheRightDrawerStuff/TheRightDrawerStuff/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TheRightDrawerStuff/TheRightDrawerStuff/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/TheRightDrawerStuff/TheRightDrawerStuff/Resources/AboutResources.txt -------------------------------------------------------------------------------- /TheRightDrawerStuff/TheRightDrawerStuff/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/TheRightDrawerStuff/TheRightDrawerStuff/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /TheRightDrawerStuff/TheRightDrawerStuff/Resources/drawable-hdpi/ic_timeline_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/TheRightDrawerStuff/TheRightDrawerStuff/Resources/drawable-hdpi/ic_timeline_white_24dp.png -------------------------------------------------------------------------------- /TheRightDrawerStuff/TheRightDrawerStuff/Resources/drawable-hdpi/ic_update_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/TheRightDrawerStuff/TheRightDrawerStuff/Resources/drawable-hdpi/ic_update_white_24dp.png -------------------------------------------------------------------------------- /TheRightDrawerStuff/TheRightDrawerStuff/Resources/drawable-mdpi/ic_timeline_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/TheRightDrawerStuff/TheRightDrawerStuff/Resources/drawable-mdpi/ic_timeline_white_24dp.png -------------------------------------------------------------------------------- /TheRightDrawerStuff/TheRightDrawerStuff/Resources/drawable-mdpi/ic_update_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/TheRightDrawerStuff/TheRightDrawerStuff/Resources/drawable-mdpi/ic_update_white_24dp.png -------------------------------------------------------------------------------- /TheRightDrawerStuff/TheRightDrawerStuff/Resources/drawable-xhdpi/ic_timeline_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/TheRightDrawerStuff/TheRightDrawerStuff/Resources/drawable-xhdpi/ic_timeline_white_24dp.png -------------------------------------------------------------------------------- /TheRightDrawerStuff/TheRightDrawerStuff/Resources/drawable-xhdpi/ic_update_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/TheRightDrawerStuff/TheRightDrawerStuff/Resources/drawable-xhdpi/ic_update_white_24dp.png -------------------------------------------------------------------------------- /TheRightDrawerStuff/TheRightDrawerStuff/Resources/drawable-xxhdpi/ic_timeline_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/TheRightDrawerStuff/TheRightDrawerStuff/Resources/drawable-xxhdpi/ic_timeline_white_24dp.png -------------------------------------------------------------------------------- /TheRightDrawerStuff/TheRightDrawerStuff/Resources/drawable-xxhdpi/ic_update_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/TheRightDrawerStuff/TheRightDrawerStuff/Resources/drawable-xxhdpi/ic_update_white_24dp.png -------------------------------------------------------------------------------- /TheRightDrawerStuff/TheRightDrawerStuff/Resources/drawable-xxxhdpi/ic_timeline_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/TheRightDrawerStuff/TheRightDrawerStuff/Resources/drawable-xxxhdpi/ic_timeline_white_24dp.png -------------------------------------------------------------------------------- /TheRightDrawerStuff/TheRightDrawerStuff/Resources/drawable-xxxhdpi/ic_update_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/TheRightDrawerStuff/TheRightDrawerStuff/Resources/drawable-xxxhdpi/ic_update_white_24dp.png -------------------------------------------------------------------------------- /TheRightDrawerStuff/TheRightDrawerStuff/Resources/layout/Main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/TheRightDrawerStuff/TheRightDrawerStuff/Resources/layout/Main.axml -------------------------------------------------------------------------------- /TheRightDrawerStuff/TheRightDrawerStuff/Resources/menu/navigation_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/TheRightDrawerStuff/TheRightDrawerStuff/Resources/menu/navigation_menu.xml -------------------------------------------------------------------------------- /TheRightDrawerStuff/TheRightDrawerStuff/Resources/mipmap-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/TheRightDrawerStuff/TheRightDrawerStuff/Resources/mipmap-hdpi/Icon.png -------------------------------------------------------------------------------- /TheRightDrawerStuff/TheRightDrawerStuff/Resources/mipmap-mdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/TheRightDrawerStuff/TheRightDrawerStuff/Resources/mipmap-mdpi/Icon.png -------------------------------------------------------------------------------- /TheRightDrawerStuff/TheRightDrawerStuff/Resources/mipmap-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/TheRightDrawerStuff/TheRightDrawerStuff/Resources/mipmap-xhdpi/Icon.png -------------------------------------------------------------------------------- /TheRightDrawerStuff/TheRightDrawerStuff/Resources/mipmap-xxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/TheRightDrawerStuff/TheRightDrawerStuff/Resources/mipmap-xxhdpi/Icon.png -------------------------------------------------------------------------------- /TheRightDrawerStuff/TheRightDrawerStuff/Resources/mipmap-xxxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/TheRightDrawerStuff/TheRightDrawerStuff/Resources/mipmap-xxxhdpi/Icon.png -------------------------------------------------------------------------------- /TheRightDrawerStuff/TheRightDrawerStuff/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/TheRightDrawerStuff/TheRightDrawerStuff/Resources/values/Strings.xml -------------------------------------------------------------------------------- /TheRightDrawerStuff/TheRightDrawerStuff/TheRightDrawerStuff.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/TheRightDrawerStuff/TheRightDrawerStuff/TheRightDrawerStuff.csproj -------------------------------------------------------------------------------- /TheRightDrawerStuff/TheRightDrawerStuff/nuget_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/TheRightDrawerStuff/TheRightDrawerStuff/nuget_info.txt -------------------------------------------------------------------------------- /TheRightDrawerStuff/TheRightDrawerStuff/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/TheRightDrawerStuff/TheRightDrawerStuff/packages.config -------------------------------------------------------------------------------- /UWPIoT Samples/UWPIoTBlink/BlinkTest/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/UWPIoT Samples/UWPIoTBlink/BlinkTest/App.xaml -------------------------------------------------------------------------------- /UWPIoT Samples/UWPIoTBlink/BlinkTest/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/UWPIoT Samples/UWPIoTBlink/BlinkTest/App.xaml.cs -------------------------------------------------------------------------------- /UWPIoT Samples/UWPIoTBlink/BlinkTest/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/UWPIoT Samples/UWPIoTBlink/BlinkTest/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /UWPIoT Samples/UWPIoTBlink/BlinkTest/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/UWPIoT Samples/UWPIoTBlink/BlinkTest/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /UWPIoT Samples/UWPIoTBlink/BlinkTest/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/UWPIoT Samples/UWPIoTBlink/BlinkTest/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /UWPIoT Samples/UWPIoTBlink/BlinkTest/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/UWPIoT Samples/UWPIoTBlink/BlinkTest/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /UWPIoT Samples/UWPIoTBlink/BlinkTest/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/UWPIoT Samples/UWPIoTBlink/BlinkTest/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /UWPIoT Samples/UWPIoTBlink/BlinkTest/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/UWPIoT Samples/UWPIoTBlink/BlinkTest/Assets/StoreLogo.png -------------------------------------------------------------------------------- /UWPIoT Samples/UWPIoTBlink/BlinkTest/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/UWPIoT Samples/UWPIoTBlink/BlinkTest/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /UWPIoT Samples/UWPIoTBlink/BlinkTest/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/UWPIoT Samples/UWPIoTBlink/BlinkTest/MainPage.xaml -------------------------------------------------------------------------------- /UWPIoT Samples/UWPIoTBlink/BlinkTest/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/UWPIoT Samples/UWPIoTBlink/BlinkTest/MainPage.xaml.cs -------------------------------------------------------------------------------- /UWPIoT Samples/UWPIoTBlink/BlinkTest/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/UWPIoT Samples/UWPIoTBlink/BlinkTest/Package.appxmanifest -------------------------------------------------------------------------------- /UWPIoT Samples/UWPIoTBlink/BlinkTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/UWPIoT Samples/UWPIoTBlink/BlinkTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UWPIoT Samples/UWPIoTBlink/BlinkTest/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/UWPIoT Samples/UWPIoTBlink/BlinkTest/Properties/Default.rd.xml -------------------------------------------------------------------------------- /UWPIoT Samples/UWPIoTBlink/BlinkTest/UWPIoT_BlinkTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/UWPIoT Samples/UWPIoTBlink/BlinkTest/UWPIoT_BlinkTest.csproj -------------------------------------------------------------------------------- /UWPIoT Samples/UWPIoTBlink/UWPBlinkTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/UWPIoT Samples/UWPIoTBlink/UWPBlinkTest.sln -------------------------------------------------------------------------------- /UWPIoT Samples/UWPIoTMPU6050/Accel.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/UWPIoT Samples/UWPIoTMPU6050/Accel.sln -------------------------------------------------------------------------------- /UWPIoT Samples/UWPIoTMPU6050/Accel/Accel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/UWPIoT Samples/UWPIoTMPU6050/Accel/Accel.csproj -------------------------------------------------------------------------------- /UWPIoT Samples/UWPIoTMPU6050/Accel/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/UWPIoT Samples/UWPIoTMPU6050/Accel/App.xaml -------------------------------------------------------------------------------- /UWPIoT Samples/UWPIoTMPU6050/Accel/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/UWPIoT Samples/UWPIoTMPU6050/Accel/App.xaml.cs -------------------------------------------------------------------------------- /UWPIoT Samples/UWPIoTMPU6050/Accel/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/UWPIoT Samples/UWPIoTMPU6050/Accel/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /UWPIoT Samples/UWPIoTMPU6050/Accel/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/UWPIoT Samples/UWPIoTMPU6050/Accel/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /UWPIoT Samples/UWPIoTMPU6050/Accel/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/UWPIoT Samples/UWPIoTMPU6050/Accel/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /UWPIoT Samples/UWPIoTMPU6050/Accel/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/UWPIoT Samples/UWPIoTMPU6050/Accel/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /UWPIoT Samples/UWPIoTMPU6050/Accel/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/UWPIoT Samples/UWPIoTMPU6050/Accel/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /UWPIoT Samples/UWPIoTMPU6050/Accel/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/UWPIoT Samples/UWPIoTMPU6050/Accel/Assets/StoreLogo.png -------------------------------------------------------------------------------- /UWPIoT Samples/UWPIoTMPU6050/Accel/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/UWPIoT Samples/UWPIoTMPU6050/Accel/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /UWPIoT Samples/UWPIoTMPU6050/Accel/MPU6050.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/UWPIoT Samples/UWPIoTMPU6050/Accel/MPU6050.cs -------------------------------------------------------------------------------- /UWPIoT Samples/UWPIoTMPU6050/Accel/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/UWPIoT Samples/UWPIoTMPU6050/Accel/MainPage.xaml -------------------------------------------------------------------------------- /UWPIoT Samples/UWPIoTMPU6050/Accel/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/UWPIoT Samples/UWPIoTMPU6050/Accel/MainPage.xaml.cs -------------------------------------------------------------------------------- /UWPIoT Samples/UWPIoTMPU6050/Accel/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/UWPIoT Samples/UWPIoTMPU6050/Accel/Package.appxmanifest -------------------------------------------------------------------------------- /UWPIoT Samples/UWPIoTMPU6050/Accel/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/UWPIoT Samples/UWPIoTMPU6050/Accel/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UWPIoT Samples/UWPIoTMPU6050/Accel/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/UWPIoT Samples/UWPIoTMPU6050/Accel/Properties/Default.rd.xml -------------------------------------------------------------------------------- /UWPIoT Samples/UWPIoTMPU6050/Accel/SensorValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/UWPIoT Samples/UWPIoTMPU6050/Accel/SensorValue.cs -------------------------------------------------------------------------------- /XamDraw/XFDraw.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw.sln -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.Droid/HyperlinkLabelRenderer.Droid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.Droid/HyperlinkLabelRenderer.Droid.cs -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.Droid/MainActivity.cs -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.Droid/PaintView.Droid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.Droid/PaintView.Droid.cs -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.Droid/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.Droid/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.Droid/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.Droid/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.Droid/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.Droid/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.Droid/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.Droid/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.Droid/Resources/drawable/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.Droid/Resources/drawable/pencil.png -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.Droid/Resources/drawable/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.Droid/Resources/drawable/trash.png -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.Droid/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.Droid/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.Droid/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.Droid/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.Droid/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.Droid/Resources/values/styles.xml -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.Droid/SketchViewRenderer.Droid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.Droid/SketchViewRenderer.Droid.cs -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.Droid/XFDraw.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.Droid/XFDraw.Droid.csproj -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.Droid/packages.config -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.Shared/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.Shared/App.cs -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.Shared/HyperlinkLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.Shared/HyperlinkLabel.cs -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.Shared/ISketchController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.Shared/ISketchController.cs -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.Shared/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.Shared/MainPage.xaml -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.Shared/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.Shared/MainPage.xaml.cs -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.Shared/SharedUI.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.Shared/SharedUI.projitems -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.Shared/SketchView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.Shared/SketchView.cs -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.Shared/Views/ColorButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.Shared/Views/ColorButton.cs -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.Shared/Views/ColorPicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.Shared/Views/ColorPicker.cs -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.Shared/Views/ColorPickerMouseOld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.Shared/Views/ColorPickerMouseOld.cs -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.Shared/Views/ColorPickerMouseView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.Shared/Views/ColorPickerMouseView.xaml -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.Shared/Views/ColorPickerMouseView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.Shared/Views/ColorPickerMouseView.xaml.cs -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.Shared/Views/ColorPickerTouchView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.Shared/Views/ColorPickerTouchView.xaml -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.Shared/Views/ColorPickerTouchView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.Shared/Views/ColorPickerTouchView.xaml.cs -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.Shared/XFDraw.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.Shared/XFDraw.shproj -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.UWP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.UWP/App.xaml -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.UWP/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.UWP/App.xaml.cs -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.UWP/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.UWP/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.UWP/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.UWP/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.UWP/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.UWP/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.UWP/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.UWP/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.UWP/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.UWP/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.UWP/HyperlinkLabelRenderer.UWP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.UWP/HyperlinkLabelRenderer.UWP.cs -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.UWP/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.UWP/MainPage.xaml -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.UWP/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.UWP/MainPage.xaml.cs -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.UWP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.UWP/Package.appxmanifest -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.UWP/PaintView.UWP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.UWP/PaintView.UWP.cs -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.UWP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.UWP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.UWP/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.UWP/Properties/Default.rd.xml -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.UWP/SketchViewRenderer.UWP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.UWP/SketchViewRenderer.UWP.cs -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.UWP/XFDraw.UWP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.UWP/XFDraw.UWP.csproj -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.UWP/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.UWP/pencil.png -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.UWP/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.UWP/project.json -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.UWP/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.UWP/trash.png -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.iOS/Entitlements.plist -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.iOS/HyperlinkLabelRenderer.iOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.iOS/HyperlinkLabelRenderer.iOS.cs -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.iOS/Info.plist -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.iOS/Main.cs -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.iOS/PaintView.iOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.iOS/PaintView.iOS.cs -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.iOS/Resources/Default.png -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.iOS/Resources/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.iOS/Resources/Icon-60@3x.png -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.iOS/Resources/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.iOS/Resources/Icon-76.png -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.iOS/Resources/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.iOS/Resources/Icon-76@2x.png -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.iOS/Resources/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.iOS/Resources/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.iOS/Resources/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.iOS/Resources/Icon-Small@3x.png -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.iOS/Resources/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.iOS/Resources/pencil.png -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.iOS/Resources/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.iOS/Resources/trash.png -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.iOS/SketchViewRenderer.iOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.iOS/SketchViewRenderer.iOS.cs -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.iOS/XFDraw.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.iOS/XFDraw.iOS.csproj -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.iOS/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.iOS/iTunesArtwork -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.iOS/iTunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.iOS/iTunesArtwork@2x -------------------------------------------------------------------------------- /XamDraw/XFDraw/XFDraw.iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/XamDraw/XFDraw/XFDraw.iOS/packages.config -------------------------------------------------------------------------------- /clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianstevens/NETConf2017/HEAD/clean.bat --------------------------------------------------------------------------------