├── .gitignore ├── LICENSE ├── README.md ├── chapter01 └── src │ ├── calculator.console │ ├── Program.cs │ └── calculator.console.csproj │ └── calculator.sln ├── chapter02 └── src │ ├── calculator.console │ ├── Program.cs │ └── calculator.console.csproj │ ├── calculator.core │ ├── Calculator.cs │ └── calculator.core.csproj │ ├── calculator.droid │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── content_main.xml │ │ ├── menu │ │ │ └── menu_main.xml │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ └── calculator.droid.csproj │ ├── calculator.forms.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── layout │ │ │ ├── Tabbar.xml │ │ │ └── Toolbar.xml │ │ ├── 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 │ └── calculator.forms.Android.csproj │ ├── calculator.forms.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 │ │ ├── Default-568h@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ └── LaunchScreen.storyboard │ └── calculator.forms.iOS.csproj │ ├── calculator.forms │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MainPageViewModel.cs │ └── calculator.forms.csproj │ ├── calculator.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 │ ├── LaunchScreen.storyboard │ ├── Main.cs │ ├── Main.storyboard │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ └── LaunchScreen.xib │ ├── SceneDelegate.cs │ ├── ViewController.cs │ ├── ViewController.designer.cs │ └── calculator.ios.csproj │ └── calculator.sln ├── chapter03 └── src │ ├── calculator.console │ ├── Program.cs │ └── calculator.console.csproj │ ├── calculator.core │ ├── Calculator.cs │ └── calculator.core.csproj │ ├── calculator.droid │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── content_main.xml │ │ ├── menu │ │ │ └── menu_main.xml │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ └── calculator.droid.csproj │ ├── calculator.forms.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── layout │ │ │ ├── Tabbar.xml │ │ │ └── Toolbar.xml │ │ ├── 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 │ └── calculator.forms.Android.csproj │ ├── calculator.forms.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 │ │ ├── Default-568h@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ └── LaunchScreen.storyboard │ └── calculator.forms.iOS.csproj │ ├── calculator.forms.uwp │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── calculator.forms.uwp.csproj │ ├── calculator.forms │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MainPageViewModel.cs │ └── calculator.forms.csproj │ ├── calculator.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 │ ├── LaunchScreen.storyboard │ ├── Main.cs │ ├── Main.storyboard │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ └── LaunchScreen.xib │ ├── SceneDelegate.cs │ ├── ViewController.cs │ ├── ViewController.designer.cs │ └── calculator.ios.csproj │ └── calculator.sln ├── chapter04 └── ShopAcross.Mobile │ ├── ShopAcross.Mobile.Client.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── layout │ │ │ ├── Tabbar.xml │ │ │ └── Toolbar.xml │ │ ├── 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 │ └── ShopAcross.Mobile.Client.Android.csproj │ ├── ShopAcross.Mobile.Client.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 │ │ ├── Default-568h@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ └── LaunchScreen.storyboard │ └── ShopAcross.Mobile.Client.iOS.csproj │ ├── ShopAcross.Mobile.Client │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── LoginView.xaml │ ├── LoginView.xaml.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ └── ShopAcross.Mobile.Client.csproj │ ├── ShopAcross.Mobile.Core │ ├── Class1.cs │ ├── LoginViewModel.cs │ └── ShopAcross.Mobile.Core.csproj │ ├── ShopAcross.Mobile.sln │ └── ShopAcross.Service.Data │ ├── Class1.cs │ └── ShopAcross.Service.Data.csproj ├── chapter05 └── ShopAcross.Mobile │ ├── ShopAcross.Mobile.Client.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── layout │ │ │ ├── Tabbar.xml │ │ │ └── Toolbar.xml │ │ ├── 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 │ └── ShopAcross.Mobile.Client.Android.csproj │ ├── ShopAcross.Mobile.Client.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 │ │ ├── Default-568h@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── LaunchScreen.storyboard │ │ ├── slideout.png │ │ └── xamarin.png │ └── ShopAcross.Mobile.Client.iOS.csproj │ ├── ShopAcross.Mobile.Client │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppShell.xaml │ ├── AppShell.xaml.cs │ ├── AssemblyInfo.cs │ ├── Converters │ │ └── DataFormatConverter.cs │ ├── HomeView.xaml │ ├── HomeView.xaml.cs │ ├── LoginView.xaml │ ├── LoginView.xaml.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── ProductDetailsView.xaml │ ├── ProductDetailsView.xaml.cs │ ├── RecentProductsView.xaml │ ├── RecentProductsView.xaml.cs │ ├── RootTabbedView.xaml │ ├── RootTabbedView.xaml.cs │ ├── RootView.xaml │ ├── RootView.xaml.cs │ ├── SettingsView.xaml │ ├── SettingsView.xaml.cs │ └── ShopAcross.Mobile.Client.csproj │ ├── ShopAcross.Mobile.Core │ ├── Class1.cs │ ├── LoginViewModel.cs │ └── ShopAcross.Mobile.Core.csproj │ ├── ShopAcross.Mobile.sln │ └── ShopAcross.Service.Data │ ├── Class1.cs │ └── ShopAcross.Service.Data.csproj ├── chapter06 └── ShopAcross.Mobile │ ├── ShopAcross.Mobile.Client.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Renderers │ │ └── FloatingLabelEntryRenderer.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── layout │ │ │ ├── Tabbar.xml │ │ │ └── Toolbar.xml │ │ ├── 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 │ └── ShopAcross.Mobile.Client.Android.csproj │ ├── ShopAcross.Mobile.Client.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 │ ├── Effects │ │ └── HtmlTextEffect.cs │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── LaunchScreen.storyboard │ │ ├── slideout.png │ │ └── xamarin.png │ └── ShopAcross.Mobile.Client.iOS.csproj │ ├── ShopAcross.Mobile.Client │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppShell.xaml │ ├── AppShell.xaml.cs │ ├── AssemblyInfo.cs │ ├── Behaviors │ │ └── ValidationBehavior.cs │ ├── Controls │ │ ├── FloatingLabelEntry.cs │ │ ├── ValidatableEntry.xaml │ │ └── ValidatableEntry.xaml.cs │ ├── Converters │ │ └── DataFormatConverter.cs │ ├── Effects │ │ └── HtmlTextEffect.cs │ ├── Extensions │ │ ├── HtmlText.cs │ │ ├── TranslateExtension.cs │ │ └── Validations.cs │ ├── HomeView.xaml │ ├── HomeView.xaml.cs │ ├── LoginView.xaml │ ├── LoginView.xaml.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── ProductDetailsView.xaml │ ├── ProductDetailsView.xaml.cs │ ├── RecentProductsView.xaml │ ├── RecentProductsView.xaml.cs │ ├── Resources │ │ └── Styles.css │ ├── RootTabbedView.xaml │ ├── RootTabbedView.xaml.cs │ ├── RootView.xaml │ ├── RootView.xaml.cs │ ├── SettingsView.xaml │ ├── SettingsView.xaml.cs │ └── ShopAcross.Mobile.Client.csproj │ ├── ShopAcross.Mobile.Core │ ├── BaseBindableObject.cs │ ├── Common │ │ └── IValidationRule.cs │ ├── HomeViewModel.cs │ ├── LoginViewModel.cs │ ├── ProductViewModel.cs │ └── ShopAcross.Mobile.Core.csproj │ ├── ShopAcross.Mobile.sln │ └── ShopAcross.Service.Data │ ├── Class1.cs │ └── ShopAcross.Service.Data.csproj ├── chapter08 ├── ShopAcross.Web.Repository.Cosmos │ ├── CosmosCollection.cs │ └── ShopAcross.Web.Repository.Cosmos.csproj ├── ShopAcross.Web.Repository │ ├── IRepository.cs │ └── ShopAcross.Web.Repository.csproj └── ShopAcross.Web.sln └── chapter09 ├── ShopAcross.Web.Api ├── AuctionsStoreContext.cs ├── Controllers │ ├── AuctionsController.cs │ └── UsersController.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── ShopAcross.Web.Api.csproj ├── Startup.cs ├── appsettings.Development.json └── appsettings.json ├── ShopAcross.Web.Data ├── Address.cs ├── Auction.cs ├── AuctionInfo.cs ├── Bid.cs ├── Currency.cs ├── Engine.cs ├── Fuel.cs ├── Price.cs ├── ShopAcross.Web.Data.csproj ├── User.cs └── Vehicle.cs ├── ShopAcross.Web.Repository.Cosmos ├── CosmosCollection.cs └── ShopAcross.Web.Repository.Cosmos.csproj ├── ShopAcross.Web.Repository ├── IRepository.cs └── ShopAcross.Web.Repository.csproj └── ShopAcross.Web.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/README.md -------------------------------------------------------------------------------- /chapter01/src/calculator.console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter01/src/calculator.console/Program.cs -------------------------------------------------------------------------------- /chapter01/src/calculator.console/calculator.console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter01/src/calculator.console/calculator.console.csproj -------------------------------------------------------------------------------- /chapter01/src/calculator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter01/src/calculator.sln -------------------------------------------------------------------------------- /chapter02/src/calculator.console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.console/Program.cs -------------------------------------------------------------------------------- /chapter02/src/calculator.console/calculator.console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.console/calculator.console.csproj -------------------------------------------------------------------------------- /chapter02/src/calculator.core/Calculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.core/Calculator.cs -------------------------------------------------------------------------------- /chapter02/src/calculator.core/calculator.core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.core/calculator.core.csproj -------------------------------------------------------------------------------- /chapter02/src/calculator.droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /chapter02/src/calculator.droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.droid/MainActivity.cs -------------------------------------------------------------------------------- /chapter02/src/calculator.droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /chapter02/src/calculator.droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /chapter02/src/calculator.droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /chapter02/src/calculator.droid/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.droid/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /chapter02/src/calculator.droid/Resources/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.droid/Resources/layout/activity_main.xml -------------------------------------------------------------------------------- /chapter02/src/calculator.droid/Resources/layout/content_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.droid/Resources/layout/content_main.xml -------------------------------------------------------------------------------- /chapter02/src/calculator.droid/Resources/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.droid/Resources/menu/menu_main.xml -------------------------------------------------------------------------------- /chapter02/src/calculator.droid/Resources/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.droid/Resources/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /chapter02/src/calculator.droid/Resources/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.droid/Resources/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /chapter02/src/calculator.droid/Resources/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.droid/Resources/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /chapter02/src/calculator.droid/Resources/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.droid/Resources/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /chapter02/src/calculator.droid/Resources/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.droid/Resources/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /chapter02/src/calculator.droid/Resources/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.droid/Resources/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /chapter02/src/calculator.droid/Resources/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.droid/Resources/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /chapter02/src/calculator.droid/Resources/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.droid/Resources/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /chapter02/src/calculator.droid/Resources/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.droid/Resources/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /chapter02/src/calculator.droid/Resources/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.droid/Resources/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /chapter02/src/calculator.droid/Resources/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.droid/Resources/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /chapter02/src/calculator.droid/Resources/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.droid/Resources/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /chapter02/src/calculator.droid/Resources/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.droid/Resources/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /chapter02/src/calculator.droid/Resources/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.droid/Resources/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /chapter02/src/calculator.droid/Resources/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.droid/Resources/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /chapter02/src/calculator.droid/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.droid/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /chapter02/src/calculator.droid/Resources/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.droid/Resources/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /chapter02/src/calculator.droid/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.droid/Resources/values/colors.xml -------------------------------------------------------------------------------- /chapter02/src/calculator.droid/Resources/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.droid/Resources/values/dimens.xml -------------------------------------------------------------------------------- /chapter02/src/calculator.droid/Resources/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.droid/Resources/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /chapter02/src/calculator.droid/Resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.droid/Resources/values/strings.xml -------------------------------------------------------------------------------- /chapter02/src/calculator.droid/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.droid/Resources/values/styles.xml -------------------------------------------------------------------------------- /chapter02/src/calculator.droid/calculator.droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.droid/calculator.droid.csproj -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.Android/MainActivity.cs -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.Android/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.Android/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.Android/Resources/layout/Tabbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.Android/Resources/layout/Tabbar.xml -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.Android/Resources/layout/Toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.Android/Resources/layout/Toolbar.xml -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.Android/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.Android/Resources/mipmap-anydpi-v26/icon.xml -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.Android/Resources/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.Android/Resources/mipmap-anydpi-v26/icon_round.xml -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.Android/Resources/mipmap-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.Android/Resources/mipmap-hdpi/icon.png -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.Android/Resources/mipmap-hdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.Android/Resources/mipmap-hdpi/launcher_foreground.png -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.Android/Resources/mipmap-mdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.Android/Resources/mipmap-mdpi/launcher_foreground.png -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.Android/Resources/mipmap-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.Android/Resources/mipmap-xhdpi/icon.png -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.Android/Resources/mipmap-xhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.Android/Resources/mipmap-xhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.Android/Resources/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.Android/Resources/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.Android/Resources/mipmap-xxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.Android/Resources/mipmap-xxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.Android/Resources/mipmap-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.Android/Resources/mipmap-xxxhdpi/icon.png -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.Android/calculator.forms.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.Android/calculator.forms.Android.csproj -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.iOS/Entitlements.plist -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.iOS/Info.plist -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.iOS/Main.cs -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.iOS/Resources/Default.png -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /chapter02/src/calculator.forms.iOS/calculator.forms.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms.iOS/calculator.forms.iOS.csproj -------------------------------------------------------------------------------- /chapter02/src/calculator.forms/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms/App.xaml -------------------------------------------------------------------------------- /chapter02/src/calculator.forms/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms/App.xaml.cs -------------------------------------------------------------------------------- /chapter02/src/calculator.forms/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms/AssemblyInfo.cs -------------------------------------------------------------------------------- /chapter02/src/calculator.forms/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms/MainPage.xaml -------------------------------------------------------------------------------- /chapter02/src/calculator.forms/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms/MainPage.xaml.cs -------------------------------------------------------------------------------- /chapter02/src/calculator.forms/MainPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms/MainPageViewModel.cs -------------------------------------------------------------------------------- /chapter02/src/calculator.forms/calculator.forms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.forms/calculator.forms.csproj -------------------------------------------------------------------------------- /chapter02/src/calculator.ios/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.ios/AppDelegate.cs -------------------------------------------------------------------------------- /chapter02/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /chapter02/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /chapter02/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /chapter02/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /chapter02/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /chapter02/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /chapter02/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /chapter02/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /chapter02/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /chapter02/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /chapter02/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /chapter02/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /chapter02/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /chapter02/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /chapter02/src/calculator.ios/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.ios/Entitlements.plist -------------------------------------------------------------------------------- /chapter02/src/calculator.ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.ios/Info.plist -------------------------------------------------------------------------------- /chapter02/src/calculator.ios/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.ios/LaunchScreen.storyboard -------------------------------------------------------------------------------- /chapter02/src/calculator.ios/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.ios/Main.cs -------------------------------------------------------------------------------- /chapter02/src/calculator.ios/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.ios/Main.storyboard -------------------------------------------------------------------------------- /chapter02/src/calculator.ios/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.ios/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /chapter02/src/calculator.ios/Resources/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.ios/Resources/LaunchScreen.xib -------------------------------------------------------------------------------- /chapter02/src/calculator.ios/SceneDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.ios/SceneDelegate.cs -------------------------------------------------------------------------------- /chapter02/src/calculator.ios/ViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.ios/ViewController.cs -------------------------------------------------------------------------------- /chapter02/src/calculator.ios/ViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.ios/ViewController.designer.cs -------------------------------------------------------------------------------- /chapter02/src/calculator.ios/calculator.ios.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.ios/calculator.ios.csproj -------------------------------------------------------------------------------- /chapter02/src/calculator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter02/src/calculator.sln -------------------------------------------------------------------------------- /chapter03/src/calculator.console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.console/Program.cs -------------------------------------------------------------------------------- /chapter03/src/calculator.console/calculator.console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.console/calculator.console.csproj -------------------------------------------------------------------------------- /chapter03/src/calculator.core/Calculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.core/Calculator.cs -------------------------------------------------------------------------------- /chapter03/src/calculator.core/calculator.core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.core/calculator.core.csproj -------------------------------------------------------------------------------- /chapter03/src/calculator.droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /chapter03/src/calculator.droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.droid/MainActivity.cs -------------------------------------------------------------------------------- /chapter03/src/calculator.droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /chapter03/src/calculator.droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /chapter03/src/calculator.droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /chapter03/src/calculator.droid/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.droid/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /chapter03/src/calculator.droid/Resources/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.droid/Resources/layout/activity_main.xml -------------------------------------------------------------------------------- /chapter03/src/calculator.droid/Resources/layout/content_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.droid/Resources/layout/content_main.xml -------------------------------------------------------------------------------- /chapter03/src/calculator.droid/Resources/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.droid/Resources/menu/menu_main.xml -------------------------------------------------------------------------------- /chapter03/src/calculator.droid/Resources/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.droid/Resources/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /chapter03/src/calculator.droid/Resources/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.droid/Resources/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /chapter03/src/calculator.droid/Resources/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.droid/Resources/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /chapter03/src/calculator.droid/Resources/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.droid/Resources/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /chapter03/src/calculator.droid/Resources/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.droid/Resources/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /chapter03/src/calculator.droid/Resources/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.droid/Resources/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /chapter03/src/calculator.droid/Resources/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.droid/Resources/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /chapter03/src/calculator.droid/Resources/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.droid/Resources/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /chapter03/src/calculator.droid/Resources/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.droid/Resources/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /chapter03/src/calculator.droid/Resources/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.droid/Resources/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /chapter03/src/calculator.droid/Resources/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.droid/Resources/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /chapter03/src/calculator.droid/Resources/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.droid/Resources/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /chapter03/src/calculator.droid/Resources/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.droid/Resources/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /chapter03/src/calculator.droid/Resources/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.droid/Resources/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /chapter03/src/calculator.droid/Resources/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.droid/Resources/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /chapter03/src/calculator.droid/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.droid/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /chapter03/src/calculator.droid/Resources/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.droid/Resources/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /chapter03/src/calculator.droid/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.droid/Resources/values/colors.xml -------------------------------------------------------------------------------- /chapter03/src/calculator.droid/Resources/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.droid/Resources/values/dimens.xml -------------------------------------------------------------------------------- /chapter03/src/calculator.droid/Resources/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.droid/Resources/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /chapter03/src/calculator.droid/Resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.droid/Resources/values/strings.xml -------------------------------------------------------------------------------- /chapter03/src/calculator.droid/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.droid/Resources/values/styles.xml -------------------------------------------------------------------------------- /chapter03/src/calculator.droid/calculator.droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.droid/calculator.droid.csproj -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.Android/MainActivity.cs -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.Android/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.Android/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.Android/Resources/layout/Tabbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.Android/Resources/layout/Tabbar.xml -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.Android/Resources/layout/Toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.Android/Resources/layout/Toolbar.xml -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.Android/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.Android/Resources/mipmap-anydpi-v26/icon.xml -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.Android/Resources/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.Android/Resources/mipmap-anydpi-v26/icon_round.xml -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.Android/Resources/mipmap-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.Android/Resources/mipmap-hdpi/icon.png -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.Android/Resources/mipmap-hdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.Android/Resources/mipmap-hdpi/launcher_foreground.png -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.Android/Resources/mipmap-mdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.Android/Resources/mipmap-mdpi/launcher_foreground.png -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.Android/Resources/mipmap-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.Android/Resources/mipmap-xhdpi/icon.png -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.Android/Resources/mipmap-xhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.Android/Resources/mipmap-xhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.Android/Resources/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.Android/Resources/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.Android/Resources/mipmap-xxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.Android/Resources/mipmap-xxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.Android/Resources/mipmap-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.Android/Resources/mipmap-xxxhdpi/icon.png -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.Android/calculator.forms.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.Android/calculator.forms.Android.csproj -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.iOS/Entitlements.plist -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.iOS/Info.plist -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.iOS/Main.cs -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.iOS/Resources/Default.png -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.iOS/calculator.forms.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.iOS/calculator.forms.iOS.csproj -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.uwp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.uwp/App.xaml -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.uwp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.uwp/App.xaml.cs -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.uwp/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.uwp/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.uwp/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.uwp/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.uwp/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.uwp/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.uwp/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.uwp/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.uwp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.uwp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.uwp/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.uwp/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.uwp/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.uwp/MainPage.xaml -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.uwp/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.uwp/MainPage.xaml.cs -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.uwp/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.uwp/Package.appxmanifest -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.uwp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.uwp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.uwp/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.uwp/Properties/Default.rd.xml -------------------------------------------------------------------------------- /chapter03/src/calculator.forms.uwp/calculator.forms.uwp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms.uwp/calculator.forms.uwp.csproj -------------------------------------------------------------------------------- /chapter03/src/calculator.forms/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms/App.xaml -------------------------------------------------------------------------------- /chapter03/src/calculator.forms/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms/App.xaml.cs -------------------------------------------------------------------------------- /chapter03/src/calculator.forms/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms/AssemblyInfo.cs -------------------------------------------------------------------------------- /chapter03/src/calculator.forms/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms/MainPage.xaml -------------------------------------------------------------------------------- /chapter03/src/calculator.forms/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms/MainPage.xaml.cs -------------------------------------------------------------------------------- /chapter03/src/calculator.forms/MainPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms/MainPageViewModel.cs -------------------------------------------------------------------------------- /chapter03/src/calculator.forms/calculator.forms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.forms/calculator.forms.csproj -------------------------------------------------------------------------------- /chapter03/src/calculator.ios/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.ios/AppDelegate.cs -------------------------------------------------------------------------------- /chapter03/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /chapter03/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /chapter03/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /chapter03/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /chapter03/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /chapter03/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /chapter03/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /chapter03/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /chapter03/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /chapter03/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /chapter03/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /chapter03/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /chapter03/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /chapter03/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.ios/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /chapter03/src/calculator.ios/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.ios/Entitlements.plist -------------------------------------------------------------------------------- /chapter03/src/calculator.ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.ios/Info.plist -------------------------------------------------------------------------------- /chapter03/src/calculator.ios/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.ios/LaunchScreen.storyboard -------------------------------------------------------------------------------- /chapter03/src/calculator.ios/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.ios/Main.cs -------------------------------------------------------------------------------- /chapter03/src/calculator.ios/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.ios/Main.storyboard -------------------------------------------------------------------------------- /chapter03/src/calculator.ios/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.ios/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /chapter03/src/calculator.ios/Resources/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.ios/Resources/LaunchScreen.xib -------------------------------------------------------------------------------- /chapter03/src/calculator.ios/SceneDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.ios/SceneDelegate.cs -------------------------------------------------------------------------------- /chapter03/src/calculator.ios/ViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.ios/ViewController.cs -------------------------------------------------------------------------------- /chapter03/src/calculator.ios/ViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.ios/ViewController.designer.cs -------------------------------------------------------------------------------- /chapter03/src/calculator.ios/calculator.ios.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.ios/calculator.ios.csproj -------------------------------------------------------------------------------- /chapter03/src/calculator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter03/src/calculator.sln -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/MainActivity.cs -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/layout/Tabbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/layout/Tabbar.xml -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/layout/Toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/layout/Toolbar.xml -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-anydpi-v26/icon.xml -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-anydpi-v26/icon_round.xml -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-hdpi/icon.png -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-hdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-hdpi/launcher_foreground.png -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-mdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-mdpi/launcher_foreground.png -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-xhdpi/icon.png -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-xhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-xhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-xxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-xxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-xxxhdpi/icon.png -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/ShopAcross.Mobile.Client.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/ShopAcross.Mobile.Client.Android.csproj -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Entitlements.plist -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Info.plist -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Main.cs -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/Default.png -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/ShopAcross.Mobile.Client.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/ShopAcross.Mobile.Client.iOS.csproj -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client/App.xaml -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client/App.xaml.cs -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client/AssemblyInfo.cs -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client/LoginView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client/LoginView.xaml -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client/LoginView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client/LoginView.xaml.cs -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client/MainPage.xaml -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client/MainPage.xaml.cs -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client/ShopAcross.Mobile.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Client/ShopAcross.Mobile.Client.csproj -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Core/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Core/Class1.cs -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Core/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Core/LoginViewModel.cs -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Core/ShopAcross.Mobile.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.Core/ShopAcross.Mobile.Core.csproj -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Mobile.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Mobile.sln -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Service.Data/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Service.Data/Class1.cs -------------------------------------------------------------------------------- /chapter04/ShopAcross.Mobile/ShopAcross.Service.Data/ShopAcross.Service.Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter04/ShopAcross.Mobile/ShopAcross.Service.Data/ShopAcross.Service.Data.csproj -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/MainActivity.cs -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/layout/Tabbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/layout/Tabbar.xml -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/layout/Toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/layout/Toolbar.xml -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-anydpi-v26/icon.xml -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-anydpi-v26/icon_round.xml -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-hdpi/icon.png -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-hdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-hdpi/launcher_foreground.png -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-mdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-mdpi/launcher_foreground.png -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-xhdpi/icon.png -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-xhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-xhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-xxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-xxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-xxxhdpi/icon.png -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/ShopAcross.Mobile.Client.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/ShopAcross.Mobile.Client.Android.csproj -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Entitlements.plist -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Info.plist -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Main.cs -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/Default.png -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/slideout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/slideout.png -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/xamarin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/xamarin.png -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/ShopAcross.Mobile.Client.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/ShopAcross.Mobile.Client.iOS.csproj -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/App.xaml -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/App.xaml.cs -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/AppShell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/AppShell.xaml -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/AppShell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/AppShell.xaml.cs -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/AssemblyInfo.cs -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/Converters/DataFormatConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/Converters/DataFormatConverter.cs -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/HomeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/HomeView.xaml -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/HomeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/HomeView.xaml.cs -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/LoginView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/LoginView.xaml -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/LoginView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/LoginView.xaml.cs -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/MainPage.xaml -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/MainPage.xaml.cs -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/ProductDetailsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/ProductDetailsView.xaml -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/ProductDetailsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/ProductDetailsView.xaml.cs -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/RecentProductsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/RecentProductsView.xaml -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/RecentProductsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/RecentProductsView.xaml.cs -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/RootTabbedView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/RootTabbedView.xaml -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/RootTabbedView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/RootTabbedView.xaml.cs -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/RootView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/RootView.xaml -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/RootView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/RootView.xaml.cs -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/SettingsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/SettingsView.xaml -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/SettingsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/SettingsView.xaml.cs -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/ShopAcross.Mobile.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Client/ShopAcross.Mobile.Client.csproj -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Core/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Core/Class1.cs -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Core/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Core/LoginViewModel.cs -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Core/ShopAcross.Mobile.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.Core/ShopAcross.Mobile.Core.csproj -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Mobile.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Mobile.sln -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Service.Data/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Service.Data/Class1.cs -------------------------------------------------------------------------------- /chapter05/ShopAcross.Mobile/ShopAcross.Service.Data/ShopAcross.Service.Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter05/ShopAcross.Mobile/ShopAcross.Service.Data/ShopAcross.Service.Data.csproj -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/MainActivity.cs -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Renderers/FloatingLabelEntryRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Renderers/FloatingLabelEntryRenderer.cs -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/layout/Tabbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/layout/Tabbar.xml -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/layout/Toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/layout/Toolbar.xml -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-anydpi-v26/icon.xml -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-anydpi-v26/icon_round.xml -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-hdpi/icon.png -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-hdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-hdpi/launcher_foreground.png -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-mdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-mdpi/launcher_foreground.png -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-xhdpi/icon.png -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-xhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-xhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-xxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-xxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-xxxhdpi/icon.png -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/ShopAcross.Mobile.Client.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.Android/ShopAcross.Mobile.Client.Android.csproj -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Effects/HtmlTextEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Effects/HtmlTextEffect.cs -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Entitlements.plist -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Info.plist -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Main.cs -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/Default.png -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/slideout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/slideout.png -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/xamarin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/Resources/xamarin.png -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/ShopAcross.Mobile.Client.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client.iOS/ShopAcross.Mobile.Client.iOS.csproj -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/App.xaml -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/App.xaml.cs -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/AppShell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/AppShell.xaml -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/AppShell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/AppShell.xaml.cs -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/AssemblyInfo.cs -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/Behaviors/ValidationBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/Behaviors/ValidationBehavior.cs -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/Controls/FloatingLabelEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/Controls/FloatingLabelEntry.cs -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/Controls/ValidatableEntry.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/Controls/ValidatableEntry.xaml -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/Controls/ValidatableEntry.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/Controls/ValidatableEntry.xaml.cs -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/Converters/DataFormatConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/Converters/DataFormatConverter.cs -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/Effects/HtmlTextEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/Effects/HtmlTextEffect.cs -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/Extensions/HtmlText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/Extensions/HtmlText.cs -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/Extensions/TranslateExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/Extensions/TranslateExtension.cs -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/Extensions/Validations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/Extensions/Validations.cs -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/HomeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/HomeView.xaml -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/HomeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/HomeView.xaml.cs -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/LoginView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/LoginView.xaml -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/LoginView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/LoginView.xaml.cs -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/MainPage.xaml -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/MainPage.xaml.cs -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/ProductDetailsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/ProductDetailsView.xaml -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/ProductDetailsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/ProductDetailsView.xaml.cs -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/RecentProductsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/RecentProductsView.xaml -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/RecentProductsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/RecentProductsView.xaml.cs -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/Resources/Styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/Resources/Styles.css -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/RootTabbedView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/RootTabbedView.xaml -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/RootTabbedView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/RootTabbedView.xaml.cs -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/RootView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/RootView.xaml -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/RootView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/RootView.xaml.cs -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/SettingsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/SettingsView.xaml -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/SettingsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/SettingsView.xaml.cs -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/ShopAcross.Mobile.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Client/ShopAcross.Mobile.Client.csproj -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Core/BaseBindableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Core/BaseBindableObject.cs -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Core/Common/IValidationRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Core/Common/IValidationRule.cs -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Core/HomeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Core/HomeViewModel.cs -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Core/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Core/LoginViewModel.cs -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Core/ProductViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Core/ProductViewModel.cs -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Core/ShopAcross.Mobile.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.Core/ShopAcross.Mobile.Core.csproj -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Mobile.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Mobile.sln -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Service.Data/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Service.Data/Class1.cs -------------------------------------------------------------------------------- /chapter06/ShopAcross.Mobile/ShopAcross.Service.Data/ShopAcross.Service.Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter06/ShopAcross.Mobile/ShopAcross.Service.Data/ShopAcross.Service.Data.csproj -------------------------------------------------------------------------------- /chapter08/ShopAcross.Web.Repository.Cosmos/CosmosCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter08/ShopAcross.Web.Repository.Cosmos/CosmosCollection.cs -------------------------------------------------------------------------------- /chapter08/ShopAcross.Web.Repository.Cosmos/ShopAcross.Web.Repository.Cosmos.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter08/ShopAcross.Web.Repository.Cosmos/ShopAcross.Web.Repository.Cosmos.csproj -------------------------------------------------------------------------------- /chapter08/ShopAcross.Web.Repository/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter08/ShopAcross.Web.Repository/IRepository.cs -------------------------------------------------------------------------------- /chapter08/ShopAcross.Web.Repository/ShopAcross.Web.Repository.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter08/ShopAcross.Web.Repository/ShopAcross.Web.Repository.csproj -------------------------------------------------------------------------------- /chapter08/ShopAcross.Web.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter08/ShopAcross.Web.sln -------------------------------------------------------------------------------- /chapter09/ShopAcross.Web.Api/AuctionsStoreContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter09/ShopAcross.Web.Api/AuctionsStoreContext.cs -------------------------------------------------------------------------------- /chapter09/ShopAcross.Web.Api/Controllers/AuctionsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter09/ShopAcross.Web.Api/Controllers/AuctionsController.cs -------------------------------------------------------------------------------- /chapter09/ShopAcross.Web.Api/Controllers/UsersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter09/ShopAcross.Web.Api/Controllers/UsersController.cs -------------------------------------------------------------------------------- /chapter09/ShopAcross.Web.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter09/ShopAcross.Web.Api/Program.cs -------------------------------------------------------------------------------- /chapter09/ShopAcross.Web.Api/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter09/ShopAcross.Web.Api/Properties/launchSettings.json -------------------------------------------------------------------------------- /chapter09/ShopAcross.Web.Api/ShopAcross.Web.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter09/ShopAcross.Web.Api/ShopAcross.Web.Api.csproj -------------------------------------------------------------------------------- /chapter09/ShopAcross.Web.Api/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter09/ShopAcross.Web.Api/Startup.cs -------------------------------------------------------------------------------- /chapter09/ShopAcross.Web.Api/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter09/ShopAcross.Web.Api/appsettings.Development.json -------------------------------------------------------------------------------- /chapter09/ShopAcross.Web.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter09/ShopAcross.Web.Api/appsettings.json -------------------------------------------------------------------------------- /chapter09/ShopAcross.Web.Data/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter09/ShopAcross.Web.Data/Address.cs -------------------------------------------------------------------------------- /chapter09/ShopAcross.Web.Data/Auction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter09/ShopAcross.Web.Data/Auction.cs -------------------------------------------------------------------------------- /chapter09/ShopAcross.Web.Data/AuctionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter09/ShopAcross.Web.Data/AuctionInfo.cs -------------------------------------------------------------------------------- /chapter09/ShopAcross.Web.Data/Bid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter09/ShopAcross.Web.Data/Bid.cs -------------------------------------------------------------------------------- /chapter09/ShopAcross.Web.Data/Currency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter09/ShopAcross.Web.Data/Currency.cs -------------------------------------------------------------------------------- /chapter09/ShopAcross.Web.Data/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter09/ShopAcross.Web.Data/Engine.cs -------------------------------------------------------------------------------- /chapter09/ShopAcross.Web.Data/Fuel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter09/ShopAcross.Web.Data/Fuel.cs -------------------------------------------------------------------------------- /chapter09/ShopAcross.Web.Data/Price.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter09/ShopAcross.Web.Data/Price.cs -------------------------------------------------------------------------------- /chapter09/ShopAcross.Web.Data/ShopAcross.Web.Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter09/ShopAcross.Web.Data/ShopAcross.Web.Data.csproj -------------------------------------------------------------------------------- /chapter09/ShopAcross.Web.Data/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter09/ShopAcross.Web.Data/User.cs -------------------------------------------------------------------------------- /chapter09/ShopAcross.Web.Data/Vehicle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter09/ShopAcross.Web.Data/Vehicle.cs -------------------------------------------------------------------------------- /chapter09/ShopAcross.Web.Repository.Cosmos/CosmosCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter09/ShopAcross.Web.Repository.Cosmos/CosmosCollection.cs -------------------------------------------------------------------------------- /chapter09/ShopAcross.Web.Repository.Cosmos/ShopAcross.Web.Repository.Cosmos.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter09/ShopAcross.Web.Repository.Cosmos/ShopAcross.Web.Repository.Cosmos.csproj -------------------------------------------------------------------------------- /chapter09/ShopAcross.Web.Repository/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter09/ShopAcross.Web.Repository/IRepository.cs -------------------------------------------------------------------------------- /chapter09/ShopAcross.Web.Repository/ShopAcross.Web.Repository.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter09/ShopAcross.Web.Repository/ShopAcross.Web.Repository.csproj -------------------------------------------------------------------------------- /chapter09/ShopAcross.Web.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mobile-Development-with-.NET-Second-Edition/HEAD/chapter09/ShopAcross.Web.sln --------------------------------------------------------------------------------