├── Create-ShellApp.ps1 ├── LICENSE ├── ReadMe.md └── resources ├── .editorconfig ├── .gitattributes ├── .gitignore ├── Clean-Outputs.ps1 ├── Directory.build.props ├── LICENSE ├── ReadMe.md ├── ShellApp.sln ├── azure-pipelines.yml ├── build ├── Sign-Packages.ps1 ├── azure-pipelines.yml ├── filelist.txt ├── phases │ ├── android.yml │ ├── build-module.yml │ ├── ios.yml │ └── run-uitests.yml └── steps │ ├── generate-secrets.yml │ └── nuget-restore.yml ├── shell ├── ShellApp.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── layout │ │ │ ├── Tabbar.axml │ │ │ └── Toolbar.axml │ │ ├── mipmap-anydpi-v26 │ │ │ ├── icon.xml │ │ │ └── icon_round.xml │ │ ├── mipmap-hdpi │ │ │ ├── Icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-mdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-xhdpi │ │ │ ├── Icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-xxhdpi │ │ │ ├── Icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-xxxhdpi │ │ │ ├── Icon.png │ │ │ └── launcher_foreground.png │ │ └── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ └── ShellApp.Android.csproj ├── ShellApp.UWP │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-400.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-400.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-200.png │ │ ├── SplashScreen.scale-400.png │ │ ├── Square150x150Logo.scale-100.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-48.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.targetsize-16.png │ │ ├── Square44x44Logo.targetsize-256.png │ │ ├── Square44x44Logo.targetsize-48.png │ │ ├── StoreLogo.backup.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-400.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-200.png │ │ └── Wide310x150Logo.scale-400.png │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── ShellApp.UWP.csproj ├── ShellApp.iOS │ ├── AppDelegate.cs │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon1024.png │ │ │ ├── Icon120.png │ │ │ ├── Icon152.png │ │ │ ├── Icon167.png │ │ │ ├── Icon180.png │ │ │ ├── Icon20.png │ │ │ ├── Icon29.png │ │ │ ├── Icon40.png │ │ │ ├── Icon58.png │ │ │ ├── Icon60.png │ │ │ ├── Icon76.png │ │ │ ├── Icon80.png │ │ │ └── Icon87.png │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ └── LaunchScreen.storyboard │ └── ShellApp.iOS.csproj └── ShellApp │ ├── App.xaml │ ├── App.xaml.cs │ ├── Helpers │ └── SyslogOptions.cs │ ├── ShellApp.csproj │ └── Views │ ├── MainPage.xaml │ └── MainPage.xaml.cs ├── src └── MyProject │ ├── MyProject.csproj │ ├── MyProjectModule.cs │ └── i18n │ ├── Resources.Designer.cs │ └── Resources.resx └── tests ├── MyProject.Tests ├── Mocks │ ├── Logging │ │ └── XunitLogger.cs │ ├── XunitApp.cs │ └── XunitPlatformInitializer.cs ├── MyProject.Tests.csproj └── Tests │ ├── AppFixture.cs │ └── ModuleTests.cs └── MyProject.UITests ├── AppManager.cs ├── BaseTestFixture.cs ├── MyProject.UITests.csproj ├── Pages ├── BasePage.cs └── MainPage.cs ├── PlatformQuery.cs ├── Tests.cs └── WaitTimes.cs /Create-ShellApp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/Create-ShellApp.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/LICENSE -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/ReadMe.md -------------------------------------------------------------------------------- /resources/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/.editorconfig -------------------------------------------------------------------------------- /resources/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/.gitattributes -------------------------------------------------------------------------------- /resources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/.gitignore -------------------------------------------------------------------------------- /resources/Clean-Outputs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/Clean-Outputs.ps1 -------------------------------------------------------------------------------- /resources/Directory.build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/Directory.build.props -------------------------------------------------------------------------------- /resources/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/LICENSE -------------------------------------------------------------------------------- /resources/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/ReadMe.md -------------------------------------------------------------------------------- /resources/ShellApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/ShellApp.sln -------------------------------------------------------------------------------- /resources/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/azure-pipelines.yml -------------------------------------------------------------------------------- /resources/build/Sign-Packages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/build/Sign-Packages.ps1 -------------------------------------------------------------------------------- /resources/build/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/build/azure-pipelines.yml -------------------------------------------------------------------------------- /resources/build/filelist.txt: -------------------------------------------------------------------------------- 1 | ** -------------------------------------------------------------------------------- /resources/build/phases/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/build/phases/android.yml -------------------------------------------------------------------------------- /resources/build/phases/build-module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/build/phases/build-module.yml -------------------------------------------------------------------------------- /resources/build/phases/ios.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/build/phases/ios.yml -------------------------------------------------------------------------------- /resources/build/phases/run-uitests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/build/phases/run-uitests.yml -------------------------------------------------------------------------------- /resources/build/steps/generate-secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/build/steps/generate-secrets.yml -------------------------------------------------------------------------------- /resources/build/steps/nuget-restore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/build/steps/nuget-restore.yml -------------------------------------------------------------------------------- /resources/shell/ShellApp.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /resources/shell/ShellApp.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.Android/MainActivity.cs -------------------------------------------------------------------------------- /resources/shell/ShellApp.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /resources/shell/ShellApp.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /resources/shell/ShellApp.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /resources/shell/ShellApp.Android/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.Android/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /resources/shell/ShellApp.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.Android/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /resources/shell/ShellApp.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.Android/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /resources/shell/ShellApp.Android/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.Android/Resources/mipmap-anydpi-v26/icon.xml -------------------------------------------------------------------------------- /resources/shell/ShellApp.Android/Resources/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.Android/Resources/mipmap-anydpi-v26/icon_round.xml -------------------------------------------------------------------------------- /resources/shell/ShellApp.Android/Resources/mipmap-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.Android/Resources/mipmap-hdpi/Icon.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.Android/Resources/mipmap-hdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.Android/Resources/mipmap-hdpi/launcher_foreground.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.Android/Resources/mipmap-mdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.Android/Resources/mipmap-mdpi/launcher_foreground.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.Android/Resources/mipmap-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.Android/Resources/mipmap-xhdpi/Icon.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.Android/Resources/mipmap-xhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.Android/Resources/mipmap-xhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.Android/Resources/mipmap-xxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.Android/Resources/mipmap-xxhdpi/Icon.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.Android/Resources/mipmap-xxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.Android/Resources/mipmap-xxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.Android/Resources/mipmap-xxxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.Android/Resources/mipmap-xxxhdpi/Icon.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /resources/shell/ShellApp.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /resources/shell/ShellApp.Android/ShellApp.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.Android/ShellApp.Android.csproj -------------------------------------------------------------------------------- /resources/shell/ShellApp.UWP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.UWP/App.xaml -------------------------------------------------------------------------------- /resources/shell/ShellApp.UWP/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.UWP/App.xaml.cs -------------------------------------------------------------------------------- /resources/shell/ShellApp.UWP/Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.UWP/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.UWP/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.UWP/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.UWP/Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.UWP/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.UWP/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.UWP/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.UWP/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.UWP/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.UWP/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.UWP/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.UWP/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.UWP/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.UWP/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.UWP/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.UWP/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.UWP/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.UWP/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.UWP/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.UWP/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.UWP/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.UWP/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.UWP/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.UWP/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.UWP/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.UWP/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.UWP/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.UWP/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.UWP/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.UWP/Assets/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.UWP/Assets/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.UWP/Assets/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.UWP/Assets/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.UWP/Assets/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.UWP/Assets/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.UWP/Assets/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.UWP/Assets/StoreLogo.backup.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.UWP/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.UWP/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.UWP/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.UWP/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.UWP/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.UWP/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.UWP/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.UWP/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.UWP/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.UWP/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.UWP/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.UWP/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.UWP/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.UWP/MainPage.xaml -------------------------------------------------------------------------------- /resources/shell/ShellApp.UWP/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.UWP/MainPage.xaml.cs -------------------------------------------------------------------------------- /resources/shell/ShellApp.UWP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.UWP/Package.appxmanifest -------------------------------------------------------------------------------- /resources/shell/ShellApp.UWP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.UWP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /resources/shell/ShellApp.UWP/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.UWP/Properties/Default.rd.xml -------------------------------------------------------------------------------- /resources/shell/ShellApp.UWP/ShellApp.UWP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.UWP/ShellApp.UWP.csproj -------------------------------------------------------------------------------- /resources/shell/ShellApp.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /resources/shell/ShellApp.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /resources/shell/ShellApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /resources/shell/ShellApp.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.iOS/Entitlements.plist -------------------------------------------------------------------------------- /resources/shell/ShellApp.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.iOS/Info.plist -------------------------------------------------------------------------------- /resources/shell/ShellApp.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.iOS/Main.cs -------------------------------------------------------------------------------- /resources/shell/ShellApp.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /resources/shell/ShellApp.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /resources/shell/ShellApp.iOS/ShellApp.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp.iOS/ShellApp.iOS.csproj -------------------------------------------------------------------------------- /resources/shell/ShellApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp/App.xaml -------------------------------------------------------------------------------- /resources/shell/ShellApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp/App.xaml.cs -------------------------------------------------------------------------------- /resources/shell/ShellApp/Helpers/SyslogOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp/Helpers/SyslogOptions.cs -------------------------------------------------------------------------------- /resources/shell/ShellApp/ShellApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp/ShellApp.csproj -------------------------------------------------------------------------------- /resources/shell/ShellApp/Views/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp/Views/MainPage.xaml -------------------------------------------------------------------------------- /resources/shell/ShellApp/Views/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/shell/ShellApp/Views/MainPage.xaml.cs -------------------------------------------------------------------------------- /resources/src/MyProject/MyProject.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/src/MyProject/MyProject.csproj -------------------------------------------------------------------------------- /resources/src/MyProject/MyProjectModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/src/MyProject/MyProjectModule.cs -------------------------------------------------------------------------------- /resources/src/MyProject/i18n/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/src/MyProject/i18n/Resources.Designer.cs -------------------------------------------------------------------------------- /resources/src/MyProject/i18n/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/src/MyProject/i18n/Resources.resx -------------------------------------------------------------------------------- /resources/tests/MyProject.Tests/Mocks/Logging/XunitLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/tests/MyProject.Tests/Mocks/Logging/XunitLogger.cs -------------------------------------------------------------------------------- /resources/tests/MyProject.Tests/Mocks/XunitApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/tests/MyProject.Tests/Mocks/XunitApp.cs -------------------------------------------------------------------------------- /resources/tests/MyProject.Tests/Mocks/XunitPlatformInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/tests/MyProject.Tests/Mocks/XunitPlatformInitializer.cs -------------------------------------------------------------------------------- /resources/tests/MyProject.Tests/MyProject.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/tests/MyProject.Tests/MyProject.Tests.csproj -------------------------------------------------------------------------------- /resources/tests/MyProject.Tests/Tests/AppFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/tests/MyProject.Tests/Tests/AppFixture.cs -------------------------------------------------------------------------------- /resources/tests/MyProject.Tests/Tests/ModuleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/tests/MyProject.Tests/Tests/ModuleTests.cs -------------------------------------------------------------------------------- /resources/tests/MyProject.UITests/AppManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/tests/MyProject.UITests/AppManager.cs -------------------------------------------------------------------------------- /resources/tests/MyProject.UITests/BaseTestFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/tests/MyProject.UITests/BaseTestFixture.cs -------------------------------------------------------------------------------- /resources/tests/MyProject.UITests/MyProject.UITests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/tests/MyProject.UITests/MyProject.UITests.csproj -------------------------------------------------------------------------------- /resources/tests/MyProject.UITests/Pages/BasePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/tests/MyProject.UITests/Pages/BasePage.cs -------------------------------------------------------------------------------- /resources/tests/MyProject.UITests/Pages/MainPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/tests/MyProject.UITests/Pages/MainPage.cs -------------------------------------------------------------------------------- /resources/tests/MyProject.UITests/PlatformQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/tests/MyProject.UITests/PlatformQuery.cs -------------------------------------------------------------------------------- /resources/tests/MyProject.UITests/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/tests/MyProject.UITests/Tests.cs -------------------------------------------------------------------------------- /resources/tests/MyProject.UITests/WaitTimes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dansiegel/ShellAppTemplate/HEAD/resources/tests/MyProject.UITests/WaitTimes.cs --------------------------------------------------------------------------------