├── .gitignore ├── BGTask ├── BGTask.sln ├── HttpPing │ ├── HttpPing.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── SiteVerifier.cs ├── UWPHead │ ├── App.xaml │ ├── App.xaml.cs │ ├── Images │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-125.png │ │ ├── LargeTile.scale-150.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-400.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-125.png │ │ ├── SmallTile.scale-150.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-400.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-125.png │ │ ├── SplashScreen.scale-150.png │ │ ├── SplashScreen.scale-200.png │ │ ├── SplashScreen.scale-400.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-125.png │ │ ├── Square150x150Logo.scale-150.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-24.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-125.png │ │ ├── Square44x44Logo.scale-150.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.targetsize-16.png │ │ ├── Square44x44Logo.targetsize-24.png │ │ ├── Square44x44Logo.targetsize-256.png │ │ ├── Square44x44Logo.targetsize-32.png │ │ ├── Square44x44Logo.targetsize-48.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-125.png │ │ ├── StoreLogo.scale-150.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-400.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-125.png │ │ ├── Wide310x150Logo.scale-150.png │ │ ├── Wide310x150Logo.scale-200.png │ │ └── Wide310x150Logo.scale-400.png │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── UWPHead.csproj ├── WPFUIWithBackgroundTask.Package │ ├── Assets │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-125.png │ │ ├── LargeTile.scale-150.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-400.png │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-125.png │ │ ├── SmallTile.scale-150.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-400.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-125.png │ │ ├── SplashScreen.scale-150.png │ │ ├── SplashScreen.scale-200.png │ │ ├── SplashScreen.scale-400.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-125.png │ │ ├── Square150x150Logo.scale-150.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-125.png │ │ ├── Square44x44Logo.scale-150.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.targetsize-16.png │ │ ├── Square44x44Logo.targetsize-24.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-256.png │ │ ├── Square44x44Logo.targetsize-32.png │ │ ├── Square44x44Logo.targetsize-48.png │ │ ├── StoreLogo.backup.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-125.png │ │ ├── StoreLogo.scale-150.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-400.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-125.png │ │ ├── Wide310x150Logo.scale-150.png │ │ ├── Wide310x150Logo.scale-200.png │ │ └── Wide310x150Logo.scale-400.png │ ├── Package.appxmanifest │ └── WPFUIWithBackgroundTask.Package.wapproj └── WpfUIWithBackgroundTask │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── StartUp.cs │ ├── UWPBackgroundTaskCatalog.cs │ └── WpfUIWithBackgroundTask.csproj ├── LICENSE ├── OfficeInterop ├── DataGrid2Excel │ ├── App.xaml │ ├── App.xaml.cs │ ├── DataGrid2Excel.csproj │ ├── Images │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-125.png │ │ ├── LargeTile.scale-150.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-400.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-125.png │ │ ├── SmallTile.scale-150.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-400.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-125.png │ │ ├── SplashScreen.scale-150.png │ │ ├── SplashScreen.scale-200.png │ │ ├── SplashScreen.scale-400.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-125.png │ │ ├── Square150x150Logo.scale-150.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-24.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-125.png │ │ ├── Square44x44Logo.scale-150.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.targetsize-16.png │ │ ├── Square44x44Logo.targetsize-24.png │ │ ├── Square44x44Logo.targetsize-256.png │ │ ├── Square44x44Logo.targetsize-32.png │ │ ├── Square44x44Logo.targetsize-48.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-125.png │ │ ├── StoreLogo.scale-150.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-400.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-125.png │ │ ├── Wide310x150Logo.scale-150.png │ │ ├── Wide310x150Logo.scale-200.png │ │ └── Wide310x150Logo.scale-400.png │ ├── Item.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ └── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml ├── Excel.Interop │ ├── App.config │ ├── Excel.Interop.csproj │ ├── Microsoft.Office.Interop.Excel.dll │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── OfficeInterop.Package │ ├── Assets │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-125.png │ │ ├── LargeTile.scale-150.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-400.png │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-125.png │ │ ├── SmallTile.scale-150.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-400.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-125.png │ │ ├── SplashScreen.scale-150.png │ │ ├── SplashScreen.scale-200.png │ │ ├── SplashScreen.scale-400.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-125.png │ │ ├── Square150x150Logo.scale-150.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-125.png │ │ ├── Square44x44Logo.scale-150.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.targetsize-16.png │ │ ├── Square44x44Logo.targetsize-24.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-256.png │ │ ├── Square44x44Logo.targetsize-32.png │ │ ├── Square44x44Logo.targetsize-48.png │ │ ├── StoreLogo.backup.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-125.png │ │ ├── StoreLogo.scale-150.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-400.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-125.png │ │ ├── Wide310x150Logo.scale-150.png │ │ ├── Wide310x150Logo.scale-200.png │ │ └── Wide310x150Logo.scale-400.png │ ├── OfficeInterop.Package.wapproj │ ├── OfficeInterop.Package_TemporaryKey.pfx │ └── Package.appxmanifest └── OfficeInterop.sln ├── README.md ├── SECURITY.md ├── ShareTarget ├── SharePhotoUI │ ├── App.xaml │ ├── App.xaml.cs │ ├── Images │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-125.png │ │ ├── LargeTile.scale-150.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-400.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-125.png │ │ ├── SmallTile.scale-150.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-400.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-125.png │ │ ├── SplashScreen.scale-150.png │ │ ├── SplashScreen.scale-200.png │ │ ├── SplashScreen.scale-400.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-125.png │ │ ├── Square150x150Logo.scale-150.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-24.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-125.png │ │ ├── Square44x44Logo.scale-150.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.targetsize-16.png │ │ ├── Square44x44Logo.targetsize-24.png │ │ ├── Square44x44Logo.targetsize-256.png │ │ ├── Square44x44Logo.targetsize-32.png │ │ ├── Square44x44Logo.targetsize-48.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-125.png │ │ ├── StoreLogo.scale-150.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-400.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-125.png │ │ ├── Wide310x150Logo.scale-150.png │ │ ├── Wide310x150Logo.scale-200.png │ │ └── Wide310x150Logo.scale-400.png │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── SharePhotoUI.csproj ├── ShareTarget.sln ├── WpfPhotoViewer.Package │ ├── Assets │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-125.png │ │ ├── LargeTile.scale-150.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-400.png │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-125.png │ │ ├── SmallTile.scale-150.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-400.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-125.png │ │ ├── SplashScreen.scale-150.png │ │ ├── SplashScreen.scale-200.png │ │ ├── SplashScreen.scale-400.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-125.png │ │ ├── Square150x150Logo.scale-150.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-125.png │ │ ├── Square44x44Logo.scale-150.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.targetsize-16.png │ │ ├── Square44x44Logo.targetsize-24.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-256.png │ │ ├── Square44x44Logo.targetsize-32.png │ │ ├── Square44x44Logo.targetsize-48.png │ │ ├── StoreLogo.backup.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-125.png │ │ ├── StoreLogo.scale-150.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-400.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-125.png │ │ ├── Wide310x150Logo.scale-150.png │ │ ├── Wide310x150Logo.scale-200.png │ │ └── Wide310x150Logo.scale-400.png │ ├── Package.appxmanifest │ └── WpfPhotoViewer.Package.wapproj └── WpfPhotoViewer │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── ExecutionMode.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── PhotosFolder.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── StartUp.cs │ └── WpfPhotoViewer.csproj ├── WinRT ├── AppConsumingWinRT │ ├── AppConsumingWinRT.wapproj │ ├── Images │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ └── Package.appxmanifest ├── WinFormsReferencingWinRT │ ├── App.config │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── WinFormsReferencingWinRT.csproj ├── WinRT.sln └── WinRTLibrary │ ├── Class1.cpp │ ├── Class1.h │ ├── WinRTLibrary.vcxproj │ ├── WinRTLibrary.vcxproj.filters │ ├── pch.cpp │ └── pch.h └── azure-pipelines.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/.gitignore -------------------------------------------------------------------------------- /BGTask/BGTask.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/BGTask.sln -------------------------------------------------------------------------------- /BGTask/HttpPing/HttpPing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/HttpPing/HttpPing.csproj -------------------------------------------------------------------------------- /BGTask/HttpPing/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/HttpPing/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BGTask/HttpPing/SiteVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/HttpPing/SiteVerifier.cs -------------------------------------------------------------------------------- /BGTask/UWPHead/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/App.xaml -------------------------------------------------------------------------------- /BGTask/UWPHead/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/App.xaml.cs -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/LargeTile.scale-100.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/LargeTile.scale-125.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/LargeTile.scale-150.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/LargeTile.scale-200.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/LargeTile.scale-400.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/SmallTile.scale-100.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/SmallTile.scale-125.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/SmallTile.scale-150.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/SmallTile.scale-200.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/SmallTile.scale-400.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/Square44x44Logo.altform-unplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/Square44x44Logo.altform-unplated_targetsize-24.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Images/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Images/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /BGTask/UWPHead/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Package.appxmanifest -------------------------------------------------------------------------------- /BGTask/UWPHead/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BGTask/UWPHead/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/Properties/Default.rd.xml -------------------------------------------------------------------------------- /BGTask/UWPHead/UWPHead.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/UWPHead/UWPHead.csproj -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/LargeTile.scale-125.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/LargeTile.scale-150.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/SmallTile.scale-125.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/SmallTile.scale-150.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/StoreLogo.backup.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/Package.appxmanifest -------------------------------------------------------------------------------- /BGTask/WPFUIWithBackgroundTask.Package/WPFUIWithBackgroundTask.Package.wapproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WPFUIWithBackgroundTask.Package/WPFUIWithBackgroundTask.Package.wapproj -------------------------------------------------------------------------------- /BGTask/WpfUIWithBackgroundTask/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WpfUIWithBackgroundTask/App.config -------------------------------------------------------------------------------- /BGTask/WpfUIWithBackgroundTask/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WpfUIWithBackgroundTask/App.xaml -------------------------------------------------------------------------------- /BGTask/WpfUIWithBackgroundTask/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WpfUIWithBackgroundTask/App.xaml.cs -------------------------------------------------------------------------------- /BGTask/WpfUIWithBackgroundTask/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WpfUIWithBackgroundTask/MainWindow.xaml -------------------------------------------------------------------------------- /BGTask/WpfUIWithBackgroundTask/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WpfUIWithBackgroundTask/MainWindow.xaml.cs -------------------------------------------------------------------------------- /BGTask/WpfUIWithBackgroundTask/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WpfUIWithBackgroundTask/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BGTask/WpfUIWithBackgroundTask/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WpfUIWithBackgroundTask/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /BGTask/WpfUIWithBackgroundTask/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WpfUIWithBackgroundTask/Properties/Resources.resx -------------------------------------------------------------------------------- /BGTask/WpfUIWithBackgroundTask/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WpfUIWithBackgroundTask/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /BGTask/WpfUIWithBackgroundTask/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WpfUIWithBackgroundTask/Properties/Settings.settings -------------------------------------------------------------------------------- /BGTask/WpfUIWithBackgroundTask/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WpfUIWithBackgroundTask/StartUp.cs -------------------------------------------------------------------------------- /BGTask/WpfUIWithBackgroundTask/UWPBackgroundTaskCatalog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WpfUIWithBackgroundTask/UWPBackgroundTaskCatalog.cs -------------------------------------------------------------------------------- /BGTask/WpfUIWithBackgroundTask/WpfUIWithBackgroundTask.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/BGTask/WpfUIWithBackgroundTask/WpfUIWithBackgroundTask.csproj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/LICENSE -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/App.xaml -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/App.xaml.cs -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/DataGrid2Excel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/DataGrid2Excel.csproj -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/LargeTile.scale-100.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/LargeTile.scale-125.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/LargeTile.scale-150.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/LargeTile.scale-200.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/LargeTile.scale-400.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/SmallTile.scale-100.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/SmallTile.scale-125.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/SmallTile.scale-150.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/SmallTile.scale-200.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/SmallTile.scale-400.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/Square44x44Logo.altform-unplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/Square44x44Logo.altform-unplated_targetsize-24.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Images/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Images/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Item.cs -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/MainPage.xaml -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/MainPage.xaml.cs -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Package.appxmanifest -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OfficeInterop/DataGrid2Excel/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/DataGrid2Excel/Properties/Default.rd.xml -------------------------------------------------------------------------------- /OfficeInterop/Excel.Interop/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/Excel.Interop/App.config -------------------------------------------------------------------------------- /OfficeInterop/Excel.Interop/Excel.Interop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/Excel.Interop/Excel.Interop.csproj -------------------------------------------------------------------------------- /OfficeInterop/Excel.Interop/Microsoft.Office.Interop.Excel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/Excel.Interop/Microsoft.Office.Interop.Excel.dll -------------------------------------------------------------------------------- /OfficeInterop/Excel.Interop/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/Excel.Interop/Program.cs -------------------------------------------------------------------------------- /OfficeInterop/Excel.Interop/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/Excel.Interop/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/LargeTile.scale-125.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/LargeTile.scale-150.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/SmallTile.scale-125.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/SmallTile.scale-150.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/StoreLogo.backup.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/OfficeInterop.Package.wapproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/OfficeInterop.Package.wapproj -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/OfficeInterop.Package_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/OfficeInterop.Package_TemporaryKey.pfx -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.Package/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.Package/Package.appxmanifest -------------------------------------------------------------------------------- /OfficeInterop/OfficeInterop.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/OfficeInterop/OfficeInterop.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/App.xaml -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/App.xaml.cs -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/LargeTile.scale-100.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/LargeTile.scale-125.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/LargeTile.scale-150.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/LargeTile.scale-200.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/LargeTile.scale-400.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/SmallTile.scale-100.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/SmallTile.scale-125.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/SmallTile.scale-150.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/SmallTile.scale-200.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/SmallTile.scale-400.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/Square44x44Logo.altform-unplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/Square44x44Logo.altform-unplated_targetsize-24.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Images/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Images/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/MainPage.xaml -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/MainPage.xaml.cs -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Package.appxmanifest -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/Properties/Default.rd.xml -------------------------------------------------------------------------------- /ShareTarget/SharePhotoUI/SharePhotoUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/SharePhotoUI/SharePhotoUI.csproj -------------------------------------------------------------------------------- /ShareTarget/ShareTarget.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/ShareTarget.sln -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/LargeTile.scale-125.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/LargeTile.scale-150.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/SmallTile.scale-125.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/SmallTile.scale-150.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/StoreLogo.backup.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/Package.appxmanifest -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer.Package/WpfPhotoViewer.Package.wapproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer.Package/WpfPhotoViewer.Package.wapproj -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer/App.config -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer/App.xaml -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer/App.xaml.cs -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer/ExecutionMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer/ExecutionMode.cs -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer/MainWindow.xaml -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer/MainWindow.xaml.cs -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer/PhotosFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer/PhotosFolder.cs -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer/Properties/Resources.resx -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer/Properties/Settings.settings -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer/StartUp.cs -------------------------------------------------------------------------------- /ShareTarget/WpfPhotoViewer/WpfPhotoViewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/ShareTarget/WpfPhotoViewer/WpfPhotoViewer.csproj -------------------------------------------------------------------------------- /WinRT/AppConsumingWinRT/AppConsumingWinRT.wapproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/WinRT/AppConsumingWinRT/AppConsumingWinRT.wapproj -------------------------------------------------------------------------------- /WinRT/AppConsumingWinRT/Images/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/WinRT/AppConsumingWinRT/Images/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /WinRT/AppConsumingWinRT/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/WinRT/AppConsumingWinRT/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /WinRT/AppConsumingWinRT/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/WinRT/AppConsumingWinRT/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /WinRT/AppConsumingWinRT/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/WinRT/AppConsumingWinRT/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /WinRT/AppConsumingWinRT/Images/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/WinRT/AppConsumingWinRT/Images/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /WinRT/AppConsumingWinRT/Images/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/WinRT/AppConsumingWinRT/Images/StoreLogo.png -------------------------------------------------------------------------------- /WinRT/AppConsumingWinRT/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/WinRT/AppConsumingWinRT/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /WinRT/AppConsumingWinRT/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/WinRT/AppConsumingWinRT/Package.appxmanifest -------------------------------------------------------------------------------- /WinRT/WinFormsReferencingWinRT/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/WinRT/WinFormsReferencingWinRT/App.config -------------------------------------------------------------------------------- /WinRT/WinFormsReferencingWinRT/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/WinRT/WinFormsReferencingWinRT/Form1.Designer.cs -------------------------------------------------------------------------------- /WinRT/WinFormsReferencingWinRT/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/WinRT/WinFormsReferencingWinRT/Form1.cs -------------------------------------------------------------------------------- /WinRT/WinFormsReferencingWinRT/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/WinRT/WinFormsReferencingWinRT/Form1.resx -------------------------------------------------------------------------------- /WinRT/WinFormsReferencingWinRT/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/WinRT/WinFormsReferencingWinRT/Program.cs -------------------------------------------------------------------------------- /WinRT/WinFormsReferencingWinRT/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/WinRT/WinFormsReferencingWinRT/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WinRT/WinFormsReferencingWinRT/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/WinRT/WinFormsReferencingWinRT/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WinRT/WinFormsReferencingWinRT/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/WinRT/WinFormsReferencingWinRT/Properties/Resources.resx -------------------------------------------------------------------------------- /WinRT/WinFormsReferencingWinRT/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/WinRT/WinFormsReferencingWinRT/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WinRT/WinFormsReferencingWinRT/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/WinRT/WinFormsReferencingWinRT/Properties/Settings.settings -------------------------------------------------------------------------------- /WinRT/WinFormsReferencingWinRT/WinFormsReferencingWinRT.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/WinRT/WinFormsReferencingWinRT/WinFormsReferencingWinRT.csproj -------------------------------------------------------------------------------- /WinRT/WinRT.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/WinRT/WinRT.sln -------------------------------------------------------------------------------- /WinRT/WinRTLibrary/Class1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/WinRT/WinRTLibrary/Class1.cpp -------------------------------------------------------------------------------- /WinRT/WinRTLibrary/Class1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/WinRT/WinRTLibrary/Class1.h -------------------------------------------------------------------------------- /WinRT/WinRTLibrary/WinRTLibrary.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/WinRT/WinRTLibrary/WinRTLibrary.vcxproj -------------------------------------------------------------------------------- /WinRT/WinRTLibrary/WinRTLibrary.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/WinRT/WinRTLibrary/WinRTLibrary.vcxproj.filters -------------------------------------------------------------------------------- /WinRT/WinRTLibrary/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /WinRT/WinRTLibrary/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/WinRT/WinRTLibrary/pch.h -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Packaging-Samples/HEAD/azure-pipelines.yml --------------------------------------------------------------------------------