├── .gitignore ├── Agent ├── Agent.Background │ ├── Agent.Background.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Trigger.cs │ └── packages.config ├── Agent.sln ├── Agent │ ├── Agent.csproj │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationInsights.config │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ └── WideLogo.scale-100.png │ ├── Library.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── packages.config └── packages │ ├── Microsoft.ApplicationInsights.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── net40 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── portable-win81+wpa81 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ └── wp8 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ └── tools │ │ └── net40 │ │ ├── Microsoft.ApplicationInsights.targets │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net40 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ ├── portable-win8+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ ├── portable-win81+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ └── wp8 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── win81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ ├── wp8 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ └── wpa81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── win81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ ├── wp8 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ └── wpa81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ └── tools │ │ ├── Microsoft.ApplicationInsights.psm1 │ │ ├── win81 │ │ └── install.ps1 │ │ ├── wp8 │ │ └── install.ps1 │ │ └── wpa81 │ │ └── install.ps1 │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta │ ├── License-Stable.rtf │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta.nupkg │ ├── [Content_Types].xml │ └── lib │ │ ├── net35 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ ├── net40 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ └── net45 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ └── System.Numerics.Vectors.4.0.0 │ ├── License-Stable.rtf │ ├── System.Numerics.Vectors.4.0.0.nupkg │ ├── [Content_Types].xml │ └── lib │ ├── portable-net45+win8+wpa81 │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml │ └── win8 │ ├── System.Numerics.Vectors.WindowsRuntime.dll │ ├── System.Numerics.Vectors.WindowsRuntime.xml │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml ├── ApplicationBar ├── ApplicationBar.sln ├── ApplicationBar │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationBar.csproj │ ├── ApplicationInsights.config │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ └── WideLogo.scale-100.png │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── packages.config └── packages │ ├── Microsoft.ApplicationInsights.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── net40 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── portable-win81+wpa81 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ └── wp8 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ └── tools │ │ └── net40 │ │ ├── Microsoft.ApplicationInsights.targets │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net40 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ ├── portable-win8+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ ├── portable-win81+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ └── wp8 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── win81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ ├── wp8 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ └── wpa81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── win81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ ├── wp8 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ └── wpa81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ └── tools │ │ ├── Microsoft.ApplicationInsights.psm1 │ │ ├── win81 │ │ └── install.ps1 │ │ ├── wp8 │ │ └── install.ps1 │ │ └── wpa81 │ │ └── install.ps1 │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta │ ├── License-Stable.rtf │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta.nupkg │ ├── [Content_Types].xml │ └── lib │ │ ├── net35 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ ├── net40 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ └── net45 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ └── System.Numerics.Vectors.4.0.0 │ ├── License-Stable.rtf │ ├── System.Numerics.Vectors.4.0.0.nupkg │ ├── [Content_Types].xml │ └── lib │ ├── portable-net45+win8+wpa81 │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml │ └── win8 │ ├── System.Numerics.Vectors.WindowsRuntime.dll │ ├── System.Numerics.Vectors.WindowsRuntime.xml │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml ├── AudioRecorder ├── AudioRecorder.sln ├── AudioRecorder │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationInsights.config │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ └── WideLogo.scale-100.png │ ├── AudioRecorder.csproj │ ├── Library.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── packages.config └── packages │ ├── Microsoft.ApplicationInsights.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── net40 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── portable-win81+wpa81 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ └── wp8 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ └── tools │ │ └── net40 │ │ ├── Microsoft.ApplicationInsights.targets │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net40 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ ├── portable-win8+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ ├── portable-win81+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ └── wp8 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── win81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ ├── wp8 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ └── wpa81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── win81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ ├── wp8 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ └── wpa81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ └── tools │ │ ├── Microsoft.ApplicationInsights.psm1 │ │ ├── win81 │ │ └── install.ps1 │ │ ├── wp8 │ │ └── install.ps1 │ │ └── wpa81 │ │ └── install.ps1 │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta │ ├── License-Stable.rtf │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta.nupkg │ ├── [Content_Types].xml │ └── lib │ │ ├── net35 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ ├── net40 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ └── net45 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ └── System.Numerics.Vectors.4.0.0 │ ├── License-Stable.rtf │ ├── System.Numerics.Vectors.4.0.0.nupkg │ ├── [Content_Types].xml │ └── lib │ ├── portable-net45+win8+wpa81 │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml │ └── win8 │ ├── System.Numerics.Vectors.WindowsRuntime.dll │ ├── System.Numerics.Vectors.WindowsRuntime.xml │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml ├── CarouselControl ├── CarouselControl.sln ├── CarouselControl │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationInsights.config │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ └── WideLogo.scale-100.png │ ├── Carousel.xaml │ ├── Carousel.xaml.cs │ ├── CarouselControl.csproj │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── packages.config └── packages │ ├── Microsoft.ApplicationInsights.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── net40 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── portable-win81+wpa81 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ └── wp8 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ └── tools │ │ └── net40 │ │ ├── Microsoft.ApplicationInsights.targets │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net40 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ ├── portable-win8+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ ├── portable-win81+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ └── wp8 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── win81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ ├── wp8 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ └── wpa81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── win81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ ├── wp8 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ └── wpa81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ └── tools │ │ ├── Microsoft.ApplicationInsights.psm1 │ │ ├── win81 │ │ └── install.ps1 │ │ ├── wp8 │ │ └── install.ps1 │ │ └── wpa81 │ │ └── install.ps1 │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta │ ├── License-Stable.rtf │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta.nupkg │ ├── [Content_Types].xml │ └── lib │ │ ├── net35 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ ├── net40 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ └── net45 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ └── System.Numerics.Vectors.4.0.0 │ ├── License-Stable.rtf │ ├── System.Numerics.Vectors.4.0.0.nupkg │ ├── [Content_Types].xml │ └── lib │ ├── portable-net45+win8+wpa81 │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml │ └── win8 │ ├── System.Numerics.Vectors.WindowsRuntime.dll │ ├── System.Numerics.Vectors.WindowsRuntime.xml │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml ├── ClockControl ├── ClockControl.sln ├── ClockControl │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationInsights.config │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ └── WideLogo.scale-100.png │ ├── Clock.xaml │ ├── Clock.xaml.cs │ ├── ClockControl.csproj │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── packages.config └── packages │ ├── Microsoft.ApplicationInsights.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── net40 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── portable-win81+wpa81 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ └── wp8 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ └── tools │ │ └── net40 │ │ ├── Microsoft.ApplicationInsights.targets │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net40 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ ├── portable-win8+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ ├── portable-win81+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ └── wp8 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── win81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ ├── wp8 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ └── wpa81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── win81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ ├── wp8 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ └── wpa81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ └── tools │ │ ├── Microsoft.ApplicationInsights.psm1 │ │ ├── win81 │ │ └── install.ps1 │ │ ├── wp8 │ │ └── install.ps1 │ │ └── wpa81 │ │ └── install.ps1 │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta │ ├── License-Stable.rtf │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta.nupkg │ ├── [Content_Types].xml │ └── lib │ │ ├── net35 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ ├── net40 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ └── net45 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ └── System.Numerics.Vectors.4.0.0 │ ├── License-Stable.rtf │ ├── System.Numerics.Vectors.4.0.0.nupkg │ ├── [Content_Types].xml │ └── lib │ ├── portable-net45+win8+wpa81 │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml │ └── win8 │ ├── System.Numerics.Vectors.WindowsRuntime.dll │ ├── System.Numerics.Vectors.WindowsRuntime.xml │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml ├── CustomButton ├── CustomButton.sln ├── CustomButton │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationInsights.config │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ └── WideLogo.scale-100.png │ ├── CustomButton.csproj │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── packages.config └── packages │ ├── Microsoft.ApplicationInsights.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── net40 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── portable-win81+wpa81 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ └── wp8 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ └── tools │ │ └── net40 │ │ ├── Microsoft.ApplicationInsights.targets │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net40 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ ├── portable-win8+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ ├── portable-win81+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ └── wp8 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── win81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ ├── wp8 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ └── wpa81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── win81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ ├── wp8 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ └── wpa81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ └── tools │ │ ├── Microsoft.ApplicationInsights.psm1 │ │ ├── win81 │ │ └── install.ps1 │ │ ├── wp8 │ │ └── install.ps1 │ │ └── wpa81 │ │ └── install.ps1 │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta │ ├── License-Stable.rtf │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta.nupkg │ ├── [Content_Types].xml │ └── lib │ │ ├── net35 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ ├── net40 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ └── net45 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ └── System.Numerics.Vectors.4.0.0 │ ├── License-Stable.rtf │ ├── System.Numerics.Vectors.4.0.0.nupkg │ ├── [Content_Types].xml │ └── lib │ ├── portable-net45+win8+wpa81 │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml │ └── win8 │ ├── System.Numerics.Vectors.WindowsRuntime.dll │ ├── System.Numerics.Vectors.WindowsRuntime.xml │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml ├── CustomSlider ├── CustomSlider.sln ├── CustomSlider │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationInsights.config │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ └── WideLogo.scale-100.png │ ├── CustomSlider.csproj │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── packages.config └── packages │ ├── Microsoft.ApplicationInsights.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── net40 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── portable-win81+wpa81 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ └── wp8 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ └── tools │ │ └── net40 │ │ ├── Microsoft.ApplicationInsights.targets │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net40 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ ├── portable-win8+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ ├── portable-win81+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ └── wp8 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── win81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ ├── wp8 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ └── wpa81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── win81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ ├── wp8 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ └── wpa81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ └── tools │ │ ├── Microsoft.ApplicationInsights.psm1 │ │ ├── win81 │ │ └── install.ps1 │ │ ├── wp8 │ │ └── install.ps1 │ │ └── wpa81 │ │ └── install.ps1 │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta │ ├── License-Stable.rtf │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta.nupkg │ ├── [Content_Types].xml │ └── lib │ │ ├── net35 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ ├── net40 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ └── net45 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ └── System.Numerics.Vectors.4.0.0 │ ├── License-Stable.rtf │ ├── System.Numerics.Vectors.4.0.0.nupkg │ ├── [Content_Types].xml │ └── lib │ ├── portable-net45+win8+wpa81 │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml │ └── win8 │ ├── System.Numerics.Vectors.WindowsRuntime.dll │ ├── System.Numerics.Vectors.WindowsRuntime.xml │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml ├── DataInput ├── DataInput.sln ├── DataInput │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationInsights.config │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ └── WideLogo.scale-100.png │ ├── DataInput.csproj │ ├── Library.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── packages.config └── packages │ ├── Microsoft.ApplicationInsights.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── net40 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── portable-win81+wpa81 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ └── wp8 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ └── tools │ │ └── net40 │ │ ├── Microsoft.ApplicationInsights.targets │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net40 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ ├── portable-win8+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ ├── portable-win81+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ └── wp8 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── win81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ ├── wp8 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ └── wpa81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── win81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ ├── wp8 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ └── wpa81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ └── tools │ │ ├── Microsoft.ApplicationInsights.psm1 │ │ ├── win81 │ │ └── install.ps1 │ │ ├── wp8 │ │ └── install.ps1 │ │ └── wpa81 │ │ └── install.ps1 │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta │ ├── License-Stable.rtf │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta.nupkg │ ├── [Content_Types].xml │ └── lib │ │ ├── net35 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ ├── net40 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ └── net45 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ └── System.Numerics.Vectors.4.0.0 │ ├── License-Stable.rtf │ ├── System.Numerics.Vectors.4.0.0.nupkg │ ├── [Content_Types].xml │ └── lib │ ├── portable-net45+win8+wpa81 │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml │ └── win8 │ ├── System.Numerics.Vectors.WindowsRuntime.dll │ ├── System.Numerics.Vectors.WindowsRuntime.xml │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml ├── DialControl ├── DialControl.sln ├── DialControl │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationInsights.config │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ └── WideLogo.scale-100.png │ ├── Dial.cs │ ├── DialControl.csproj │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── Themes │ │ └── Generic.xaml │ └── packages.config └── packages │ ├── Microsoft.ApplicationInsights.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── net40 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── portable-win81+wpa81 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ └── wp8 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ └── tools │ │ └── net40 │ │ ├── Microsoft.ApplicationInsights.targets │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net40 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ ├── portable-win8+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ ├── portable-win81+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ └── wp8 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── win81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ ├── wp8 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ └── wpa81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── win81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ ├── wp8 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ └── wpa81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ └── tools │ │ ├── Microsoft.ApplicationInsights.psm1 │ │ ├── win81 │ │ └── install.ps1 │ │ ├── wp8 │ │ └── install.ps1 │ │ └── wpa81 │ │ └── install.ps1 │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta │ ├── License-Stable.rtf │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta.nupkg │ ├── [Content_Types].xml │ └── lib │ │ ├── net35 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ ├── net40 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ └── net45 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ └── System.Numerics.Vectors.4.0.0 │ ├── License-Stable.rtf │ ├── System.Numerics.Vectors.4.0.0.nupkg │ ├── [Content_Types].xml │ └── lib │ ├── portable-net45+win8+wpa81 │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml │ └── win8 │ ├── System.Numerics.Vectors.WindowsRuntime.dll │ ├── System.Numerics.Vectors.WindowsRuntime.xml │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml ├── DrawEditor ├── DrawEditor.sln ├── DrawEditor │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationInsights.config │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ └── WideLogo.scale-100.png │ ├── DrawEditor.csproj │ ├── Library.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── packages.config └── packages │ ├── Microsoft.ApplicationInsights.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── net40 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── portable-win81+wpa81 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ └── wp8 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ └── tools │ │ └── net40 │ │ ├── Microsoft.ApplicationInsights.targets │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net40 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ ├── portable-win8+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ ├── portable-win81+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ └── wp8 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── win81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ ├── wp8 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ └── wpa81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── win81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ ├── wp8 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ └── wpa81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ └── tools │ │ ├── Microsoft.ApplicationInsights.psm1 │ │ ├── win81 │ │ └── install.ps1 │ │ ├── wp8 │ │ └── install.ps1 │ │ └── wpa81 │ │ └── install.ps1 │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta │ ├── License-Stable.rtf │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta.nupkg │ ├── [Content_Types].xml │ └── lib │ │ ├── net35 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ ├── net40 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ └── net45 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ └── System.Numerics.Vectors.4.0.0 │ ├── License-Stable.rtf │ ├── System.Numerics.Vectors.4.0.0.nupkg │ ├── [Content_Types].xml │ └── lib │ ├── portable-net45+win8+wpa81 │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml │ └── win8 │ ├── System.Numerics.Vectors.WindowsRuntime.dll │ ├── System.Numerics.Vectors.WindowsRuntime.xml │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml ├── ExpandControl ├── ExpandControl.sln ├── ExpandControl │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationInsights.config │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ └── WideLogo.scale-100.png │ ├── ExpandControl.csproj │ ├── ExpandPanel.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── Themes │ │ └── Generic.xaml │ └── packages.config └── packages │ ├── Microsoft.ApplicationInsights.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── net40 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── portable-win81+wpa81 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ └── wp8 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ └── tools │ │ └── net40 │ │ ├── Microsoft.ApplicationInsights.targets │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net40 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ ├── portable-win8+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ ├── portable-win81+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ └── wp8 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── win81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ ├── wp8 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ └── wpa81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── win81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ ├── wp8 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ └── wpa81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ └── tools │ │ ├── Microsoft.ApplicationInsights.psm1 │ │ ├── win81 │ │ └── install.ps1 │ │ ├── wp8 │ │ └── install.ps1 │ │ └── wpa81 │ │ └── install.ps1 │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta │ ├── License-Stable.rtf │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta.nupkg │ ├── [Content_Types].xml │ └── lib │ │ ├── net35 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ ├── net40 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ └── net45 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ └── System.Numerics.Vectors.4.0.0 │ ├── License-Stable.rtf │ ├── System.Numerics.Vectors.4.0.0.nupkg │ ├── [Content_Types].xml │ └── lib │ ├── portable-net45+win8+wpa81 │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml │ └── win8 │ ├── System.Numerics.Vectors.WindowsRuntime.dll │ ├── System.Numerics.Vectors.WindowsRuntime.xml │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml ├── FlipControl ├── FlipControl.sln ├── FlipControl │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationInsights.config │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ └── WideLogo.scale-100.png │ ├── FlipControl.csproj │ ├── FlipPanel.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── Themes │ │ └── Generic.xaml │ └── packages.config └── packages │ ├── Microsoft.ApplicationInsights.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── net40 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── portable-win81+wpa81 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ └── wp8 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ └── tools │ │ └── net40 │ │ ├── Microsoft.ApplicationInsights.targets │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net40 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ ├── portable-win8+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ ├── portable-win81+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ └── wp8 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── win81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ ├── wp8 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ └── wpa81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── win81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ ├── wp8 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ └── wpa81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ └── tools │ │ ├── Microsoft.ApplicationInsights.psm1 │ │ ├── win81 │ │ └── install.ps1 │ │ ├── wp8 │ │ └── install.ps1 │ │ └── wpa81 │ │ └── install.ps1 │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta │ ├── License-Stable.rtf │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta.nupkg │ ├── [Content_Types].xml │ └── lib │ │ ├── net35 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ ├── net40 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ └── net45 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ └── System.Numerics.Vectors.4.0.0 │ ├── License-Stable.rtf │ ├── System.Numerics.Vectors.4.0.0.nupkg │ ├── [Content_Types].xml │ └── lib │ ├── portable-net45+win8+wpa81 │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml │ └── win8 │ ├── System.Numerics.Vectors.WindowsRuntime.dll │ ├── System.Numerics.Vectors.WindowsRuntime.xml │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml ├── HelloWorld ├── HelloWorld.sln ├── HelloWorld │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationInsights.config │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ └── WideLogo.scale-100.png │ ├── HelloWorld.csproj │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── packages.config └── packages │ ├── Microsoft.ApplicationInsights.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── net40 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── portable-win81+wpa81 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ └── wp8 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ └── tools │ │ └── net40 │ │ ├── Microsoft.ApplicationInsights.targets │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net40 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ ├── portable-win8+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ ├── portable-win81+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ └── wp8 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── win81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ ├── wp8 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ └── wpa81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── win81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ ├── wp8 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ └── wpa81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ └── tools │ │ ├── Microsoft.ApplicationInsights.psm1 │ │ ├── win81 │ │ └── install.ps1 │ │ ├── wp8 │ │ └── install.ps1 │ │ └── wpa81 │ │ └── install.ps1 │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta │ ├── License-Stable.rtf │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta.nupkg │ ├── [Content_Types].xml │ └── lib │ │ ├── net35 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ ├── net40 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ └── net45 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ └── System.Numerics.Vectors.4.0.0 │ ├── License-Stable.rtf │ ├── System.Numerics.Vectors.4.0.0.nupkg │ ├── [Content_Types].xml │ └── lib │ ├── portable-net45+win8+wpa81 │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml │ └── win8 │ ├── System.Numerics.Vectors.WindowsRuntime.dll │ ├── System.Numerics.Vectors.WindowsRuntime.xml │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml ├── ImageRotate ├── ImageRotate.sln ├── ImageRotate │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationInsights.config │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ └── WideLogo.scale-100.png │ ├── ImageRotate.csproj │ ├── Library.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── packages.config └── packages │ ├── Microsoft.ApplicationInsights.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── net40 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── portable-win81+wpa81 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ └── wp8 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ └── tools │ │ └── net40 │ │ ├── Microsoft.ApplicationInsights.targets │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net40 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ ├── portable-win8+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ ├── portable-win81+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ └── wp8 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── win81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ ├── wp8 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ └── wpa81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── win81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ ├── wp8 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ └── wpa81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ └── tools │ │ ├── Microsoft.ApplicationInsights.psm1 │ │ ├── win81 │ │ └── install.ps1 │ │ ├── wp8 │ │ └── install.ps1 │ │ └── wpa81 │ │ └── install.ps1 │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta │ ├── License-Stable.rtf │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta.nupkg │ ├── [Content_Types].xml │ └── lib │ │ ├── net35 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ ├── net40 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ └── net45 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ └── System.Numerics.Vectors.4.0.0 │ ├── License-Stable.rtf │ ├── System.Numerics.Vectors.4.0.0.nupkg │ ├── [Content_Types].xml │ └── lib │ ├── portable-net45+win8+wpa81 │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml │ └── win8 │ ├── System.Numerics.Vectors.WindowsRuntime.dll │ ├── System.Numerics.Vectors.WindowsRuntime.xml │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml ├── Location ├── Location.sln ├── Location │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationInsights.config │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ └── WideLogo.scale-100.png │ ├── Library.cs │ ├── Location.csproj │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── packages.config └── packages │ ├── Microsoft.ApplicationInsights.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── net40 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── portable-win81+wpa81 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ └── wp8 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ └── tools │ │ └── net40 │ │ ├── Microsoft.ApplicationInsights.targets │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net40 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ ├── portable-win8+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ ├── portable-win81+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ └── wp8 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── win81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ ├── wp8 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ └── wpa81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── win81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ ├── wp8 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ └── wpa81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ └── tools │ │ ├── Microsoft.ApplicationInsights.psm1 │ │ ├── win81 │ │ └── install.ps1 │ │ ├── wp8 │ │ └── install.ps1 │ │ └── wpa81 │ │ └── install.ps1 │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta │ ├── License-Stable.rtf │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta.nupkg │ ├── [Content_Types].xml │ └── lib │ │ ├── net35 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ ├── net40 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ └── net45 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ └── System.Numerics.Vectors.4.0.0 │ ├── License-Stable.rtf │ ├── System.Numerics.Vectors.4.0.0.nupkg │ ├── [Content_Types].xml │ └── lib │ ├── portable-net45+win8+wpa81 │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml │ └── win8 │ ├── System.Numerics.Vectors.WindowsRuntime.dll │ ├── System.Numerics.Vectors.WindowsRuntime.xml │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml ├── LuckyDice ├── LuckyDice.sln ├── LuckyDice │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationInsights.config │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ └── WideLogo.scale-100.png │ ├── Library.cs │ ├── LuckyDice.csproj │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── packages.config └── packages │ ├── Microsoft.ApplicationInsights.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── net40 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── portable-win81+wpa81 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ └── wp8 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ └── tools │ │ └── net40 │ │ ├── Microsoft.ApplicationInsights.targets │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net40 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ ├── portable-win8+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ ├── portable-win81+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ └── wp8 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── win81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ ├── wp8 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ └── wpa81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── win81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ ├── wp8 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ └── wpa81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ └── tools │ │ ├── Microsoft.ApplicationInsights.psm1 │ │ ├── win81 │ │ └── install.ps1 │ │ ├── wp8 │ │ └── install.ps1 │ │ └── wpa81 │ │ └── install.ps1 │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta │ ├── License-Stable.rtf │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta.nupkg │ ├── [Content_Types].xml │ └── lib │ │ ├── net35 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ ├── net40 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ └── net45 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ └── System.Numerics.Vectors.4.0.0 │ ├── License-Stable.rtf │ ├── System.Numerics.Vectors.4.0.0.nupkg │ ├── [Content_Types].xml │ └── lib │ ├── portable-net45+win8+wpa81 │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml │ └── win8 │ ├── System.Numerics.Vectors.WindowsRuntime.dll │ ├── System.Numerics.Vectors.WindowsRuntime.xml │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml ├── LuckyLotto ├── LuckyLotto.sln ├── LuckyLotto │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationInsights.config │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ └── WideLogo.scale-100.png │ ├── Library.cs │ ├── LuckyLotto.csproj │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── packages.config └── packages │ ├── Microsoft.ApplicationInsights.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── net40 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── portable-win81+wpa81 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ └── wp8 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ └── tools │ │ └── net40 │ │ ├── Microsoft.ApplicationInsights.targets │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net40 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ ├── portable-win8+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ ├── portable-win81+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ └── wp8 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── win81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ ├── wp8 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ └── wpa81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── win81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ ├── wp8 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ └── wpa81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ └── tools │ │ ├── Microsoft.ApplicationInsights.psm1 │ │ ├── win81 │ │ └── install.ps1 │ │ ├── wp8 │ │ └── install.ps1 │ │ └── wpa81 │ │ └── install.ps1 │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta │ ├── License-Stable.rtf │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta.nupkg │ ├── [Content_Types].xml │ └── lib │ │ ├── net35 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ ├── net40 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ └── net45 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ └── System.Numerics.Vectors.4.0.0 │ ├── License-Stable.rtf │ ├── System.Numerics.Vectors.4.0.0.nupkg │ ├── [Content_Types].xml │ └── lib │ ├── portable-net45+win8+wpa81 │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml │ └── win8 │ ├── System.Numerics.Vectors.WindowsRuntime.dll │ ├── System.Numerics.Vectors.WindowsRuntime.xml │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml ├── MediaPlayer ├── MediaPlayer.sln ├── MediaPlayer │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationInsights.config │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ └── WideLogo.scale-100.png │ ├── Library.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MediaPlayer.csproj │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── packages.config └── packages │ ├── Microsoft.ApplicationInsights.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── net40 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── portable-win81+wpa81 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ └── wp8 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ └── tools │ │ └── net40 │ │ ├── Microsoft.ApplicationInsights.targets │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net40 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ ├── portable-win8+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ ├── portable-win81+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ └── wp8 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── win81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ ├── wp8 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ └── wpa81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── win81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ ├── wp8 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ └── wpa81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ └── tools │ │ ├── Microsoft.ApplicationInsights.psm1 │ │ ├── win81 │ │ └── install.ps1 │ │ ├── wp8 │ │ └── install.ps1 │ │ └── wpa81 │ │ └── install.ps1 │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta │ ├── License-Stable.rtf │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta.nupkg │ ├── [Content_Types].xml │ └── lib │ │ ├── net35 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ ├── net40 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ └── net45 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ └── System.Numerics.Vectors.4.0.0 │ ├── License-Stable.rtf │ ├── System.Numerics.Vectors.4.0.0.nupkg │ ├── [Content_Types].xml │ └── lib │ ├── portable-net45+win8+wpa81 │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml │ └── win8 │ ├── System.Numerics.Vectors.WindowsRuntime.dll │ ├── System.Numerics.Vectors.WindowsRuntime.xml │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml ├── MemoryGame ├── MemoryGame.sln ├── MemoryGame │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationInsights.config │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ └── WideLogo.scale-100.png │ ├── Library.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MemoryGame.csproj │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── packages.config └── packages │ ├── Microsoft.ApplicationInsights.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── net40 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── portable-win81+wpa81 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ └── wp8 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ └── tools │ │ └── net40 │ │ ├── Microsoft.ApplicationInsights.targets │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net40 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ ├── portable-win8+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ ├── portable-win81+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ └── wp8 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── win81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ ├── wp8 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ └── wpa81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── win81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ ├── wp8 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ └── wpa81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ └── tools │ │ ├── Microsoft.ApplicationInsights.psm1 │ │ ├── win81 │ │ └── install.ps1 │ │ ├── wp8 │ │ └── install.ps1 │ │ └── wpa81 │ │ └── install.ps1 │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta │ ├── License-Stable.rtf │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta.nupkg │ ├── [Content_Types].xml │ └── lib │ │ ├── net35 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ ├── net40 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ └── net45 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ └── System.Numerics.Vectors.4.0.0 │ ├── License-Stable.rtf │ ├── System.Numerics.Vectors.4.0.0.nupkg │ ├── [Content_Types].xml │ └── lib │ ├── portable-net45+win8+wpa81 │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml │ └── win8 │ ├── System.Numerics.Vectors.WindowsRuntime.dll │ ├── System.Numerics.Vectors.WindowsRuntime.xml │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml ├── NoughtsAndCrosses ├── NoughtsAndCrosses.sln ├── NoughtsAndCrosses │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationInsights.config │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ └── WideLogo.scale-100.png │ ├── Library.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── NoughtsAndCrosses.csproj │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── packages.config └── packages │ ├── Microsoft.ApplicationInsights.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── net40 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── portable-win81+wpa81 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ └── wp8 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ └── tools │ │ └── net40 │ │ ├── Microsoft.ApplicationInsights.targets │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net40 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ ├── portable-win8+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ ├── portable-win81+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ └── wp8 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── win81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ ├── wp8 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ └── wpa81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── win81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ ├── wp8 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ └── wpa81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ └── tools │ │ ├── Microsoft.ApplicationInsights.psm1 │ │ ├── win81 │ │ └── install.ps1 │ │ ├── wp8 │ │ └── install.ps1 │ │ └── wpa81 │ │ └── install.ps1 │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta │ ├── License-Stable.rtf │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta.nupkg │ ├── [Content_Types].xml │ └── lib │ │ ├── net35 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ ├── net40 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ └── net45 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ └── System.Numerics.Vectors.4.0.0 │ ├── License-Stable.rtf │ ├── System.Numerics.Vectors.4.0.0.nupkg │ ├── [Content_Types].xml │ └── lib │ ├── portable-net45+win8+wpa81 │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml │ └── win8 │ ├── System.Numerics.Vectors.WindowsRuntime.dll │ ├── System.Numerics.Vectors.WindowsRuntime.xml │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml ├── PlayingCards ├── PlayingCards.sln ├── PlayingCards │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationInsights.config │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ └── WideLogo.scale-100.png │ ├── Library.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── PlayingCards.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── packages.config └── packages │ ├── Microsoft.ApplicationInsights.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── net40 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── portable-win81+wpa81 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ └── wp8 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ └── tools │ │ └── net40 │ │ ├── Microsoft.ApplicationInsights.targets │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net40 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ ├── portable-win8+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ ├── portable-win81+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ └── wp8 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── win81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ ├── wp8 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ └── wpa81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── win81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ ├── wp8 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ └── wpa81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ └── tools │ │ ├── Microsoft.ApplicationInsights.psm1 │ │ ├── win81 │ │ └── install.ps1 │ │ ├── wp8 │ │ └── install.ps1 │ │ └── wpa81 │ │ └── install.ps1 │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta │ ├── License-Stable.rtf │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta.nupkg │ ├── [Content_Types].xml │ └── lib │ │ ├── net35 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ ├── net40 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ └── net45 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ └── System.Numerics.Vectors.4.0.0 │ ├── License-Stable.rtf │ ├── System.Numerics.Vectors.4.0.0.nupkg │ ├── [Content_Types].xml │ └── lib │ ├── portable-net45+win8+wpa81 │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml │ └── win8 │ ├── System.Numerics.Vectors.WindowsRuntime.dll │ ├── System.Numerics.Vectors.WindowsRuntime.xml │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml ├── RSSReader ├── RSSReader.sln ├── RSSReader │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationInsights.config │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ └── WideLogo.scale-100.png │ ├── Library.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── RSSReader.csproj │ └── packages.config └── packages │ ├── Microsoft.ApplicationInsights.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── net40 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── portable-win81+wpa81 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ └── wp8 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ └── tools │ │ └── net40 │ │ ├── Microsoft.ApplicationInsights.targets │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net40 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ ├── portable-win8+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ ├── portable-win81+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ └── wp8 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── win81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ ├── wp8 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ └── wpa81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── win81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ ├── wp8 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ └── wpa81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ └── tools │ │ ├── Microsoft.ApplicationInsights.psm1 │ │ ├── win81 │ │ └── install.ps1 │ │ ├── wp8 │ │ └── install.ps1 │ │ └── wpa81 │ │ └── install.ps1 │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta │ ├── License-Stable.rtf │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta.nupkg │ ├── [Content_Types].xml │ └── lib │ │ ├── net35 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ ├── net40 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ └── net45 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ └── System.Numerics.Vectors.4.0.0 │ ├── License-Stable.rtf │ ├── System.Numerics.Vectors.4.0.0.nupkg │ ├── [Content_Types].xml │ └── lib │ ├── portable-net45+win8+wpa81 │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml │ └── win8 │ ├── System.Numerics.Vectors.WindowsRuntime.dll │ ├── System.Numerics.Vectors.WindowsRuntime.xml │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml ├── RichEditor ├── RichEditor.sln ├── RichEditor │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationInsights.config │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ └── WideLogo.scale-100.png │ ├── Library.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── RichEditor.csproj │ └── packages.config └── packages │ ├── Microsoft.ApplicationInsights.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── net40 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── portable-win81+wpa81 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ └── wp8 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ └── tools │ │ └── net40 │ │ ├── Microsoft.ApplicationInsights.targets │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net40 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ ├── portable-win8+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ ├── portable-win81+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ └── wp8 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── win81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ ├── wp8 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ └── wpa81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── win81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ ├── wp8 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ └── wpa81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ └── tools │ │ ├── Microsoft.ApplicationInsights.psm1 │ │ ├── win81 │ │ └── install.ps1 │ │ ├── wp8 │ │ └── install.ps1 │ │ └── wpa81 │ │ └── install.ps1 │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta │ ├── License-Stable.rtf │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta.nupkg │ ├── [Content_Types].xml │ └── lib │ │ ├── net35 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ ├── net40 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ └── net45 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ └── System.Numerics.Vectors.4.0.0 │ ├── License-Stable.rtf │ ├── System.Numerics.Vectors.4.0.0.nupkg │ ├── [Content_Types].xml │ └── lib │ ├── portable-net45+win8+wpa81 │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml │ └── win8 │ ├── System.Numerics.Vectors.WindowsRuntime.dll │ ├── System.Numerics.Vectors.WindowsRuntime.xml │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml ├── SlidePlayer ├── SlidePlayer.sln ├── SlidePlayer │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationInsights.config │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ └── WideLogo.scale-100.png │ ├── Library.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── SlidePlayer.csproj │ └── packages.config └── packages │ ├── Microsoft.ApplicationInsights.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── net40 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── portable-win81+wpa81 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ └── wp8 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ └── tools │ │ └── net40 │ │ ├── Microsoft.ApplicationInsights.targets │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net40 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ ├── portable-win8+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ ├── portable-win81+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ └── wp8 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── win81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ ├── wp8 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ └── wpa81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── win81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ ├── wp8 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ └── wpa81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ └── tools │ │ ├── Microsoft.ApplicationInsights.psm1 │ │ ├── win81 │ │ └── install.ps1 │ │ ├── wp8 │ │ └── install.ps1 │ │ └── wpa81 │ │ └── install.ps1 │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta │ ├── License-Stable.rtf │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta.nupkg │ ├── [Content_Types].xml │ └── lib │ │ ├── net35 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ ├── net40 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ └── net45 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ └── System.Numerics.Vectors.4.0.0 │ ├── License-Stable.rtf │ ├── System.Numerics.Vectors.4.0.0.nupkg │ ├── [Content_Types].xml │ └── lib │ ├── portable-net45+win8+wpa81 │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml │ └── win8 │ ├── System.Numerics.Vectors.WindowsRuntime.dll │ ├── System.Numerics.Vectors.WindowsRuntime.xml │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml ├── TaskEditor ├── TaskEditor.sln ├── TaskEditor │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationInsights.config │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ └── WideLogo.scale-100.png │ ├── Library.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── TaskEditor.csproj │ └── packages.config └── packages │ ├── Microsoft.ApplicationInsights.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── net40 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── portable-win81+wpa81 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ └── wp8 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ └── tools │ │ └── net40 │ │ ├── Microsoft.ApplicationInsights.targets │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net40 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ ├── portable-win8+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ ├── portable-win81+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ └── wp8 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── win81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ ├── wp8 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ └── wpa81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── win81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ ├── wp8 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ └── wpa81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ └── tools │ │ ├── Microsoft.ApplicationInsights.psm1 │ │ ├── win81 │ │ └── install.ps1 │ │ ├── wp8 │ │ └── install.ps1 │ │ └── wpa81 │ │ └── install.ps1 │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta │ ├── License-Stable.rtf │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta.nupkg │ ├── [Content_Types].xml │ └── lib │ │ ├── net35 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ ├── net40 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ └── net45 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ └── System.Numerics.Vectors.4.0.0 │ ├── License-Stable.rtf │ ├── System.Numerics.Vectors.4.0.0.nupkg │ ├── [Content_Types].xml │ └── lib │ ├── portable-net45+win8+wpa81 │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml │ └── win8 │ ├── System.Numerics.Vectors.WindowsRuntime.dll │ ├── System.Numerics.Vectors.WindowsRuntime.xml │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml ├── TextEditor ├── TextEditor.sln ├── TextEditor │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationInsights.config │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ └── WideLogo.scale-100.png │ ├── Library.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── TextEditor.csproj │ └── packages.config └── packages │ ├── Microsoft.ApplicationInsights.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── net40 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── portable-win81+wpa81 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ └── wp8 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ └── tools │ │ └── net40 │ │ ├── Microsoft.ApplicationInsights.targets │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net40 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ ├── portable-win8+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ ├── portable-win81+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ └── wp8 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── win81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ ├── wp8 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ └── wpa81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── win81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ ├── wp8 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ └── wpa81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ └── tools │ │ ├── Microsoft.ApplicationInsights.psm1 │ │ ├── win81 │ │ └── install.ps1 │ │ ├── wp8 │ │ └── install.ps1 │ │ └── wpa81 │ │ └── install.ps1 │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta │ ├── License-Stable.rtf │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta.nupkg │ ├── [Content_Types].xml │ └── lib │ │ ├── net35 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ ├── net40 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ └── net45 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ └── System.Numerics.Vectors.4.0.0 │ ├── License-Stable.rtf │ ├── System.Numerics.Vectors.4.0.0.nupkg │ ├── [Content_Types].xml │ └── lib │ ├── portable-net45+win8+wpa81 │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml │ └── win8 │ ├── System.Numerics.Vectors.WindowsRuntime.dll │ ├── System.Numerics.Vectors.WindowsRuntime.xml │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml ├── Tiles ├── Tiles.sln ├── Tiles │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationInsights.config │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ └── WideLogo.scale-100.png │ ├── Library.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── Tiles.csproj │ └── packages.config └── packages │ ├── Microsoft.ApplicationInsights.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── net40 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── portable-win81+wpa81 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ └── wp8 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ └── tools │ │ └── net40 │ │ ├── Microsoft.ApplicationInsights.targets │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net40 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ ├── portable-win8+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ ├── portable-win81+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ └── wp8 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── win81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ ├── wp8 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ └── wpa81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── win81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ ├── wp8 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ └── wpa81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ └── tools │ │ ├── Microsoft.ApplicationInsights.psm1 │ │ ├── win81 │ │ └── install.ps1 │ │ ├── wp8 │ │ └── install.ps1 │ │ └── wpa81 │ │ └── install.ps1 │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta │ ├── License-Stable.rtf │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta.nupkg │ ├── [Content_Types].xml │ └── lib │ │ ├── net35 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ ├── net40 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ └── net45 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ └── System.Numerics.Vectors.4.0.0 │ ├── License-Stable.rtf │ ├── System.Numerics.Vectors.4.0.0.nupkg │ ├── [Content_Types].xml │ └── lib │ ├── portable-net45+win8+wpa81 │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml │ └── win8 │ ├── System.Numerics.Vectors.WindowsRuntime.dll │ ├── System.Numerics.Vectors.WindowsRuntime.xml │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml ├── Toasts ├── Toasts.sln ├── Toasts │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationInsights.config │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ └── WideLogo.scale-100.png │ ├── Library.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── Toasts.csproj │ └── packages.config └── packages │ ├── Microsoft.ApplicationInsights.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── net40 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── portable-win81+wpa81 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ └── wp8 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ └── tools │ │ └── net40 │ │ ├── Microsoft.ApplicationInsights.targets │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net40 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ ├── portable-win8+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ ├── portable-win81+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ └── wp8 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── win81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ ├── wp8 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ └── wpa81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── win81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ ├── wp8 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ └── wpa81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ └── tools │ │ ├── Microsoft.ApplicationInsights.psm1 │ │ ├── win81 │ │ └── install.ps1 │ │ ├── wp8 │ │ └── install.ps1 │ │ └── wpa81 │ │ └── install.ps1 │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta │ ├── License-Stable.rtf │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta.nupkg │ ├── [Content_Types].xml │ └── lib │ │ ├── net35 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ ├── net40 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ └── net45 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ └── System.Numerics.Vectors.4.0.0 │ ├── License-Stable.rtf │ ├── System.Numerics.Vectors.4.0.0.nupkg │ ├── [Content_Types].xml │ └── lib │ ├── portable-net45+win8+wpa81 │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml │ └── win8 │ ├── System.Numerics.Vectors.WindowsRuntime.dll │ ├── System.Numerics.Vectors.WindowsRuntime.xml │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml ├── TouchGame ├── TouchGame.sln ├── TouchGame │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationInsights.config │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ └── WideLogo.scale-100.png │ ├── Library.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── TouchGame.csproj │ └── packages.config └── packages │ ├── Microsoft.ApplicationInsights.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── net40 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── portable-win81+wpa81 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ └── wp8 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ └── tools │ │ └── net40 │ │ ├── Microsoft.ApplicationInsights.targets │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net40 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ ├── portable-win8+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ ├── portable-win81+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ └── wp8 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── win81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ ├── wp8 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ └── wpa81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── win81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ ├── wp8 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ └── wpa81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ └── tools │ │ ├── Microsoft.ApplicationInsights.psm1 │ │ ├── win81 │ │ └── install.ps1 │ │ ├── wp8 │ │ └── install.ps1 │ │ └── wpa81 │ │ └── install.ps1 │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta │ ├── License-Stable.rtf │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta.nupkg │ ├── [Content_Types].xml │ └── lib │ │ ├── net35 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ ├── net40 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ └── net45 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ └── System.Numerics.Vectors.4.0.0 │ ├── License-Stable.rtf │ ├── System.Numerics.Vectors.4.0.0.nupkg │ ├── [Content_Types].xml │ └── lib │ ├── portable-net45+win8+wpa81 │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml │ └── win8 │ ├── System.Numerics.Vectors.WindowsRuntime.dll │ ├── System.Numerics.Vectors.WindowsRuntime.xml │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml ├── VideoRecorder ├── VideoRecorder.sln ├── VideoRecorder │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationInsights.config │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ └── WideLogo.scale-100.png │ ├── Library.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── VideoRecorder.csproj │ └── packages.config └── packages │ ├── Microsoft.ApplicationInsights.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── net40 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── portable-win81+wpa81 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ └── wp8 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ └── tools │ │ └── net40 │ │ ├── Microsoft.ApplicationInsights.targets │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net40 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ ├── portable-win8+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ ├── portable-win81+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ └── wp8 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── win81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ ├── wp8 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ └── wpa81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── win81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ ├── wp8 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ └── wpa81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ └── tools │ │ ├── Microsoft.ApplicationInsights.psm1 │ │ ├── win81 │ │ └── install.ps1 │ │ ├── wp8 │ │ └── install.ps1 │ │ └── wpa81 │ │ └── install.ps1 │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta │ ├── License-Stable.rtf │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta.nupkg │ ├── [Content_Types].xml │ └── lib │ │ ├── net35 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ ├── net40 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ └── net45 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ └── System.Numerics.Vectors.4.0.0 │ ├── License-Stable.rtf │ ├── System.Numerics.Vectors.4.0.0.nupkg │ ├── [Content_Types].xml │ └── lib │ ├── portable-net45+win8+wpa81 │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml │ └── win8 │ ├── System.Numerics.Vectors.WindowsRuntime.dll │ ├── System.Numerics.Vectors.WindowsRuntime.xml │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml ├── WebBrowser ├── WebBrowser.sln ├── WebBrowser │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationInsights.config │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ └── WideLogo.scale-100.png │ ├── Library.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── WebBrowser.csproj │ └── packages.config └── packages │ ├── Microsoft.ApplicationInsights.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── net40 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── portable-win81+wpa81 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ │ └── wp8 │ │ │ ├── Microsoft.ApplicationInsights.XML │ │ │ └── Microsoft.ApplicationInsights.dll │ └── tools │ │ └── net40 │ │ ├── Microsoft.ApplicationInsights.targets │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net40 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ ├── portable-win8+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ ├── portable-win81+wpa81 │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ │ └── wp8 │ │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177 │ ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177.nupkg │ ├── [Content_Types].xml │ ├── content │ │ ├── win81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ ├── wp8 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ │ └── wpa81 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── lib │ │ ├── win81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ ├── wp8 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ │ └── wpa81 │ │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ └── tools │ │ ├── Microsoft.ApplicationInsights.psm1 │ │ ├── win81 │ │ └── install.ps1 │ │ ├── wp8 │ │ └── install.ps1 │ │ └── wpa81 │ │ └── install.ps1 │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta │ ├── License-Stable.rtf │ ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta.nupkg │ ├── [Content_Types].xml │ └── lib │ │ ├── net35 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ ├── net40 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ └── net45 │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ └── System.Numerics.Vectors.4.0.0 │ ├── License-Stable.rtf │ ├── System.Numerics.Vectors.4.0.0.nupkg │ ├── [Content_Types].xml │ └── lib │ ├── portable-net45+win8+wpa81 │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml │ └── win8 │ ├── System.Numerics.Vectors.WindowsRuntime.dll │ ├── System.Numerics.Vectors.WindowsRuntime.xml │ ├── System.Numerics.Vectors.dll │ └── System.Numerics.Vectors.xml └── WrapControl ├── WrapControl.sln ├── WrapControl ├── App.xaml ├── App.xaml.cs ├── ApplicationInsights.config ├── Assets │ ├── Logo.scale-100.png │ ├── SmallLogo.scale-100.png │ ├── SplashScreen.scale-100.png │ ├── StoreLogo.scale-100.png │ └── WideLogo.scale-100.png ├── MainPage.xaml ├── MainPage.xaml.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml ├── WrapControl.csproj ├── WrapPanel.cs └── packages.config └── packages ├── Microsoft.ApplicationInsights.0.14.3-build00177 ├── Microsoft.ApplicationInsights.0.14.3-build00177.nupkg ├── [Content_Types].xml ├── content │ ├── ApplicationInsights.config.install.xdt │ ├── ApplicationInsights.config.transform │ └── ApplicationInsights.config.uninstall.xdt ├── lib │ ├── net40 │ │ ├── Microsoft.ApplicationInsights.XML │ │ └── Microsoft.ApplicationInsights.dll │ ├── portable-win81+wpa81 │ │ ├── Microsoft.ApplicationInsights.XML │ │ └── Microsoft.ApplicationInsights.dll │ └── wp8 │ │ ├── Microsoft.ApplicationInsights.XML │ │ └── Microsoft.ApplicationInsights.dll └── tools │ └── net40 │ ├── Microsoft.ApplicationInsights.targets │ ├── install.ps1 │ └── uninstall.ps1 ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177 ├── Microsoft.ApplicationInsights.PersistenceChannel.0.14.3-build00177.nupkg ├── [Content_Types].xml ├── content │ ├── ApplicationInsights.config.install.xdt │ └── ApplicationInsights.config.uninstall.xdt └── lib │ ├── net40 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ ├── portable-win8+wpa81 │ └── Microsoft.ApplicationInsights.PersistenceChannel.XML │ ├── portable-win81+wpa81 │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll │ └── wp8 │ ├── Microsoft.ApplicationInsights.PersistenceChannel.XML │ └── Microsoft.ApplicationInsights.PersistenceChannel.dll ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177 ├── Microsoft.ApplicationInsights.WindowsApps.0.14.3-build00177.nupkg ├── [Content_Types].xml ├── content │ ├── win81 │ │ ├── ApplicationInsights.config.install.xdt │ │ └── ApplicationInsights.config.uninstall.xdt │ ├── wp8 │ │ ├── ApplicationInsights.config.install.xdt │ │ └── ApplicationInsights.config.uninstall.xdt │ └── wpa81 │ │ ├── ApplicationInsights.config.install.xdt │ │ └── ApplicationInsights.config.uninstall.xdt ├── lib │ ├── win81 │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ ├── wp8 │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll │ └── wpa81 │ │ ├── Microsoft.ApplicationInsights.Extensibility.Windows.XML │ │ └── Microsoft.ApplicationInsights.Extensibility.Windows.dll └── tools │ ├── Microsoft.ApplicationInsights.psm1 │ ├── win81 │ └── install.ps1 │ ├── wp8 │ └── install.ps1 │ └── wpa81 │ └── install.ps1 ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta ├── License-Stable.rtf ├── Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.16-beta.nupkg ├── [Content_Types].xml └── lib │ ├── net35 │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ ├── net40 │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ └── Microsoft.Diagnostics.Tracing.EventSource.dll │ └── net45 │ ├── Microsoft.Diagnostics.Tracing.EventSource.XML │ └── Microsoft.Diagnostics.Tracing.EventSource.dll └── System.Numerics.Vectors.4.0.0 ├── License-Stable.rtf ├── System.Numerics.Vectors.4.0.0.nupkg ├── [Content_Types].xml └── lib ├── portable-net45+win8+wpa81 ├── System.Numerics.Vectors.dll └── System.Numerics.Vectors.xml └── win8 ├── System.Numerics.Vectors.WindowsRuntime.dll ├── System.Numerics.Vectors.WindowsRuntime.xml ├── System.Numerics.Vectors.dll └── System.Numerics.Vectors.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/.gitignore -------------------------------------------------------------------------------- /Agent/Agent.Background/Agent.Background.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Agent/Agent.Background/Agent.Background.csproj -------------------------------------------------------------------------------- /Agent/Agent.Background/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Agent/Agent.Background/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Agent/Agent.Background/Trigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Agent/Agent.Background/Trigger.cs -------------------------------------------------------------------------------- /Agent/Agent.Background/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Agent/Agent.Background/packages.config -------------------------------------------------------------------------------- /Agent/Agent.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Agent/Agent.sln -------------------------------------------------------------------------------- /Agent/Agent/Agent.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Agent/Agent/Agent.csproj -------------------------------------------------------------------------------- /Agent/Agent/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Agent/Agent/App.xaml -------------------------------------------------------------------------------- /Agent/Agent/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Agent/Agent/App.xaml.cs -------------------------------------------------------------------------------- /Agent/Agent/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Agent/Agent/ApplicationInsights.config -------------------------------------------------------------------------------- /Agent/Agent/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Agent/Agent/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /Agent/Agent/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Agent/Agent/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /Agent/Agent/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Agent/Agent/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /Agent/Agent/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Agent/Agent/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /Agent/Agent/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Agent/Agent/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /Agent/Agent/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Agent/Agent/Library.cs -------------------------------------------------------------------------------- /Agent/Agent/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Agent/Agent/MainPage.xaml -------------------------------------------------------------------------------- /Agent/Agent/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Agent/Agent/MainPage.xaml.cs -------------------------------------------------------------------------------- /Agent/Agent/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Agent/Agent/Package.appxmanifest -------------------------------------------------------------------------------- /Agent/Agent/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Agent/Agent/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Agent/Agent/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Agent/Agent/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Agent/Agent/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Agent/Agent/packages.config -------------------------------------------------------------------------------- /Agent/packages/Microsoft.ApplicationInsights.0.14.3-build00177/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Agent/packages/Microsoft.ApplicationInsights.0.14.3-build00177/[Content_Types].xml -------------------------------------------------------------------------------- /Agent/packages/Microsoft.ApplicationInsights.0.14.3-build00177/tools/net40/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Agent/packages/Microsoft.ApplicationInsights.0.14.3-build00177/tools/net40/install.ps1 -------------------------------------------------------------------------------- /Agent/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Agent/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf -------------------------------------------------------------------------------- /Agent/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Agent/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg -------------------------------------------------------------------------------- /Agent/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Agent/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml -------------------------------------------------------------------------------- /Agent/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Agent/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /Agent/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Agent/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /ApplicationBar/ApplicationBar.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ApplicationBar/ApplicationBar.sln -------------------------------------------------------------------------------- /ApplicationBar/ApplicationBar/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ApplicationBar/ApplicationBar/App.xaml -------------------------------------------------------------------------------- /ApplicationBar/ApplicationBar/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ApplicationBar/ApplicationBar/App.xaml.cs -------------------------------------------------------------------------------- /ApplicationBar/ApplicationBar/ApplicationBar.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ApplicationBar/ApplicationBar/ApplicationBar.csproj -------------------------------------------------------------------------------- /ApplicationBar/ApplicationBar/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ApplicationBar/ApplicationBar/ApplicationInsights.config -------------------------------------------------------------------------------- /ApplicationBar/ApplicationBar/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ApplicationBar/ApplicationBar/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /ApplicationBar/ApplicationBar/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ApplicationBar/ApplicationBar/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /ApplicationBar/ApplicationBar/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ApplicationBar/ApplicationBar/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /ApplicationBar/ApplicationBar/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ApplicationBar/ApplicationBar/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /ApplicationBar/ApplicationBar/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ApplicationBar/ApplicationBar/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /ApplicationBar/ApplicationBar/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ApplicationBar/ApplicationBar/MainPage.xaml -------------------------------------------------------------------------------- /ApplicationBar/ApplicationBar/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ApplicationBar/ApplicationBar/MainPage.xaml.cs -------------------------------------------------------------------------------- /ApplicationBar/ApplicationBar/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ApplicationBar/ApplicationBar/Package.appxmanifest -------------------------------------------------------------------------------- /ApplicationBar/ApplicationBar/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ApplicationBar/ApplicationBar/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ApplicationBar/ApplicationBar/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ApplicationBar/ApplicationBar/Properties/Default.rd.xml -------------------------------------------------------------------------------- /ApplicationBar/ApplicationBar/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ApplicationBar/ApplicationBar/packages.config -------------------------------------------------------------------------------- /ApplicationBar/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ApplicationBar/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf -------------------------------------------------------------------------------- /ApplicationBar/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ApplicationBar/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml -------------------------------------------------------------------------------- /AudioRecorder/AudioRecorder.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/AudioRecorder/AudioRecorder.sln -------------------------------------------------------------------------------- /AudioRecorder/AudioRecorder/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/AudioRecorder/AudioRecorder/App.xaml -------------------------------------------------------------------------------- /AudioRecorder/AudioRecorder/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/AudioRecorder/AudioRecorder/App.xaml.cs -------------------------------------------------------------------------------- /AudioRecorder/AudioRecorder/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/AudioRecorder/AudioRecorder/ApplicationInsights.config -------------------------------------------------------------------------------- /AudioRecorder/AudioRecorder/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/AudioRecorder/AudioRecorder/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /AudioRecorder/AudioRecorder/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/AudioRecorder/AudioRecorder/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /AudioRecorder/AudioRecorder/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/AudioRecorder/AudioRecorder/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /AudioRecorder/AudioRecorder/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/AudioRecorder/AudioRecorder/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /AudioRecorder/AudioRecorder/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/AudioRecorder/AudioRecorder/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /AudioRecorder/AudioRecorder/AudioRecorder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/AudioRecorder/AudioRecorder/AudioRecorder.csproj -------------------------------------------------------------------------------- /AudioRecorder/AudioRecorder/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/AudioRecorder/AudioRecorder/Library.cs -------------------------------------------------------------------------------- /AudioRecorder/AudioRecorder/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/AudioRecorder/AudioRecorder/MainPage.xaml -------------------------------------------------------------------------------- /AudioRecorder/AudioRecorder/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/AudioRecorder/AudioRecorder/MainPage.xaml.cs -------------------------------------------------------------------------------- /AudioRecorder/AudioRecorder/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/AudioRecorder/AudioRecorder/Package.appxmanifest -------------------------------------------------------------------------------- /AudioRecorder/AudioRecorder/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/AudioRecorder/AudioRecorder/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AudioRecorder/AudioRecorder/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/AudioRecorder/AudioRecorder/Properties/Default.rd.xml -------------------------------------------------------------------------------- /AudioRecorder/AudioRecorder/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/AudioRecorder/AudioRecorder/packages.config -------------------------------------------------------------------------------- /AudioRecorder/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/AudioRecorder/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf -------------------------------------------------------------------------------- /AudioRecorder/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/AudioRecorder/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml -------------------------------------------------------------------------------- /CarouselControl/CarouselControl.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CarouselControl/CarouselControl.sln -------------------------------------------------------------------------------- /CarouselControl/CarouselControl/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CarouselControl/CarouselControl/App.xaml -------------------------------------------------------------------------------- /CarouselControl/CarouselControl/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CarouselControl/CarouselControl/App.xaml.cs -------------------------------------------------------------------------------- /CarouselControl/CarouselControl/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CarouselControl/CarouselControl/ApplicationInsights.config -------------------------------------------------------------------------------- /CarouselControl/CarouselControl/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CarouselControl/CarouselControl/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /CarouselControl/CarouselControl/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CarouselControl/CarouselControl/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /CarouselControl/CarouselControl/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CarouselControl/CarouselControl/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /CarouselControl/CarouselControl/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CarouselControl/CarouselControl/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /CarouselControl/CarouselControl/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CarouselControl/CarouselControl/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /CarouselControl/CarouselControl/Carousel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CarouselControl/CarouselControl/Carousel.xaml -------------------------------------------------------------------------------- /CarouselControl/CarouselControl/Carousel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CarouselControl/CarouselControl/Carousel.xaml.cs -------------------------------------------------------------------------------- /CarouselControl/CarouselControl/CarouselControl.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CarouselControl/CarouselControl/CarouselControl.csproj -------------------------------------------------------------------------------- /CarouselControl/CarouselControl/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CarouselControl/CarouselControl/MainPage.xaml -------------------------------------------------------------------------------- /CarouselControl/CarouselControl/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CarouselControl/CarouselControl/MainPage.xaml.cs -------------------------------------------------------------------------------- /CarouselControl/CarouselControl/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CarouselControl/CarouselControl/Package.appxmanifest -------------------------------------------------------------------------------- /CarouselControl/CarouselControl/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CarouselControl/CarouselControl/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CarouselControl/CarouselControl/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CarouselControl/CarouselControl/Properties/Default.rd.xml -------------------------------------------------------------------------------- /CarouselControl/CarouselControl/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CarouselControl/CarouselControl/packages.config -------------------------------------------------------------------------------- /CarouselControl/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CarouselControl/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf -------------------------------------------------------------------------------- /CarouselControl/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CarouselControl/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml -------------------------------------------------------------------------------- /ClockControl/ClockControl.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ClockControl/ClockControl.sln -------------------------------------------------------------------------------- /ClockControl/ClockControl/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ClockControl/ClockControl/App.xaml -------------------------------------------------------------------------------- /ClockControl/ClockControl/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ClockControl/ClockControl/App.xaml.cs -------------------------------------------------------------------------------- /ClockControl/ClockControl/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ClockControl/ClockControl/ApplicationInsights.config -------------------------------------------------------------------------------- /ClockControl/ClockControl/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ClockControl/ClockControl/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /ClockControl/ClockControl/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ClockControl/ClockControl/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /ClockControl/ClockControl/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ClockControl/ClockControl/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /ClockControl/ClockControl/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ClockControl/ClockControl/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /ClockControl/ClockControl/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ClockControl/ClockControl/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /ClockControl/ClockControl/Clock.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ClockControl/ClockControl/Clock.xaml -------------------------------------------------------------------------------- /ClockControl/ClockControl/Clock.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ClockControl/ClockControl/Clock.xaml.cs -------------------------------------------------------------------------------- /ClockControl/ClockControl/ClockControl.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ClockControl/ClockControl/ClockControl.csproj -------------------------------------------------------------------------------- /ClockControl/ClockControl/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ClockControl/ClockControl/MainPage.xaml -------------------------------------------------------------------------------- /ClockControl/ClockControl/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ClockControl/ClockControl/MainPage.xaml.cs -------------------------------------------------------------------------------- /ClockControl/ClockControl/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ClockControl/ClockControl/Package.appxmanifest -------------------------------------------------------------------------------- /ClockControl/ClockControl/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ClockControl/ClockControl/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ClockControl/ClockControl/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ClockControl/ClockControl/Properties/Default.rd.xml -------------------------------------------------------------------------------- /ClockControl/ClockControl/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ClockControl/ClockControl/packages.config -------------------------------------------------------------------------------- /ClockControl/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ClockControl/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf -------------------------------------------------------------------------------- /ClockControl/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ClockControl/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg -------------------------------------------------------------------------------- /ClockControl/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ClockControl/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml -------------------------------------------------------------------------------- /CustomButton/CustomButton.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomButton/CustomButton.sln -------------------------------------------------------------------------------- /CustomButton/CustomButton/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomButton/CustomButton/App.xaml -------------------------------------------------------------------------------- /CustomButton/CustomButton/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomButton/CustomButton/App.xaml.cs -------------------------------------------------------------------------------- /CustomButton/CustomButton/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomButton/CustomButton/ApplicationInsights.config -------------------------------------------------------------------------------- /CustomButton/CustomButton/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomButton/CustomButton/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /CustomButton/CustomButton/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomButton/CustomButton/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /CustomButton/CustomButton/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomButton/CustomButton/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /CustomButton/CustomButton/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomButton/CustomButton/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /CustomButton/CustomButton/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomButton/CustomButton/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /CustomButton/CustomButton/CustomButton.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomButton/CustomButton/CustomButton.csproj -------------------------------------------------------------------------------- /CustomButton/CustomButton/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomButton/CustomButton/MainPage.xaml -------------------------------------------------------------------------------- /CustomButton/CustomButton/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomButton/CustomButton/MainPage.xaml.cs -------------------------------------------------------------------------------- /CustomButton/CustomButton/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomButton/CustomButton/Package.appxmanifest -------------------------------------------------------------------------------- /CustomButton/CustomButton/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomButton/CustomButton/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CustomButton/CustomButton/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomButton/CustomButton/Properties/Default.rd.xml -------------------------------------------------------------------------------- /CustomButton/CustomButton/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomButton/CustomButton/packages.config -------------------------------------------------------------------------------- /CustomButton/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomButton/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf -------------------------------------------------------------------------------- /CustomButton/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomButton/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg -------------------------------------------------------------------------------- /CustomButton/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomButton/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml -------------------------------------------------------------------------------- /CustomSlider/CustomSlider.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomSlider/CustomSlider.sln -------------------------------------------------------------------------------- /CustomSlider/CustomSlider/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomSlider/CustomSlider/App.xaml -------------------------------------------------------------------------------- /CustomSlider/CustomSlider/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomSlider/CustomSlider/App.xaml.cs -------------------------------------------------------------------------------- /CustomSlider/CustomSlider/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomSlider/CustomSlider/ApplicationInsights.config -------------------------------------------------------------------------------- /CustomSlider/CustomSlider/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomSlider/CustomSlider/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /CustomSlider/CustomSlider/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomSlider/CustomSlider/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /CustomSlider/CustomSlider/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomSlider/CustomSlider/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /CustomSlider/CustomSlider/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomSlider/CustomSlider/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /CustomSlider/CustomSlider/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomSlider/CustomSlider/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /CustomSlider/CustomSlider/CustomSlider.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomSlider/CustomSlider/CustomSlider.csproj -------------------------------------------------------------------------------- /CustomSlider/CustomSlider/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomSlider/CustomSlider/MainPage.xaml -------------------------------------------------------------------------------- /CustomSlider/CustomSlider/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomSlider/CustomSlider/MainPage.xaml.cs -------------------------------------------------------------------------------- /CustomSlider/CustomSlider/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomSlider/CustomSlider/Package.appxmanifest -------------------------------------------------------------------------------- /CustomSlider/CustomSlider/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomSlider/CustomSlider/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CustomSlider/CustomSlider/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomSlider/CustomSlider/Properties/Default.rd.xml -------------------------------------------------------------------------------- /CustomSlider/CustomSlider/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomSlider/CustomSlider/packages.config -------------------------------------------------------------------------------- /CustomSlider/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomSlider/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf -------------------------------------------------------------------------------- /CustomSlider/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomSlider/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg -------------------------------------------------------------------------------- /CustomSlider/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/CustomSlider/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml -------------------------------------------------------------------------------- /DataInput/DataInput.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DataInput/DataInput.sln -------------------------------------------------------------------------------- /DataInput/DataInput/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DataInput/DataInput/App.xaml -------------------------------------------------------------------------------- /DataInput/DataInput/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DataInput/DataInput/App.xaml.cs -------------------------------------------------------------------------------- /DataInput/DataInput/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DataInput/DataInput/ApplicationInsights.config -------------------------------------------------------------------------------- /DataInput/DataInput/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DataInput/DataInput/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /DataInput/DataInput/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DataInput/DataInput/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /DataInput/DataInput/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DataInput/DataInput/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /DataInput/DataInput/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DataInput/DataInput/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /DataInput/DataInput/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DataInput/DataInput/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /DataInput/DataInput/DataInput.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DataInput/DataInput/DataInput.csproj -------------------------------------------------------------------------------- /DataInput/DataInput/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DataInput/DataInput/Library.cs -------------------------------------------------------------------------------- /DataInput/DataInput/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DataInput/DataInput/MainPage.xaml -------------------------------------------------------------------------------- /DataInput/DataInput/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DataInput/DataInput/MainPage.xaml.cs -------------------------------------------------------------------------------- /DataInput/DataInput/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DataInput/DataInput/Package.appxmanifest -------------------------------------------------------------------------------- /DataInput/DataInput/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DataInput/DataInput/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DataInput/DataInput/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DataInput/DataInput/Properties/Default.rd.xml -------------------------------------------------------------------------------- /DataInput/DataInput/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DataInput/DataInput/packages.config -------------------------------------------------------------------------------- /DataInput/packages/Microsoft.ApplicationInsights.0.14.3-build00177/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DataInput/packages/Microsoft.ApplicationInsights.0.14.3-build00177/[Content_Types].xml -------------------------------------------------------------------------------- /DataInput/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DataInput/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf -------------------------------------------------------------------------------- /DataInput/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DataInput/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg -------------------------------------------------------------------------------- /DataInput/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DataInput/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml -------------------------------------------------------------------------------- /DataInput/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DataInput/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /DataInput/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DataInput/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /DialControl/DialControl.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DialControl/DialControl.sln -------------------------------------------------------------------------------- /DialControl/DialControl/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DialControl/DialControl/App.xaml -------------------------------------------------------------------------------- /DialControl/DialControl/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DialControl/DialControl/App.xaml.cs -------------------------------------------------------------------------------- /DialControl/DialControl/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DialControl/DialControl/ApplicationInsights.config -------------------------------------------------------------------------------- /DialControl/DialControl/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DialControl/DialControl/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /DialControl/DialControl/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DialControl/DialControl/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /DialControl/DialControl/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DialControl/DialControl/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /DialControl/DialControl/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DialControl/DialControl/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /DialControl/DialControl/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DialControl/DialControl/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /DialControl/DialControl/Dial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DialControl/DialControl/Dial.cs -------------------------------------------------------------------------------- /DialControl/DialControl/DialControl.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DialControl/DialControl/DialControl.csproj -------------------------------------------------------------------------------- /DialControl/DialControl/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DialControl/DialControl/MainPage.xaml -------------------------------------------------------------------------------- /DialControl/DialControl/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DialControl/DialControl/MainPage.xaml.cs -------------------------------------------------------------------------------- /DialControl/DialControl/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DialControl/DialControl/Package.appxmanifest -------------------------------------------------------------------------------- /DialControl/DialControl/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DialControl/DialControl/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DialControl/DialControl/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DialControl/DialControl/Properties/Default.rd.xml -------------------------------------------------------------------------------- /DialControl/DialControl/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DialControl/DialControl/Themes/Generic.xaml -------------------------------------------------------------------------------- /DialControl/DialControl/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DialControl/DialControl/packages.config -------------------------------------------------------------------------------- /DialControl/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DialControl/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf -------------------------------------------------------------------------------- /DialControl/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DialControl/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg -------------------------------------------------------------------------------- /DialControl/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DialControl/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml -------------------------------------------------------------------------------- /DialControl/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DialControl/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /DialControl/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DialControl/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /DrawEditor/DrawEditor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DrawEditor/DrawEditor.sln -------------------------------------------------------------------------------- /DrawEditor/DrawEditor/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DrawEditor/DrawEditor/App.xaml -------------------------------------------------------------------------------- /DrawEditor/DrawEditor/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DrawEditor/DrawEditor/App.xaml.cs -------------------------------------------------------------------------------- /DrawEditor/DrawEditor/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DrawEditor/DrawEditor/ApplicationInsights.config -------------------------------------------------------------------------------- /DrawEditor/DrawEditor/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DrawEditor/DrawEditor/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /DrawEditor/DrawEditor/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DrawEditor/DrawEditor/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /DrawEditor/DrawEditor/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DrawEditor/DrawEditor/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /DrawEditor/DrawEditor/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DrawEditor/DrawEditor/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /DrawEditor/DrawEditor/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DrawEditor/DrawEditor/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /DrawEditor/DrawEditor/DrawEditor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DrawEditor/DrawEditor/DrawEditor.csproj -------------------------------------------------------------------------------- /DrawEditor/DrawEditor/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DrawEditor/DrawEditor/Library.cs -------------------------------------------------------------------------------- /DrawEditor/DrawEditor/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DrawEditor/DrawEditor/MainPage.xaml -------------------------------------------------------------------------------- /DrawEditor/DrawEditor/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DrawEditor/DrawEditor/MainPage.xaml.cs -------------------------------------------------------------------------------- /DrawEditor/DrawEditor/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DrawEditor/DrawEditor/Package.appxmanifest -------------------------------------------------------------------------------- /DrawEditor/DrawEditor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DrawEditor/DrawEditor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DrawEditor/DrawEditor/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DrawEditor/DrawEditor/Properties/Default.rd.xml -------------------------------------------------------------------------------- /DrawEditor/DrawEditor/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DrawEditor/DrawEditor/packages.config -------------------------------------------------------------------------------- /DrawEditor/packages/Microsoft.ApplicationInsights.0.14.3-build00177/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DrawEditor/packages/Microsoft.ApplicationInsights.0.14.3-build00177/[Content_Types].xml -------------------------------------------------------------------------------- /DrawEditor/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DrawEditor/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf -------------------------------------------------------------------------------- /DrawEditor/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DrawEditor/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg -------------------------------------------------------------------------------- /DrawEditor/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DrawEditor/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml -------------------------------------------------------------------------------- /DrawEditor/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DrawEditor/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /DrawEditor/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/DrawEditor/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /ExpandControl/ExpandControl.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ExpandControl/ExpandControl.sln -------------------------------------------------------------------------------- /ExpandControl/ExpandControl/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ExpandControl/ExpandControl/App.xaml -------------------------------------------------------------------------------- /ExpandControl/ExpandControl/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ExpandControl/ExpandControl/App.xaml.cs -------------------------------------------------------------------------------- /ExpandControl/ExpandControl/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ExpandControl/ExpandControl/ApplicationInsights.config -------------------------------------------------------------------------------- /ExpandControl/ExpandControl/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ExpandControl/ExpandControl/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /ExpandControl/ExpandControl/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ExpandControl/ExpandControl/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /ExpandControl/ExpandControl/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ExpandControl/ExpandControl/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /ExpandControl/ExpandControl/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ExpandControl/ExpandControl/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /ExpandControl/ExpandControl/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ExpandControl/ExpandControl/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /ExpandControl/ExpandControl/ExpandControl.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ExpandControl/ExpandControl/ExpandControl.csproj -------------------------------------------------------------------------------- /ExpandControl/ExpandControl/ExpandPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ExpandControl/ExpandControl/ExpandPanel.cs -------------------------------------------------------------------------------- /ExpandControl/ExpandControl/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ExpandControl/ExpandControl/MainPage.xaml -------------------------------------------------------------------------------- /ExpandControl/ExpandControl/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ExpandControl/ExpandControl/MainPage.xaml.cs -------------------------------------------------------------------------------- /ExpandControl/ExpandControl/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ExpandControl/ExpandControl/Package.appxmanifest -------------------------------------------------------------------------------- /ExpandControl/ExpandControl/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ExpandControl/ExpandControl/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ExpandControl/ExpandControl/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ExpandControl/ExpandControl/Properties/Default.rd.xml -------------------------------------------------------------------------------- /ExpandControl/ExpandControl/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ExpandControl/ExpandControl/Themes/Generic.xaml -------------------------------------------------------------------------------- /ExpandControl/ExpandControl/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ExpandControl/ExpandControl/packages.config -------------------------------------------------------------------------------- /ExpandControl/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ExpandControl/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf -------------------------------------------------------------------------------- /ExpandControl/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ExpandControl/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml -------------------------------------------------------------------------------- /FlipControl/FlipControl.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/FlipControl/FlipControl.sln -------------------------------------------------------------------------------- /FlipControl/FlipControl/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/FlipControl/FlipControl/App.xaml -------------------------------------------------------------------------------- /FlipControl/FlipControl/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/FlipControl/FlipControl/App.xaml.cs -------------------------------------------------------------------------------- /FlipControl/FlipControl/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/FlipControl/FlipControl/ApplicationInsights.config -------------------------------------------------------------------------------- /FlipControl/FlipControl/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/FlipControl/FlipControl/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /FlipControl/FlipControl/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/FlipControl/FlipControl/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /FlipControl/FlipControl/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/FlipControl/FlipControl/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /FlipControl/FlipControl/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/FlipControl/FlipControl/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /FlipControl/FlipControl/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/FlipControl/FlipControl/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /FlipControl/FlipControl/FlipControl.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/FlipControl/FlipControl/FlipControl.csproj -------------------------------------------------------------------------------- /FlipControl/FlipControl/FlipPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/FlipControl/FlipControl/FlipPanel.cs -------------------------------------------------------------------------------- /FlipControl/FlipControl/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/FlipControl/FlipControl/MainPage.xaml -------------------------------------------------------------------------------- /FlipControl/FlipControl/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/FlipControl/FlipControl/MainPage.xaml.cs -------------------------------------------------------------------------------- /FlipControl/FlipControl/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/FlipControl/FlipControl/Package.appxmanifest -------------------------------------------------------------------------------- /FlipControl/FlipControl/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/FlipControl/FlipControl/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FlipControl/FlipControl/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/FlipControl/FlipControl/Properties/Default.rd.xml -------------------------------------------------------------------------------- /FlipControl/FlipControl/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/FlipControl/FlipControl/Themes/Generic.xaml -------------------------------------------------------------------------------- /FlipControl/FlipControl/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/FlipControl/FlipControl/packages.config -------------------------------------------------------------------------------- /FlipControl/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/FlipControl/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf -------------------------------------------------------------------------------- /FlipControl/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/FlipControl/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg -------------------------------------------------------------------------------- /FlipControl/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/FlipControl/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml -------------------------------------------------------------------------------- /FlipControl/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/FlipControl/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /FlipControl/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/FlipControl/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /HelloWorld/HelloWorld.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/HelloWorld/HelloWorld.sln -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/HelloWorld/HelloWorld/App.xaml -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/HelloWorld/HelloWorld/App.xaml.cs -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/HelloWorld/HelloWorld/ApplicationInsights.config -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/HelloWorld/HelloWorld/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/HelloWorld/HelloWorld/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/HelloWorld/HelloWorld/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/HelloWorld/HelloWorld/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/HelloWorld/HelloWorld/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/HelloWorld.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/HelloWorld/HelloWorld/HelloWorld.csproj -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/HelloWorld/HelloWorld/MainPage.xaml -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/HelloWorld/HelloWorld/MainPage.xaml.cs -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/HelloWorld/HelloWorld/Package.appxmanifest -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/HelloWorld/HelloWorld/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/HelloWorld/HelloWorld/Properties/Default.rd.xml -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/HelloWorld/HelloWorld/packages.config -------------------------------------------------------------------------------- /HelloWorld/packages/Microsoft.ApplicationInsights.0.14.3-build00177/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/HelloWorld/packages/Microsoft.ApplicationInsights.0.14.3-build00177/[Content_Types].xml -------------------------------------------------------------------------------- /HelloWorld/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/HelloWorld/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf -------------------------------------------------------------------------------- /HelloWorld/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/HelloWorld/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg -------------------------------------------------------------------------------- /HelloWorld/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/HelloWorld/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml -------------------------------------------------------------------------------- /HelloWorld/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/HelloWorld/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /HelloWorld/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/HelloWorld/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /ImageRotate/ImageRotate.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ImageRotate/ImageRotate.sln -------------------------------------------------------------------------------- /ImageRotate/ImageRotate/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ImageRotate/ImageRotate/App.xaml -------------------------------------------------------------------------------- /ImageRotate/ImageRotate/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ImageRotate/ImageRotate/App.xaml.cs -------------------------------------------------------------------------------- /ImageRotate/ImageRotate/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ImageRotate/ImageRotate/ApplicationInsights.config -------------------------------------------------------------------------------- /ImageRotate/ImageRotate/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ImageRotate/ImageRotate/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /ImageRotate/ImageRotate/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ImageRotate/ImageRotate/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /ImageRotate/ImageRotate/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ImageRotate/ImageRotate/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /ImageRotate/ImageRotate/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ImageRotate/ImageRotate/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /ImageRotate/ImageRotate/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ImageRotate/ImageRotate/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /ImageRotate/ImageRotate/ImageRotate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ImageRotate/ImageRotate/ImageRotate.csproj -------------------------------------------------------------------------------- /ImageRotate/ImageRotate/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ImageRotate/ImageRotate/Library.cs -------------------------------------------------------------------------------- /ImageRotate/ImageRotate/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ImageRotate/ImageRotate/MainPage.xaml -------------------------------------------------------------------------------- /ImageRotate/ImageRotate/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ImageRotate/ImageRotate/MainPage.xaml.cs -------------------------------------------------------------------------------- /ImageRotate/ImageRotate/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ImageRotate/ImageRotate/Package.appxmanifest -------------------------------------------------------------------------------- /ImageRotate/ImageRotate/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ImageRotate/ImageRotate/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ImageRotate/ImageRotate/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ImageRotate/ImageRotate/Properties/Default.rd.xml -------------------------------------------------------------------------------- /ImageRotate/ImageRotate/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ImageRotate/ImageRotate/packages.config -------------------------------------------------------------------------------- /ImageRotate/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ImageRotate/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf -------------------------------------------------------------------------------- /ImageRotate/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ImageRotate/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg -------------------------------------------------------------------------------- /ImageRotate/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ImageRotate/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml -------------------------------------------------------------------------------- /ImageRotate/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ImageRotate/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /ImageRotate/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/ImageRotate/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /Location/Location.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Location/Location.sln -------------------------------------------------------------------------------- /Location/Location/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Location/Location/App.xaml -------------------------------------------------------------------------------- /Location/Location/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Location/Location/App.xaml.cs -------------------------------------------------------------------------------- /Location/Location/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Location/Location/ApplicationInsights.config -------------------------------------------------------------------------------- /Location/Location/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Location/Location/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /Location/Location/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Location/Location/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /Location/Location/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Location/Location/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /Location/Location/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Location/Location/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /Location/Location/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Location/Location/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /Location/Location/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Location/Location/Library.cs -------------------------------------------------------------------------------- /Location/Location/Location.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Location/Location/Location.csproj -------------------------------------------------------------------------------- /Location/Location/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Location/Location/MainPage.xaml -------------------------------------------------------------------------------- /Location/Location/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Location/Location/MainPage.xaml.cs -------------------------------------------------------------------------------- /Location/Location/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Location/Location/Package.appxmanifest -------------------------------------------------------------------------------- /Location/Location/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Location/Location/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Location/Location/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Location/Location/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Location/Location/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Location/Location/packages.config -------------------------------------------------------------------------------- /Location/packages/Microsoft.ApplicationInsights.0.14.3-build00177/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Location/packages/Microsoft.ApplicationInsights.0.14.3-build00177/[Content_Types].xml -------------------------------------------------------------------------------- /Location/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Location/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf -------------------------------------------------------------------------------- /Location/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Location/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg -------------------------------------------------------------------------------- /Location/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Location/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml -------------------------------------------------------------------------------- /Location/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Location/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /Location/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Location/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /LuckyDice/LuckyDice.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyDice/LuckyDice.sln -------------------------------------------------------------------------------- /LuckyDice/LuckyDice/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyDice/LuckyDice/App.xaml -------------------------------------------------------------------------------- /LuckyDice/LuckyDice/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyDice/LuckyDice/App.xaml.cs -------------------------------------------------------------------------------- /LuckyDice/LuckyDice/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyDice/LuckyDice/ApplicationInsights.config -------------------------------------------------------------------------------- /LuckyDice/LuckyDice/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyDice/LuckyDice/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /LuckyDice/LuckyDice/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyDice/LuckyDice/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /LuckyDice/LuckyDice/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyDice/LuckyDice/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /LuckyDice/LuckyDice/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyDice/LuckyDice/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /LuckyDice/LuckyDice/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyDice/LuckyDice/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /LuckyDice/LuckyDice/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyDice/LuckyDice/Library.cs -------------------------------------------------------------------------------- /LuckyDice/LuckyDice/LuckyDice.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyDice/LuckyDice/LuckyDice.csproj -------------------------------------------------------------------------------- /LuckyDice/LuckyDice/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyDice/LuckyDice/MainPage.xaml -------------------------------------------------------------------------------- /LuckyDice/LuckyDice/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyDice/LuckyDice/MainPage.xaml.cs -------------------------------------------------------------------------------- /LuckyDice/LuckyDice/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyDice/LuckyDice/Package.appxmanifest -------------------------------------------------------------------------------- /LuckyDice/LuckyDice/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyDice/LuckyDice/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LuckyDice/LuckyDice/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyDice/LuckyDice/Properties/Default.rd.xml -------------------------------------------------------------------------------- /LuckyDice/LuckyDice/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyDice/LuckyDice/packages.config -------------------------------------------------------------------------------- /LuckyDice/packages/Microsoft.ApplicationInsights.0.14.3-build00177/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyDice/packages/Microsoft.ApplicationInsights.0.14.3-build00177/[Content_Types].xml -------------------------------------------------------------------------------- /LuckyDice/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyDice/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf -------------------------------------------------------------------------------- /LuckyDice/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyDice/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg -------------------------------------------------------------------------------- /LuckyDice/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyDice/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml -------------------------------------------------------------------------------- /LuckyDice/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyDice/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /LuckyDice/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyDice/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /LuckyLotto/LuckyLotto.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyLotto/LuckyLotto.sln -------------------------------------------------------------------------------- /LuckyLotto/LuckyLotto/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyLotto/LuckyLotto/App.xaml -------------------------------------------------------------------------------- /LuckyLotto/LuckyLotto/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyLotto/LuckyLotto/App.xaml.cs -------------------------------------------------------------------------------- /LuckyLotto/LuckyLotto/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyLotto/LuckyLotto/ApplicationInsights.config -------------------------------------------------------------------------------- /LuckyLotto/LuckyLotto/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyLotto/LuckyLotto/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /LuckyLotto/LuckyLotto/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyLotto/LuckyLotto/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /LuckyLotto/LuckyLotto/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyLotto/LuckyLotto/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /LuckyLotto/LuckyLotto/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyLotto/LuckyLotto/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /LuckyLotto/LuckyLotto/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyLotto/LuckyLotto/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /LuckyLotto/LuckyLotto/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyLotto/LuckyLotto/Library.cs -------------------------------------------------------------------------------- /LuckyLotto/LuckyLotto/LuckyLotto.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyLotto/LuckyLotto/LuckyLotto.csproj -------------------------------------------------------------------------------- /LuckyLotto/LuckyLotto/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyLotto/LuckyLotto/MainPage.xaml -------------------------------------------------------------------------------- /LuckyLotto/LuckyLotto/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyLotto/LuckyLotto/MainPage.xaml.cs -------------------------------------------------------------------------------- /LuckyLotto/LuckyLotto/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyLotto/LuckyLotto/Package.appxmanifest -------------------------------------------------------------------------------- /LuckyLotto/LuckyLotto/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyLotto/LuckyLotto/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LuckyLotto/LuckyLotto/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyLotto/LuckyLotto/Properties/Default.rd.xml -------------------------------------------------------------------------------- /LuckyLotto/LuckyLotto/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyLotto/LuckyLotto/packages.config -------------------------------------------------------------------------------- /LuckyLotto/packages/Microsoft.ApplicationInsights.0.14.3-build00177/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyLotto/packages/Microsoft.ApplicationInsights.0.14.3-build00177/[Content_Types].xml -------------------------------------------------------------------------------- /LuckyLotto/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyLotto/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf -------------------------------------------------------------------------------- /LuckyLotto/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyLotto/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg -------------------------------------------------------------------------------- /LuckyLotto/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyLotto/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml -------------------------------------------------------------------------------- /LuckyLotto/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyLotto/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /LuckyLotto/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/LuckyLotto/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /MediaPlayer/MediaPlayer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MediaPlayer/MediaPlayer.sln -------------------------------------------------------------------------------- /MediaPlayer/MediaPlayer/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MediaPlayer/MediaPlayer/App.xaml -------------------------------------------------------------------------------- /MediaPlayer/MediaPlayer/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MediaPlayer/MediaPlayer/App.xaml.cs -------------------------------------------------------------------------------- /MediaPlayer/MediaPlayer/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MediaPlayer/MediaPlayer/ApplicationInsights.config -------------------------------------------------------------------------------- /MediaPlayer/MediaPlayer/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MediaPlayer/MediaPlayer/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /MediaPlayer/MediaPlayer/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MediaPlayer/MediaPlayer/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /MediaPlayer/MediaPlayer/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MediaPlayer/MediaPlayer/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /MediaPlayer/MediaPlayer/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MediaPlayer/MediaPlayer/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /MediaPlayer/MediaPlayer/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MediaPlayer/MediaPlayer/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /MediaPlayer/MediaPlayer/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MediaPlayer/MediaPlayer/Library.cs -------------------------------------------------------------------------------- /MediaPlayer/MediaPlayer/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MediaPlayer/MediaPlayer/MainPage.xaml -------------------------------------------------------------------------------- /MediaPlayer/MediaPlayer/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MediaPlayer/MediaPlayer/MainPage.xaml.cs -------------------------------------------------------------------------------- /MediaPlayer/MediaPlayer/MediaPlayer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MediaPlayer/MediaPlayer/MediaPlayer.csproj -------------------------------------------------------------------------------- /MediaPlayer/MediaPlayer/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MediaPlayer/MediaPlayer/Package.appxmanifest -------------------------------------------------------------------------------- /MediaPlayer/MediaPlayer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MediaPlayer/MediaPlayer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MediaPlayer/MediaPlayer/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MediaPlayer/MediaPlayer/Properties/Default.rd.xml -------------------------------------------------------------------------------- /MediaPlayer/MediaPlayer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MediaPlayer/MediaPlayer/packages.config -------------------------------------------------------------------------------- /MediaPlayer/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MediaPlayer/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf -------------------------------------------------------------------------------- /MediaPlayer/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MediaPlayer/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml -------------------------------------------------------------------------------- /MemoryGame/MemoryGame.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MemoryGame/MemoryGame.sln -------------------------------------------------------------------------------- /MemoryGame/MemoryGame/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MemoryGame/MemoryGame/App.xaml -------------------------------------------------------------------------------- /MemoryGame/MemoryGame/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MemoryGame/MemoryGame/App.xaml.cs -------------------------------------------------------------------------------- /MemoryGame/MemoryGame/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MemoryGame/MemoryGame/ApplicationInsights.config -------------------------------------------------------------------------------- /MemoryGame/MemoryGame/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MemoryGame/MemoryGame/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /MemoryGame/MemoryGame/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MemoryGame/MemoryGame/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /MemoryGame/MemoryGame/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MemoryGame/MemoryGame/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /MemoryGame/MemoryGame/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MemoryGame/MemoryGame/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /MemoryGame/MemoryGame/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MemoryGame/MemoryGame/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /MemoryGame/MemoryGame/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MemoryGame/MemoryGame/Library.cs -------------------------------------------------------------------------------- /MemoryGame/MemoryGame/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MemoryGame/MemoryGame/MainPage.xaml -------------------------------------------------------------------------------- /MemoryGame/MemoryGame/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MemoryGame/MemoryGame/MainPage.xaml.cs -------------------------------------------------------------------------------- /MemoryGame/MemoryGame/MemoryGame.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MemoryGame/MemoryGame/MemoryGame.csproj -------------------------------------------------------------------------------- /MemoryGame/MemoryGame/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MemoryGame/MemoryGame/Package.appxmanifest -------------------------------------------------------------------------------- /MemoryGame/MemoryGame/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MemoryGame/MemoryGame/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MemoryGame/MemoryGame/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MemoryGame/MemoryGame/Properties/Default.rd.xml -------------------------------------------------------------------------------- /MemoryGame/MemoryGame/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MemoryGame/MemoryGame/packages.config -------------------------------------------------------------------------------- /MemoryGame/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MemoryGame/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf -------------------------------------------------------------------------------- /MemoryGame/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MemoryGame/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg -------------------------------------------------------------------------------- /MemoryGame/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/MemoryGame/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml -------------------------------------------------------------------------------- /NoughtsAndCrosses/NoughtsAndCrosses.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/NoughtsAndCrosses/NoughtsAndCrosses.sln -------------------------------------------------------------------------------- /NoughtsAndCrosses/NoughtsAndCrosses/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/NoughtsAndCrosses/NoughtsAndCrosses/App.xaml -------------------------------------------------------------------------------- /NoughtsAndCrosses/NoughtsAndCrosses/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/NoughtsAndCrosses/NoughtsAndCrosses/App.xaml.cs -------------------------------------------------------------------------------- /NoughtsAndCrosses/NoughtsAndCrosses/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/NoughtsAndCrosses/NoughtsAndCrosses/ApplicationInsights.config -------------------------------------------------------------------------------- /NoughtsAndCrosses/NoughtsAndCrosses/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/NoughtsAndCrosses/NoughtsAndCrosses/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /NoughtsAndCrosses/NoughtsAndCrosses/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/NoughtsAndCrosses/NoughtsAndCrosses/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /NoughtsAndCrosses/NoughtsAndCrosses/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/NoughtsAndCrosses/NoughtsAndCrosses/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /NoughtsAndCrosses/NoughtsAndCrosses/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/NoughtsAndCrosses/NoughtsAndCrosses/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /NoughtsAndCrosses/NoughtsAndCrosses/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/NoughtsAndCrosses/NoughtsAndCrosses/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /NoughtsAndCrosses/NoughtsAndCrosses/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/NoughtsAndCrosses/NoughtsAndCrosses/Library.cs -------------------------------------------------------------------------------- /NoughtsAndCrosses/NoughtsAndCrosses/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/NoughtsAndCrosses/NoughtsAndCrosses/MainPage.xaml -------------------------------------------------------------------------------- /NoughtsAndCrosses/NoughtsAndCrosses/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/NoughtsAndCrosses/NoughtsAndCrosses/MainPage.xaml.cs -------------------------------------------------------------------------------- /NoughtsAndCrosses/NoughtsAndCrosses/NoughtsAndCrosses.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/NoughtsAndCrosses/NoughtsAndCrosses/NoughtsAndCrosses.csproj -------------------------------------------------------------------------------- /NoughtsAndCrosses/NoughtsAndCrosses/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/NoughtsAndCrosses/NoughtsAndCrosses/Package.appxmanifest -------------------------------------------------------------------------------- /NoughtsAndCrosses/NoughtsAndCrosses/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/NoughtsAndCrosses/NoughtsAndCrosses/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /NoughtsAndCrosses/NoughtsAndCrosses/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/NoughtsAndCrosses/NoughtsAndCrosses/Properties/Default.rd.xml -------------------------------------------------------------------------------- /NoughtsAndCrosses/NoughtsAndCrosses/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/NoughtsAndCrosses/NoughtsAndCrosses/packages.config -------------------------------------------------------------------------------- /NoughtsAndCrosses/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/NoughtsAndCrosses/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf -------------------------------------------------------------------------------- /NoughtsAndCrosses/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/NoughtsAndCrosses/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml -------------------------------------------------------------------------------- /PlayingCards/PlayingCards.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/PlayingCards/PlayingCards.sln -------------------------------------------------------------------------------- /PlayingCards/PlayingCards/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/PlayingCards/PlayingCards/App.xaml -------------------------------------------------------------------------------- /PlayingCards/PlayingCards/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/PlayingCards/PlayingCards/App.xaml.cs -------------------------------------------------------------------------------- /PlayingCards/PlayingCards/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/PlayingCards/PlayingCards/ApplicationInsights.config -------------------------------------------------------------------------------- /PlayingCards/PlayingCards/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/PlayingCards/PlayingCards/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /PlayingCards/PlayingCards/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/PlayingCards/PlayingCards/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /PlayingCards/PlayingCards/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/PlayingCards/PlayingCards/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /PlayingCards/PlayingCards/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/PlayingCards/PlayingCards/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /PlayingCards/PlayingCards/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/PlayingCards/PlayingCards/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /PlayingCards/PlayingCards/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/PlayingCards/PlayingCards/Library.cs -------------------------------------------------------------------------------- /PlayingCards/PlayingCards/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/PlayingCards/PlayingCards/MainPage.xaml -------------------------------------------------------------------------------- /PlayingCards/PlayingCards/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/PlayingCards/PlayingCards/MainPage.xaml.cs -------------------------------------------------------------------------------- /PlayingCards/PlayingCards/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/PlayingCards/PlayingCards/Package.appxmanifest -------------------------------------------------------------------------------- /PlayingCards/PlayingCards/PlayingCards.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/PlayingCards/PlayingCards/PlayingCards.csproj -------------------------------------------------------------------------------- /PlayingCards/PlayingCards/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/PlayingCards/PlayingCards/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PlayingCards/PlayingCards/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/PlayingCards/PlayingCards/Properties/Default.rd.xml -------------------------------------------------------------------------------- /PlayingCards/PlayingCards/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/PlayingCards/PlayingCards/packages.config -------------------------------------------------------------------------------- /PlayingCards/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/PlayingCards/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf -------------------------------------------------------------------------------- /PlayingCards/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/PlayingCards/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml -------------------------------------------------------------------------------- /RSSReader/RSSReader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RSSReader/RSSReader.sln -------------------------------------------------------------------------------- /RSSReader/RSSReader/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RSSReader/RSSReader/App.xaml -------------------------------------------------------------------------------- /RSSReader/RSSReader/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RSSReader/RSSReader/App.xaml.cs -------------------------------------------------------------------------------- /RSSReader/RSSReader/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RSSReader/RSSReader/ApplicationInsights.config -------------------------------------------------------------------------------- /RSSReader/RSSReader/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RSSReader/RSSReader/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /RSSReader/RSSReader/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RSSReader/RSSReader/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /RSSReader/RSSReader/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RSSReader/RSSReader/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /RSSReader/RSSReader/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RSSReader/RSSReader/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /RSSReader/RSSReader/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RSSReader/RSSReader/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /RSSReader/RSSReader/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RSSReader/RSSReader/Library.cs -------------------------------------------------------------------------------- /RSSReader/RSSReader/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RSSReader/RSSReader/MainPage.xaml -------------------------------------------------------------------------------- /RSSReader/RSSReader/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RSSReader/RSSReader/MainPage.xaml.cs -------------------------------------------------------------------------------- /RSSReader/RSSReader/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RSSReader/RSSReader/Package.appxmanifest -------------------------------------------------------------------------------- /RSSReader/RSSReader/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RSSReader/RSSReader/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RSSReader/RSSReader/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RSSReader/RSSReader/Properties/Default.rd.xml -------------------------------------------------------------------------------- /RSSReader/RSSReader/RSSReader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RSSReader/RSSReader/RSSReader.csproj -------------------------------------------------------------------------------- /RSSReader/RSSReader/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RSSReader/RSSReader/packages.config -------------------------------------------------------------------------------- /RSSReader/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RSSReader/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf -------------------------------------------------------------------------------- /RSSReader/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RSSReader/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg -------------------------------------------------------------------------------- /RSSReader/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RSSReader/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml -------------------------------------------------------------------------------- /RSSReader/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RSSReader/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /RSSReader/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RSSReader/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /RichEditor/RichEditor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RichEditor/RichEditor.sln -------------------------------------------------------------------------------- /RichEditor/RichEditor/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RichEditor/RichEditor/App.xaml -------------------------------------------------------------------------------- /RichEditor/RichEditor/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RichEditor/RichEditor/App.xaml.cs -------------------------------------------------------------------------------- /RichEditor/RichEditor/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RichEditor/RichEditor/ApplicationInsights.config -------------------------------------------------------------------------------- /RichEditor/RichEditor/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RichEditor/RichEditor/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /RichEditor/RichEditor/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RichEditor/RichEditor/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /RichEditor/RichEditor/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RichEditor/RichEditor/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /RichEditor/RichEditor/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RichEditor/RichEditor/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /RichEditor/RichEditor/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RichEditor/RichEditor/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /RichEditor/RichEditor/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RichEditor/RichEditor/Library.cs -------------------------------------------------------------------------------- /RichEditor/RichEditor/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RichEditor/RichEditor/MainPage.xaml -------------------------------------------------------------------------------- /RichEditor/RichEditor/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RichEditor/RichEditor/MainPage.xaml.cs -------------------------------------------------------------------------------- /RichEditor/RichEditor/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RichEditor/RichEditor/Package.appxmanifest -------------------------------------------------------------------------------- /RichEditor/RichEditor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RichEditor/RichEditor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RichEditor/RichEditor/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RichEditor/RichEditor/Properties/Default.rd.xml -------------------------------------------------------------------------------- /RichEditor/RichEditor/RichEditor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RichEditor/RichEditor/RichEditor.csproj -------------------------------------------------------------------------------- /RichEditor/RichEditor/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RichEditor/RichEditor/packages.config -------------------------------------------------------------------------------- /RichEditor/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RichEditor/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf -------------------------------------------------------------------------------- /RichEditor/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RichEditor/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg -------------------------------------------------------------------------------- /RichEditor/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/RichEditor/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml -------------------------------------------------------------------------------- /SlidePlayer/SlidePlayer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/SlidePlayer/SlidePlayer.sln -------------------------------------------------------------------------------- /SlidePlayer/SlidePlayer/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/SlidePlayer/SlidePlayer/App.xaml -------------------------------------------------------------------------------- /SlidePlayer/SlidePlayer/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/SlidePlayer/SlidePlayer/App.xaml.cs -------------------------------------------------------------------------------- /SlidePlayer/SlidePlayer/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/SlidePlayer/SlidePlayer/ApplicationInsights.config -------------------------------------------------------------------------------- /SlidePlayer/SlidePlayer/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/SlidePlayer/SlidePlayer/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /SlidePlayer/SlidePlayer/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/SlidePlayer/SlidePlayer/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /SlidePlayer/SlidePlayer/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/SlidePlayer/SlidePlayer/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /SlidePlayer/SlidePlayer/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/SlidePlayer/SlidePlayer/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /SlidePlayer/SlidePlayer/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/SlidePlayer/SlidePlayer/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /SlidePlayer/SlidePlayer/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/SlidePlayer/SlidePlayer/Library.cs -------------------------------------------------------------------------------- /SlidePlayer/SlidePlayer/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/SlidePlayer/SlidePlayer/MainPage.xaml -------------------------------------------------------------------------------- /SlidePlayer/SlidePlayer/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/SlidePlayer/SlidePlayer/MainPage.xaml.cs -------------------------------------------------------------------------------- /SlidePlayer/SlidePlayer/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/SlidePlayer/SlidePlayer/Package.appxmanifest -------------------------------------------------------------------------------- /SlidePlayer/SlidePlayer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/SlidePlayer/SlidePlayer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SlidePlayer/SlidePlayer/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/SlidePlayer/SlidePlayer/Properties/Default.rd.xml -------------------------------------------------------------------------------- /SlidePlayer/SlidePlayer/SlidePlayer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/SlidePlayer/SlidePlayer/SlidePlayer.csproj -------------------------------------------------------------------------------- /SlidePlayer/SlidePlayer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/SlidePlayer/SlidePlayer/packages.config -------------------------------------------------------------------------------- /SlidePlayer/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/SlidePlayer/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf -------------------------------------------------------------------------------- /SlidePlayer/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/SlidePlayer/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml -------------------------------------------------------------------------------- /TaskEditor/TaskEditor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TaskEditor/TaskEditor.sln -------------------------------------------------------------------------------- /TaskEditor/TaskEditor/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TaskEditor/TaskEditor/App.xaml -------------------------------------------------------------------------------- /TaskEditor/TaskEditor/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TaskEditor/TaskEditor/App.xaml.cs -------------------------------------------------------------------------------- /TaskEditor/TaskEditor/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TaskEditor/TaskEditor/ApplicationInsights.config -------------------------------------------------------------------------------- /TaskEditor/TaskEditor/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TaskEditor/TaskEditor/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /TaskEditor/TaskEditor/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TaskEditor/TaskEditor/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /TaskEditor/TaskEditor/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TaskEditor/TaskEditor/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /TaskEditor/TaskEditor/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TaskEditor/TaskEditor/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /TaskEditor/TaskEditor/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TaskEditor/TaskEditor/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /TaskEditor/TaskEditor/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TaskEditor/TaskEditor/Library.cs -------------------------------------------------------------------------------- /TaskEditor/TaskEditor/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TaskEditor/TaskEditor/MainPage.xaml -------------------------------------------------------------------------------- /TaskEditor/TaskEditor/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TaskEditor/TaskEditor/MainPage.xaml.cs -------------------------------------------------------------------------------- /TaskEditor/TaskEditor/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TaskEditor/TaskEditor/Package.appxmanifest -------------------------------------------------------------------------------- /TaskEditor/TaskEditor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TaskEditor/TaskEditor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TaskEditor/TaskEditor/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TaskEditor/TaskEditor/Properties/Default.rd.xml -------------------------------------------------------------------------------- /TaskEditor/TaskEditor/TaskEditor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TaskEditor/TaskEditor/TaskEditor.csproj -------------------------------------------------------------------------------- /TaskEditor/TaskEditor/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TaskEditor/TaskEditor/packages.config -------------------------------------------------------------------------------- /TaskEditor/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TaskEditor/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf -------------------------------------------------------------------------------- /TaskEditor/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TaskEditor/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg -------------------------------------------------------------------------------- /TaskEditor/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TaskEditor/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml -------------------------------------------------------------------------------- /TextEditor/TextEditor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TextEditor/TextEditor.sln -------------------------------------------------------------------------------- /TextEditor/TextEditor/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TextEditor/TextEditor/App.xaml -------------------------------------------------------------------------------- /TextEditor/TextEditor/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TextEditor/TextEditor/App.xaml.cs -------------------------------------------------------------------------------- /TextEditor/TextEditor/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TextEditor/TextEditor/ApplicationInsights.config -------------------------------------------------------------------------------- /TextEditor/TextEditor/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TextEditor/TextEditor/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /TextEditor/TextEditor/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TextEditor/TextEditor/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /TextEditor/TextEditor/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TextEditor/TextEditor/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /TextEditor/TextEditor/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TextEditor/TextEditor/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /TextEditor/TextEditor/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TextEditor/TextEditor/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /TextEditor/TextEditor/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TextEditor/TextEditor/Library.cs -------------------------------------------------------------------------------- /TextEditor/TextEditor/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TextEditor/TextEditor/MainPage.xaml -------------------------------------------------------------------------------- /TextEditor/TextEditor/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TextEditor/TextEditor/MainPage.xaml.cs -------------------------------------------------------------------------------- /TextEditor/TextEditor/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TextEditor/TextEditor/Package.appxmanifest -------------------------------------------------------------------------------- /TextEditor/TextEditor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TextEditor/TextEditor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TextEditor/TextEditor/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TextEditor/TextEditor/Properties/Default.rd.xml -------------------------------------------------------------------------------- /TextEditor/TextEditor/TextEditor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TextEditor/TextEditor/TextEditor.csproj -------------------------------------------------------------------------------- /TextEditor/TextEditor/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TextEditor/TextEditor/packages.config -------------------------------------------------------------------------------- /TextEditor/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TextEditor/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf -------------------------------------------------------------------------------- /TextEditor/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TextEditor/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg -------------------------------------------------------------------------------- /TextEditor/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TextEditor/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml -------------------------------------------------------------------------------- /Tiles/Tiles.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Tiles/Tiles.sln -------------------------------------------------------------------------------- /Tiles/Tiles/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Tiles/Tiles/App.xaml -------------------------------------------------------------------------------- /Tiles/Tiles/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Tiles/Tiles/App.xaml.cs -------------------------------------------------------------------------------- /Tiles/Tiles/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Tiles/Tiles/ApplicationInsights.config -------------------------------------------------------------------------------- /Tiles/Tiles/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Tiles/Tiles/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /Tiles/Tiles/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Tiles/Tiles/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /Tiles/Tiles/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Tiles/Tiles/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /Tiles/Tiles/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Tiles/Tiles/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /Tiles/Tiles/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Tiles/Tiles/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /Tiles/Tiles/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Tiles/Tiles/Library.cs -------------------------------------------------------------------------------- /Tiles/Tiles/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Tiles/Tiles/MainPage.xaml -------------------------------------------------------------------------------- /Tiles/Tiles/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Tiles/Tiles/MainPage.xaml.cs -------------------------------------------------------------------------------- /Tiles/Tiles/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Tiles/Tiles/Package.appxmanifest -------------------------------------------------------------------------------- /Tiles/Tiles/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Tiles/Tiles/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tiles/Tiles/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Tiles/Tiles/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Tiles/Tiles/Tiles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Tiles/Tiles/Tiles.csproj -------------------------------------------------------------------------------- /Tiles/Tiles/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Tiles/Tiles/packages.config -------------------------------------------------------------------------------- /Tiles/packages/Microsoft.ApplicationInsights.0.14.3-build00177/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Tiles/packages/Microsoft.ApplicationInsights.0.14.3-build00177/[Content_Types].xml -------------------------------------------------------------------------------- /Tiles/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Tiles/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf -------------------------------------------------------------------------------- /Tiles/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Tiles/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg -------------------------------------------------------------------------------- /Tiles/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Tiles/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml -------------------------------------------------------------------------------- /Tiles/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Tiles/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /Tiles/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Tiles/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /Toasts/Toasts.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Toasts/Toasts.sln -------------------------------------------------------------------------------- /Toasts/Toasts/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Toasts/Toasts/App.xaml -------------------------------------------------------------------------------- /Toasts/Toasts/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Toasts/Toasts/App.xaml.cs -------------------------------------------------------------------------------- /Toasts/Toasts/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Toasts/Toasts/ApplicationInsights.config -------------------------------------------------------------------------------- /Toasts/Toasts/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Toasts/Toasts/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /Toasts/Toasts/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Toasts/Toasts/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /Toasts/Toasts/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Toasts/Toasts/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /Toasts/Toasts/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Toasts/Toasts/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /Toasts/Toasts/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Toasts/Toasts/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /Toasts/Toasts/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Toasts/Toasts/Library.cs -------------------------------------------------------------------------------- /Toasts/Toasts/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Toasts/Toasts/MainPage.xaml -------------------------------------------------------------------------------- /Toasts/Toasts/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Toasts/Toasts/MainPage.xaml.cs -------------------------------------------------------------------------------- /Toasts/Toasts/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Toasts/Toasts/Package.appxmanifest -------------------------------------------------------------------------------- /Toasts/Toasts/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Toasts/Toasts/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Toasts/Toasts/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Toasts/Toasts/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Toasts/Toasts/Toasts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Toasts/Toasts/Toasts.csproj -------------------------------------------------------------------------------- /Toasts/Toasts/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Toasts/Toasts/packages.config -------------------------------------------------------------------------------- /Toasts/packages/Microsoft.ApplicationInsights.0.14.3-build00177/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Toasts/packages/Microsoft.ApplicationInsights.0.14.3-build00177/[Content_Types].xml -------------------------------------------------------------------------------- /Toasts/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Toasts/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf -------------------------------------------------------------------------------- /Toasts/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Toasts/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg -------------------------------------------------------------------------------- /Toasts/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Toasts/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml -------------------------------------------------------------------------------- /Toasts/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Toasts/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /Toasts/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/Toasts/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /TouchGame/TouchGame.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TouchGame/TouchGame.sln -------------------------------------------------------------------------------- /TouchGame/TouchGame/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TouchGame/TouchGame/App.xaml -------------------------------------------------------------------------------- /TouchGame/TouchGame/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TouchGame/TouchGame/App.xaml.cs -------------------------------------------------------------------------------- /TouchGame/TouchGame/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TouchGame/TouchGame/ApplicationInsights.config -------------------------------------------------------------------------------- /TouchGame/TouchGame/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TouchGame/TouchGame/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /TouchGame/TouchGame/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TouchGame/TouchGame/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /TouchGame/TouchGame/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TouchGame/TouchGame/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /TouchGame/TouchGame/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TouchGame/TouchGame/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /TouchGame/TouchGame/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TouchGame/TouchGame/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /TouchGame/TouchGame/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TouchGame/TouchGame/Library.cs -------------------------------------------------------------------------------- /TouchGame/TouchGame/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TouchGame/TouchGame/MainPage.xaml -------------------------------------------------------------------------------- /TouchGame/TouchGame/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TouchGame/TouchGame/MainPage.xaml.cs -------------------------------------------------------------------------------- /TouchGame/TouchGame/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TouchGame/TouchGame/Package.appxmanifest -------------------------------------------------------------------------------- /TouchGame/TouchGame/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TouchGame/TouchGame/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TouchGame/TouchGame/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TouchGame/TouchGame/Properties/Default.rd.xml -------------------------------------------------------------------------------- /TouchGame/TouchGame/TouchGame.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TouchGame/TouchGame/TouchGame.csproj -------------------------------------------------------------------------------- /TouchGame/TouchGame/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TouchGame/TouchGame/packages.config -------------------------------------------------------------------------------- /TouchGame/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TouchGame/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf -------------------------------------------------------------------------------- /TouchGame/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TouchGame/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg -------------------------------------------------------------------------------- /TouchGame/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TouchGame/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml -------------------------------------------------------------------------------- /TouchGame/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TouchGame/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /TouchGame/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/TouchGame/packages/System.Numerics.Vectors.4.0.0/lib/win8/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /VideoRecorder/VideoRecorder.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/VideoRecorder/VideoRecorder.sln -------------------------------------------------------------------------------- /VideoRecorder/VideoRecorder/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/VideoRecorder/VideoRecorder/App.xaml -------------------------------------------------------------------------------- /VideoRecorder/VideoRecorder/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/VideoRecorder/VideoRecorder/App.xaml.cs -------------------------------------------------------------------------------- /VideoRecorder/VideoRecorder/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/VideoRecorder/VideoRecorder/ApplicationInsights.config -------------------------------------------------------------------------------- /VideoRecorder/VideoRecorder/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/VideoRecorder/VideoRecorder/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /VideoRecorder/VideoRecorder/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/VideoRecorder/VideoRecorder/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /VideoRecorder/VideoRecorder/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/VideoRecorder/VideoRecorder/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /VideoRecorder/VideoRecorder/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/VideoRecorder/VideoRecorder/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /VideoRecorder/VideoRecorder/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/VideoRecorder/VideoRecorder/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /VideoRecorder/VideoRecorder/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/VideoRecorder/VideoRecorder/Library.cs -------------------------------------------------------------------------------- /VideoRecorder/VideoRecorder/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/VideoRecorder/VideoRecorder/MainPage.xaml -------------------------------------------------------------------------------- /VideoRecorder/VideoRecorder/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/VideoRecorder/VideoRecorder/MainPage.xaml.cs -------------------------------------------------------------------------------- /VideoRecorder/VideoRecorder/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/VideoRecorder/VideoRecorder/Package.appxmanifest -------------------------------------------------------------------------------- /VideoRecorder/VideoRecorder/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/VideoRecorder/VideoRecorder/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /VideoRecorder/VideoRecorder/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/VideoRecorder/VideoRecorder/Properties/Default.rd.xml -------------------------------------------------------------------------------- /VideoRecorder/VideoRecorder/VideoRecorder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/VideoRecorder/VideoRecorder/VideoRecorder.csproj -------------------------------------------------------------------------------- /VideoRecorder/VideoRecorder/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/VideoRecorder/VideoRecorder/packages.config -------------------------------------------------------------------------------- /VideoRecorder/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/VideoRecorder/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf -------------------------------------------------------------------------------- /VideoRecorder/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/VideoRecorder/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml -------------------------------------------------------------------------------- /WebBrowser/WebBrowser.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WebBrowser/WebBrowser.sln -------------------------------------------------------------------------------- /WebBrowser/WebBrowser/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WebBrowser/WebBrowser/App.xaml -------------------------------------------------------------------------------- /WebBrowser/WebBrowser/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WebBrowser/WebBrowser/App.xaml.cs -------------------------------------------------------------------------------- /WebBrowser/WebBrowser/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WebBrowser/WebBrowser/ApplicationInsights.config -------------------------------------------------------------------------------- /WebBrowser/WebBrowser/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WebBrowser/WebBrowser/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /WebBrowser/WebBrowser/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WebBrowser/WebBrowser/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /WebBrowser/WebBrowser/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WebBrowser/WebBrowser/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /WebBrowser/WebBrowser/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WebBrowser/WebBrowser/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /WebBrowser/WebBrowser/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WebBrowser/WebBrowser/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /WebBrowser/WebBrowser/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WebBrowser/WebBrowser/Library.cs -------------------------------------------------------------------------------- /WebBrowser/WebBrowser/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WebBrowser/WebBrowser/MainPage.xaml -------------------------------------------------------------------------------- /WebBrowser/WebBrowser/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WebBrowser/WebBrowser/MainPage.xaml.cs -------------------------------------------------------------------------------- /WebBrowser/WebBrowser/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WebBrowser/WebBrowser/Package.appxmanifest -------------------------------------------------------------------------------- /WebBrowser/WebBrowser/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WebBrowser/WebBrowser/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WebBrowser/WebBrowser/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WebBrowser/WebBrowser/Properties/Default.rd.xml -------------------------------------------------------------------------------- /WebBrowser/WebBrowser/WebBrowser.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WebBrowser/WebBrowser/WebBrowser.csproj -------------------------------------------------------------------------------- /WebBrowser/WebBrowser/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WebBrowser/WebBrowser/packages.config -------------------------------------------------------------------------------- /WebBrowser/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WebBrowser/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf -------------------------------------------------------------------------------- /WebBrowser/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WebBrowser/packages/System.Numerics.Vectors.4.0.0/System.Numerics.Vectors.4.0.0.nupkg -------------------------------------------------------------------------------- /WebBrowser/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WebBrowser/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml -------------------------------------------------------------------------------- /WrapControl/WrapControl.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WrapControl/WrapControl.sln -------------------------------------------------------------------------------- /WrapControl/WrapControl/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WrapControl/WrapControl/App.xaml -------------------------------------------------------------------------------- /WrapControl/WrapControl/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WrapControl/WrapControl/App.xaml.cs -------------------------------------------------------------------------------- /WrapControl/WrapControl/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WrapControl/WrapControl/ApplicationInsights.config -------------------------------------------------------------------------------- /WrapControl/WrapControl/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WrapControl/WrapControl/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /WrapControl/WrapControl/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WrapControl/WrapControl/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /WrapControl/WrapControl/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WrapControl/WrapControl/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /WrapControl/WrapControl/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WrapControl/WrapControl/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /WrapControl/WrapControl/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WrapControl/WrapControl/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /WrapControl/WrapControl/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WrapControl/WrapControl/MainPage.xaml -------------------------------------------------------------------------------- /WrapControl/WrapControl/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WrapControl/WrapControl/MainPage.xaml.cs -------------------------------------------------------------------------------- /WrapControl/WrapControl/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WrapControl/WrapControl/Package.appxmanifest -------------------------------------------------------------------------------- /WrapControl/WrapControl/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WrapControl/WrapControl/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WrapControl/WrapControl/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WrapControl/WrapControl/Properties/Default.rd.xml -------------------------------------------------------------------------------- /WrapControl/WrapControl/WrapControl.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WrapControl/WrapControl/WrapControl.csproj -------------------------------------------------------------------------------- /WrapControl/WrapControl/WrapPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WrapControl/WrapControl/WrapPanel.cs -------------------------------------------------------------------------------- /WrapControl/WrapControl/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WrapControl/WrapControl/packages.config -------------------------------------------------------------------------------- /WrapControl/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WrapControl/packages/System.Numerics.Vectors.4.0.0/License-Stable.rtf -------------------------------------------------------------------------------- /WrapControl/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoguePlanetoid/Windows-10-Universal-Windows-Platform-Tutorials/HEAD/WrapControl/packages/System.Numerics.Vectors.4.0.0/[Content_Types].xml --------------------------------------------------------------------------------