├── .gitignore ├── Binding Sample ├── ObservableListApple.sln ├── ObservableListApple │ ├── AppDelegate.cs │ ├── CollectionViewController.cs │ ├── CollectionViewController.designer.cs │ ├── Entitlements.plist │ ├── Info.plist │ ├── Layout │ │ ├── CircleLayout.cs │ │ ├── GridLayout.cs │ │ ├── HeaderForCollectionView.cs │ │ ├── HeaderForTableView.cs │ │ ├── TableViewSourceEx.cs │ │ ├── TestCollectionViewCell.cs │ │ └── TestTableViewCell.cs │ ├── Main.cs │ ├── MainViewController.cs │ ├── MainViewController.designer.cs │ ├── Main_iPhone.storyboard │ ├── Model │ │ └── Item.cs │ ├── ObservableListApple.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-Small-40@2x.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon.png │ │ └── Icon@2x.png │ ├── UITableViewTableSourceController.cs │ ├── UITableViewTableSourceController.designer.cs │ ├── ViewModel │ │ ├── MainViewModel.cs │ │ └── ViewModelLocator.cs │ └── packages.config ├── References │ ├── Android │ │ ├── GalaSoft.MvvmLight.Platform.dll │ │ ├── GalaSoft.MvvmLight.Platform.dll.mdb │ │ └── GalaSoft.MvvmLight.Platform.xml │ ├── PCL │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ ├── GalaSoft.MvvmLight.Extras.dll.mdb │ │ ├── GalaSoft.MvvmLight.Extras.xml │ │ ├── GalaSoft.MvvmLight.dll │ │ ├── GalaSoft.MvvmLight.dll.mdb │ │ ├── GalaSoft.MvvmLight.xml │ │ ├── Microsoft.Practices.ServiceLocation.dll │ │ └── Microsoft.Practices.ServiceLocation.xml │ ├── Win10 │ │ ├── GalaSoft.MvvmLight.Platform.dll │ │ ├── GalaSoft.MvvmLight.Platform.pri │ │ └── GalaSoft.MvvmLight.Platform.xml │ └── iOS │ │ ├── GalaSoft.MvvmLight.Platform.dll │ │ └── GalaSoft.MvvmLight.Platform.xml ├── XamBindingSample.sln ├── XamBindingSample │ ├── XamBindingSample.Data │ │ ├── Model │ │ │ ├── Item.cs │ │ │ └── MainModel.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ViewModel │ │ │ ├── BindingsViewModel.cs │ │ │ ├── CommandsViewModel.cs │ │ │ ├── ListsViewModel.cs │ │ │ └── ViewModelLocator.cs │ │ ├── XamBindingSample.Data.csproj │ │ └── packages.config │ ├── XamBindingSample.Droid │ │ ├── App.cs │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── BindingsActivity.cs │ │ ├── BindingsActivity.ui.cs │ │ ├── CommandsActivity.cs │ │ ├── CommandsActivity.ui.cs │ │ ├── Helpers │ │ │ └── IocSetup.cs │ │ ├── ListsActivity.cs │ │ ├── ListsActivity.ui.cs │ │ ├── MainActivity.cs │ │ ├── MainActivity.ui.cs │ │ ├── Properties │ │ │ └── AndroidManifest.xml │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.Designer.cs │ │ │ ├── drawable │ │ │ │ └── Icon.png │ │ │ ├── layout │ │ │ │ ├── Bindings.axml │ │ │ │ ├── Commands.axml │ │ │ │ ├── ItemTemplate.axml │ │ │ │ ├── Lists.axml │ │ │ │ └── Main.axml │ │ │ └── values │ │ │ │ ├── Strings.xml │ │ │ │ └── Styles.xml │ │ ├── XamBindingSample.Droid.csproj │ │ └── packages.config │ ├── XamBindingSample.Win10 │ │ ├── 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 │ │ ├── BindingPage.xaml │ │ ├── BindingPage.xaml.cs │ │ ├── CommandsPage.xaml │ │ ├── CommandsPage.xaml.cs │ │ ├── Helpers │ │ │ ├── BoolToStringConverter.cs │ │ │ └── IocSetup.cs │ │ ├── ListsPage.xaml │ │ ├── ListsPage.xaml.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ │ └── Default.rd.xml │ │ ├── XamBindingSample.Win10.csproj │ │ └── project.json │ ├── XamBindingSample.iOS │ │ ├── AppDelegate.cs │ │ ├── Bindings2ViewController.cs │ │ ├── Bindings2ViewController.designer.cs │ │ ├── Bindings3ViewController.cs │ │ ├── Bindings3ViewController.designer.cs │ │ ├── Bindings4ViewController.cs │ │ ├── Bindings4ViewController.designer.cs │ │ ├── Bindings5ViewController.cs │ │ ├── Bindings5ViewController.designer.cs │ │ ├── Bindings6ViewController.cs │ │ ├── Bindings6ViewController.designer.cs │ │ ├── Bindings7ViewController.cs │ │ ├── Bindings7ViewController.designer.cs │ │ ├── Bindings8ViewController.cs │ │ ├── Bindings8ViewController.designer.cs │ │ ├── BindingsViewController.cs │ │ ├── BindingsViewController.designer.cs │ │ ├── Commands1ViewController.cs │ │ ├── Commands1ViewController.designer.cs │ │ ├── Commands2ViewController.cs │ │ ├── Commands2ViewController.designer.cs │ │ ├── Commands3ViewController.cs │ │ ├── Commands3ViewController.designer.cs │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── MainViewController.cs │ │ ├── MainViewController.designer.cs │ │ ├── Main_iPhone.storyboard │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ ├── XamBindingSample.iOS.csproj │ │ ├── XamBindingSample.iOS.csproj.bak │ │ └── packages.config │ └── packages │ │ ├── CommonServiceLocator.1.3 │ │ └── lib │ │ │ └── portable-net4+sl5+netcore45+wpa81+wp8 │ │ │ ├── Microsoft.Practices.ServiceLocation.XML │ │ │ ├── Microsoft.Practices.ServiceLocation.dll │ │ │ └── Microsoft.Practices.ServiceLocation.dll.mdb │ │ ├── MvvmLightLibs.5.2.0.0 │ │ └── lib │ │ │ ├── SL4 │ │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ │ ├── GalaSoft.MvvmLight.Extras.xml │ │ │ ├── GalaSoft.MvvmLight.dll │ │ │ ├── GalaSoft.MvvmLight.xml │ │ │ ├── System.Windows.Interactivity.dll │ │ │ └── System.Windows.Interactivity.xml │ │ │ ├── SL5 │ │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ │ ├── GalaSoft.MvvmLight.Extras.xml │ │ │ ├── GalaSoft.MvvmLight.dll │ │ │ ├── GalaSoft.MvvmLight.xml │ │ │ └── System.Windows.Interactivity.dll │ │ │ ├── monoandroid1 │ │ │ ├── GalaSoft.MvvmLight.Extras.XML │ │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ │ ├── GalaSoft.MvvmLight.Extras.dll.mdb │ │ │ ├── GalaSoft.MvvmLight.Platform.XML │ │ │ ├── GalaSoft.MvvmLight.Platform.dll │ │ │ ├── GalaSoft.MvvmLight.Platform.dll.mdb │ │ │ ├── GalaSoft.MvvmLight.XML │ │ │ ├── GalaSoft.MvvmLight.dll │ │ │ └── GalaSoft.MvvmLight.dll.mdb │ │ │ ├── net35 │ │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ │ ├── GalaSoft.MvvmLight.Extras.xml │ │ │ ├── GalaSoft.MvvmLight.dll │ │ │ ├── GalaSoft.MvvmLight.xml │ │ │ ├── System.Windows.Interactivity.dll │ │ │ └── System.Windows.Interactivity.xml │ │ │ ├── net40 │ │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ │ ├── GalaSoft.MvvmLight.Extras.xml │ │ │ ├── GalaSoft.MvvmLight.dll │ │ │ ├── GalaSoft.MvvmLight.xml │ │ │ ├── System.Windows.Interactivity.dll │ │ │ └── System.Windows.Interactivity.xml │ │ │ ├── net45 │ │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ │ ├── GalaSoft.MvvmLight.Extras.xml │ │ │ ├── GalaSoft.MvvmLight.Platform.dll │ │ │ ├── GalaSoft.MvvmLight.Platform.xml │ │ │ ├── GalaSoft.MvvmLight.dll │ │ │ ├── GalaSoft.MvvmLight.xml │ │ │ └── System.Windows.Interactivity.dll │ │ │ ├── portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10 │ │ │ ├── GalaSoft.MvvmLight.Extras.XML │ │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ │ ├── GalaSoft.MvvmLight.XML │ │ │ └── GalaSoft.MvvmLight.dll │ │ │ ├── sl4-wp71 │ │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ │ ├── GalaSoft.MvvmLight.Extras.xml │ │ │ ├── GalaSoft.MvvmLight.dll │ │ │ ├── GalaSoft.MvvmLight.xml │ │ │ ├── Microsoft.Practices.ServiceLocation.dll │ │ │ ├── Microsoft.Practices.ServiceLocation.xml │ │ │ ├── System.Windows.Interactivity.dll │ │ │ └── System.Windows.Interactivity.xml │ │ │ ├── windows8 │ │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ │ ├── GalaSoft.MvvmLight.Extras.xml │ │ │ ├── GalaSoft.MvvmLight.Platform.dll │ │ │ ├── GalaSoft.MvvmLight.Platform.pri │ │ │ ├── GalaSoft.MvvmLight.Platform.xml │ │ │ ├── GalaSoft.MvvmLight.dll │ │ │ └── GalaSoft.MvvmLight.xml │ │ │ ├── windows81 │ │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ │ ├── GalaSoft.MvvmLight.Extras.xml │ │ │ ├── GalaSoft.MvvmLight.Platform.dll │ │ │ ├── GalaSoft.MvvmLight.Platform.pri │ │ │ ├── GalaSoft.MvvmLight.Platform.xml │ │ │ ├── GalaSoft.MvvmLight.dll │ │ │ └── GalaSoft.MvvmLight.xml │ │ │ ├── wp8 │ │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ │ ├── GalaSoft.MvvmLight.Extras.xml │ │ │ ├── GalaSoft.MvvmLight.Platform.dll │ │ │ ├── GalaSoft.MvvmLight.Platform.xml │ │ │ ├── GalaSoft.MvvmLight.dll │ │ │ ├── GalaSoft.MvvmLight.xml │ │ │ └── System.Windows.Interactivity.dll │ │ │ ├── wp81 │ │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ │ ├── GalaSoft.MvvmLight.Extras.xml │ │ │ ├── GalaSoft.MvvmLight.Platform.dll │ │ │ ├── GalaSoft.MvvmLight.Platform.xml │ │ │ ├── GalaSoft.MvvmLight.dll │ │ │ ├── GalaSoft.MvvmLight.xml │ │ │ └── System.Windows.Interactivity.dll │ │ │ ├── wpa81 │ │ │ ├── GalaSoft.MvvmLight.Extras.XML │ │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ │ ├── GalaSoft.MvvmLight.Platform.XML │ │ │ ├── GalaSoft.MvvmLight.Platform.dll │ │ │ ├── GalaSoft.MvvmLight.Platform.pri │ │ │ ├── GalaSoft.MvvmLight.XML │ │ │ └── GalaSoft.MvvmLight.dll │ │ │ └── xamarin.ios10 │ │ │ ├── GalaSoft.MvvmLight.Extras.XML │ │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ │ ├── GalaSoft.MvvmLight.Platform.XML │ │ │ ├── GalaSoft.MvvmLight.Platform.dll │ │ │ ├── GalaSoft.MvvmLight.XML │ │ │ └── GalaSoft.MvvmLight.dll │ │ ├── Xamarin.Android.Support.v4.23.1.1.0 │ │ └── lib │ │ │ └── MonoAndroid403 │ │ │ └── Xamarin.Android.Support.v4.dll │ │ ├── Xamarin.Android.Support.v4.23.3.0-beta1 │ │ └── lib │ │ │ └── MonoAndroid403 │ │ │ └── Xamarin.Android.Support.v4.dll │ │ ├── Xamarin.Android.Support.v7.RecyclerView.23.1.1.0 │ │ └── lib │ │ │ └── MonoAndroid403 │ │ │ └── Xamarin.Android.Support.v7.RecyclerView.dll │ │ └── Xamarin.Android.Support.v7.RecyclerView.23.3.0-beta1 │ │ └── lib │ │ └── MonoAndroid403 │ │ └── Xamarin.Android.Support.v7.RecyclerView.dll └── packages │ ├── CommonServiceLocator.1.3 │ └── lib │ │ └── portable-net4+sl5+netcore45+wpa81+wp8 │ │ ├── Microsoft.Practices.ServiceLocation.XML │ │ ├── Microsoft.Practices.ServiceLocation.dll │ │ └── Microsoft.Practices.ServiceLocation.dll.mdb │ ├── MvvmLightAndroidSupport.5.3.0.0 │ └── lib │ │ └── monoandroid1 │ │ ├── GalaSoft.MvvmLight.Platform.AndroidSupport.XML │ │ ├── GalaSoft.MvvmLight.Platform.AndroidSupport.dll │ │ └── GalaSoft.MvvmLight.Platform.AndroidSupport.dll.mdb │ ├── MvvmLightLibs.5.3.0.0 │ └── lib │ │ ├── SL5 │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ ├── GalaSoft.MvvmLight.Extras.xml │ │ ├── GalaSoft.MvvmLight.dll │ │ ├── GalaSoft.MvvmLight.xml │ │ └── System.Windows.Interactivity.dll │ │ ├── monoandroid1 │ │ ├── GalaSoft.MvvmLight.Extras.XML │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ ├── GalaSoft.MvvmLight.Extras.dll.mdb │ │ ├── GalaSoft.MvvmLight.Platform.XML │ │ ├── GalaSoft.MvvmLight.Platform.dll │ │ ├── GalaSoft.MvvmLight.Platform.dll.mdb │ │ ├── GalaSoft.MvvmLight.XML │ │ ├── GalaSoft.MvvmLight.dll │ │ └── GalaSoft.MvvmLight.dll.mdb │ │ ├── net35 │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ ├── GalaSoft.MvvmLight.Extras.xml │ │ ├── GalaSoft.MvvmLight.dll │ │ ├── GalaSoft.MvvmLight.xml │ │ ├── System.Windows.Interactivity.dll │ │ └── System.Windows.Interactivity.xml │ │ ├── net40 │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ ├── GalaSoft.MvvmLight.Extras.xml │ │ ├── GalaSoft.MvvmLight.dll │ │ ├── GalaSoft.MvvmLight.xml │ │ ├── System.Windows.Interactivity.dll │ │ └── System.Windows.Interactivity.xml │ │ ├── net45 │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ ├── GalaSoft.MvvmLight.Extras.xml │ │ ├── GalaSoft.MvvmLight.Platform.dll │ │ ├── GalaSoft.MvvmLight.Platform.xml │ │ ├── GalaSoft.MvvmLight.dll │ │ ├── GalaSoft.MvvmLight.xml │ │ └── System.Windows.Interactivity.dll │ │ ├── portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10 │ │ ├── GalaSoft.MvvmLight.Extras.XML │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ ├── GalaSoft.MvvmLight.XML │ │ └── GalaSoft.MvvmLight.dll │ │ ├── windows81 │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ ├── GalaSoft.MvvmLight.Extras.xml │ │ ├── GalaSoft.MvvmLight.Platform.dll │ │ ├── GalaSoft.MvvmLight.Platform.pri │ │ ├── GalaSoft.MvvmLight.Platform.xml │ │ ├── GalaSoft.MvvmLight.dll │ │ └── GalaSoft.MvvmLight.xml │ │ ├── wp8 │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ ├── GalaSoft.MvvmLight.Extras.xml │ │ ├── GalaSoft.MvvmLight.Platform.dll │ │ ├── GalaSoft.MvvmLight.Platform.xml │ │ ├── GalaSoft.MvvmLight.dll │ │ ├── GalaSoft.MvvmLight.xml │ │ └── System.Windows.Interactivity.dll │ │ ├── wp81 │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ ├── GalaSoft.MvvmLight.Extras.xml │ │ ├── GalaSoft.MvvmLight.Platform.dll │ │ ├── GalaSoft.MvvmLight.Platform.xml │ │ ├── GalaSoft.MvvmLight.dll │ │ ├── GalaSoft.MvvmLight.xml │ │ └── System.Windows.Interactivity.dll │ │ ├── wpa81 │ │ ├── GalaSoft.MvvmLight.Extras.XML │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ ├── GalaSoft.MvvmLight.Platform.XML │ │ ├── GalaSoft.MvvmLight.Platform.dll │ │ ├── GalaSoft.MvvmLight.Platform.pri │ │ ├── GalaSoft.MvvmLight.XML │ │ └── GalaSoft.MvvmLight.dll │ │ └── xamarin.ios10 │ │ ├── GalaSoft.MvvmLight.Extras.XML │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ ├── GalaSoft.MvvmLight.Platform.XML │ │ ├── GalaSoft.MvvmLight.Platform.dll │ │ ├── GalaSoft.MvvmLight.XML │ │ └── GalaSoft.MvvmLight.dll │ ├── Xamarin.Android.Support.v4.23.0.1.1 │ └── lib │ │ └── MonoAndroid403 │ │ └── Xamarin.Android.Support.v4.dll │ ├── Xamarin.Android.Support.v4.23.1.1.0 │ └── lib │ │ └── MonoAndroid403 │ │ └── Xamarin.Android.Support.v4.dll │ ├── Xamarin.Android.Support.v7.RecyclerView.23.0.1.1 │ └── lib │ │ └── MonoAndroid403 │ │ └── Xamarin.Android.Support.v7.RecyclerView.dll │ └── Xamarin.Android.Support.v7.RecyclerView.23.1.1.0 │ └── lib │ └── MonoAndroid403 │ └── Xamarin.Android.Support.v7.RecyclerView.dll ├── Flowers ├── Components │ ├── sdwebimage-3.7.5.info │ ├── sdwebimage-3.7.5.png │ └── sdwebimage-3.7.5 │ │ ├── component │ │ ├── Details.md │ │ ├── GettingStarted.md │ │ ├── License.md │ │ ├── Manifest.xml │ │ └── icons │ │ │ ├── sdwebimage_128x128.png │ │ │ └── sdwebimage_512x512.png │ │ ├── lib │ │ ├── ios-unified │ │ │ └── SDWebImage.dll │ │ └── ios │ │ │ └── SDWebImage.dll │ │ └── samples │ │ ├── SDWebImageMTDialogSample-Classic │ │ ├── SDWebImageMTDialogSample-Classic.sln │ │ └── SDWebImageMTDialogSample │ │ │ ├── AppDelegate.cs │ │ │ ├── DetailViewController.cs │ │ │ ├── ImageLoaderElement.cs │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── placeholder.png │ │ │ └── placeholder@2x.png │ │ │ └── SDWebImageMTDialogSample-Classic.csproj │ │ ├── SDWebImageMTDialogSample │ │ ├── SDWebImageMTDialogSample.sln │ │ └── SDWebImageMTDialogSample │ │ │ ├── AppDelegate.cs │ │ │ ├── DetailViewController.cs │ │ │ ├── ImageLoaderElement.cs │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── placeholder.png │ │ │ └── placeholder@2x.png │ │ │ └── SDWebImageMTDialogSample.csproj │ │ ├── SDWebImageMapKitSample │ │ ├── SDWebImageMapKitSample.sln │ │ └── SDWebImageMapKitSample │ │ │ ├── AppDelegate.cs │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── Main.storyboard │ │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── placeholder.png │ │ │ └── placeholder@2x.png │ │ │ ├── SDWebImageMapKitSample.csproj │ │ │ ├── ViewController.cs │ │ │ └── ViewController.designer.cs │ │ ├── SDWebImageSample-Classic │ │ ├── SDWebImageSample-Classic.sln │ │ └── SDWebImageSample │ │ │ ├── AppDelegate.cs │ │ │ ├── DetailViewController.cs │ │ │ ├── DetailViewController.designer.cs │ │ │ ├── DetailViewController.xib │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── MasterViewController.cs │ │ │ ├── MasterViewController.designer.cs │ │ │ ├── MasterViewController.xib │ │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── placeholder.png │ │ │ └── placeholder@2x.png │ │ │ └── SDWebImageSample-Classic.csproj │ │ ├── SDWebImageSample │ │ ├── SDWebImageSample.sln │ │ └── SDWebImageSample │ │ │ ├── AppDelegate.cs │ │ │ ├── DetailViewController.cs │ │ │ ├── DetailViewController.designer.cs │ │ │ ├── DetailViewController.xib │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── MasterViewController.cs │ │ │ ├── MasterViewController.designer.cs │ │ │ ├── MasterViewController.xib │ │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── placeholder.png │ │ │ └── placeholder@2x.png │ │ │ └── SDWebImageSample.csproj │ │ ├── SDWebImageSimpleSample-Classic │ │ ├── SDWebImageSimpleSample-Classic.sln │ │ └── SDWebImageSimpleSample │ │ │ ├── AppDelegate.cs │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── placeholder.png │ │ │ └── placeholder@2x.png │ │ │ ├── SDWebImageSimpleSample-Classic.csproj │ │ │ ├── SampleViewController.cs │ │ │ ├── SampleViewController.designer.cs │ │ │ └── SampleViewController.xib │ │ └── SDWebImageSimpleSample │ │ ├── SDWebImageSimpleSample.sln │ │ └── SDWebImageSimpleSample │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── placeholder.png │ │ └── placeholder@2x.png │ │ ├── SDWebImageSimpleSample.csproj │ │ ├── SampleViewController.cs │ │ ├── SampleViewController.designer.cs │ │ └── SampleViewController.xib ├── Flowers.Data │ ├── Design │ │ ├── DesignFlowersService.cs │ │ └── DesignNavigationService.cs │ ├── Flowers.Data.csproj │ ├── Model │ │ ├── Comment.cs │ │ ├── Flower.cs │ │ ├── FlowersResult.cs │ │ ├── FlowersService.cs │ │ └── IFlowersService.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ViewModel │ │ ├── FlowerViewModel.cs │ │ ├── MainViewModel.cs │ │ └── ViewModelLocator.cs │ └── packages.config ├── Flowers.Droid │ ├── AddCommentActivity.cs │ ├── AddCommentActivity.ui.cs │ ├── App.cs │ ├── Assets │ │ └── AboutAssets.txt │ ├── DetailsActivity.cs │ ├── DetailsActivity.ui.cs │ ├── Flowers.Droid.csproj │ ├── GettingStarted.Xamarin │ ├── Helpers │ │ ├── ActivityBaseEx.cs │ │ └── ImageDownloader.cs │ ├── MainActivity.cs │ ├── MainActivity.ui.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.Designer.cs │ │ ├── drawable │ │ │ └── Icon.png │ │ ├── layout │ │ │ ├── AddComment.axml │ │ │ ├── CommentsListHeaderView.axml │ │ │ ├── Details.axml │ │ │ ├── FlowerTemplate.axml │ │ │ └── Main.axml │ │ └── values │ │ │ └── Strings.xml │ └── packages.config ├── Flowers.Forms.sln ├── Flowers.Forms │ ├── Flowers.Forms.Droid │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── Flowers.Forms.Droid.csproj │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.Designer.cs │ │ │ ├── drawable-hdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-xxhdpi │ │ │ │ └── icon.png │ │ │ └── drawable │ │ │ │ └── icon.png │ │ ├── app.config │ │ └── packages.config │ ├── Flowers.Forms.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ ├── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ │ ├── wp_ss_20160804_0001.png │ │ │ ├── wp_ss_20160804_0002.png │ │ │ ├── wp_ss_20160805_0001.png │ │ │ ├── wp_ss_20160805_0002.png │ │ │ ├── wp_ss_20160805_0003.png │ │ │ ├── wp_ss_20160805_0004.png │ │ │ ├── wp_ss_20160805_0005.png │ │ │ ├── wp_ss_20160805_0006.png │ │ │ ├── wp_ss_20160805_0007.png │ │ │ ├── wp_ss_20160805_0008.png │ │ │ └── wp_ss_20160805_0009.png │ │ ├── Flowers.Forms.WinPhone.csproj │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ ├── Flowers.Forms.iOS │ │ ├── AppDelegate.cs │ │ ├── Entitlements.plist │ │ ├── Flowers.Forms.iOS.csproj │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default-Portrait@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-76@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small-40@3x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon-Small@3x.png │ │ │ └── LaunchScreen.storyboard │ │ ├── app.config │ │ ├── iTunesArtwork │ │ ├── iTunesArtwork@2x │ │ └── packages.config │ └── Flowers.Forms │ │ ├── AddCommentPage.xaml │ │ ├── AddCommentPage.xaml.cs │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── DetailsPage.xaml │ │ ├── DetailsPage.xaml.cs │ │ ├── Flowers.Forms.csproj │ │ ├── Helpers │ │ ├── DialogService.cs │ │ └── NavigationService.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── ShowCommentsPage.xaml │ │ ├── ShowCommentsPage.xaml.cs │ │ └── packages.config ├── Flowers.Uwp │ ├── AddCommentPage.xaml │ ├── AddCommentPage.xaml.cs │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── Icon.png │ │ ├── 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 │ ├── DetailsPage.xaml │ ├── DetailsPage.xaml.cs │ ├── Flowers.Uwp.csproj │ ├── Helpers │ │ └── BaseSecondaryView.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── Styles │ │ └── Styles.xaml │ └── project.json ├── Flowers.Web.sln ├── Flowers.Web │ ├── App_Data │ │ ├── flowers.bak.json │ │ └── flowers.json │ ├── Design │ │ └── flowericon.png │ ├── Flowers.Web.csproj │ ├── FlowersService.ashx │ ├── FlowersService.ashx.cs │ ├── Helpers │ │ └── Log.cs │ ├── Model │ │ └── WebConstants.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── images │ │ ├── BeeOrchid.jpg │ │ ├── BermudaButtercup.jpg │ │ ├── BindWeed.jpg │ │ ├── BlueGem.jpg │ │ ├── CallaLily.jpg │ │ ├── CommonMallow.jpg │ │ ├── CratevaReligiosa.jpg │ │ ├── Lantana.jpg │ │ ├── Oleander.jpg │ │ ├── OrangeCosmos.jpg │ │ ├── Poppy.jpg │ │ ├── PrimulaFarinosa.jpg │ │ ├── ScarletPimpernel.jpg │ │ ├── SpanishOyster.jpg │ │ ├── StBernardLily.jpg │ │ ├── StorksBill.jpg │ │ └── Verbascum.jpg │ ├── index.html │ └── packages.config ├── Flowers.Wp │ ├── AddCommentPage.xaml │ ├── AddCommentPage.xaml.cs │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationIcon.png │ ├── Assets │ │ ├── ApplicationIcon.png │ │ ├── BadgeLogo.png │ │ ├── Icon.png │ │ ├── Logo.png │ │ ├── SplashScreen.png │ │ ├── SquareTile150x150.png │ │ ├── SquareTile71x71.png │ │ ├── StoreLogo.png │ │ └── WideLogo.png │ ├── DetailsPage.xaml │ ├── DetailsPage.xaml.cs │ ├── FlipCycleTileMedium.png │ ├── FlipCycleTileSmall.png │ ├── Flowers.Wp.csproj │ ├── Helpers │ │ └── PhonePageBase.cs │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AppManifest.xml │ │ ├── AssemblyInfo.cs │ │ └── WMAppManifest.xml │ ├── Resources │ │ ├── AppResources.Designer.cs │ │ └── AppResources.resx │ ├── Styles │ │ └── MiscStyles.xaml │ └── packages.config ├── Flowers.Wpf │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ └── Icon.png │ ├── Design │ │ └── DesignDialogService.cs │ ├── Flowers.Wpf.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Styles │ │ └── MainStyles.xaml │ └── packages.config ├── Flowers.iOS │ ├── AddCommentViewController.cs │ ├── AddCommentViewController.designer.cs │ ├── AppDelegate.cs │ ├── DetailsViewController.cs │ ├── DetailsViewController.designer.cs │ ├── Entitlements.plist │ ├── Flowers.iOS.csproj │ ├── GettingStarted.Xamarin │ ├── Info.plist │ ├── Main.cs │ ├── MainStoryboard.storyboard │ ├── MainViewController.cs │ ├── MainViewController.designer.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Icon-60@2x.png │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ └── flower_256_magenta.png │ ├── SeeCommentsViewController.cs │ ├── SeeCommentsViewController.designer.cs │ └── packages.config ├── Flowers.sln ├── References │ └── WPSL │ │ └── System.Windows.Interactivity.dll ├── clean-with-scc.bat └── packages │ ├── CommonServiceLocator.1.3 │ └── lib │ │ └── portable-net4+sl5+netcore45+wpa81+wp8 │ │ ├── Microsoft.Practices.ServiceLocation.XML │ │ ├── Microsoft.Practices.ServiceLocation.dll │ │ └── Microsoft.Practices.ServiceLocation.dll.mdb │ ├── Microsoft.Bcl.1.1.10 │ ├── License-Stable.rtf │ └── lib │ │ ├── Xamarin.iOS10 │ │ └── _._ │ │ ├── monoandroid │ │ └── _._ │ │ ├── monotouch │ │ └── _._ │ │ ├── net40 │ │ ├── System.IO.dll │ │ ├── System.IO.xml │ │ ├── System.Runtime.dll │ │ ├── System.Runtime.xml │ │ ├── System.Threading.Tasks.dll │ │ ├── System.Threading.Tasks.xml │ │ └── ensureRedirect.xml │ │ ├── net45 │ │ └── _._ │ │ ├── portable-net40+sl4+win8+wp71+wpa81 │ │ ├── System.IO.dll │ │ ├── System.IO.xml │ │ ├── System.Runtime.dll │ │ ├── System.Runtime.xml │ │ ├── System.Threading.Tasks.dll │ │ ├── System.Threading.Tasks.xml │ │ └── ensureRedirect.xml │ │ ├── portable-net40+sl4+win8+wp8+wpa81 │ │ ├── System.IO.dll │ │ ├── System.IO.xml │ │ ├── System.Runtime.dll │ │ ├── System.Runtime.xml │ │ ├── System.Threading.Tasks.dll │ │ ├── System.Threading.Tasks.xml │ │ └── ensureRedirect.xml │ │ ├── portable-net40+sl4+win8 │ │ ├── System.IO.dll │ │ ├── System.IO.xml │ │ ├── System.Runtime.dll │ │ ├── System.Runtime.xml │ │ ├── System.Threading.Tasks.dll │ │ ├── System.Threading.Tasks.xml │ │ └── ensureRedirect.xml │ │ ├── portable-net40+sl5+win8+wp8+wpa81 │ │ ├── System.IO.dll │ │ ├── System.IO.xml │ │ ├── System.Runtime.dll │ │ ├── System.Runtime.xml │ │ ├── System.Threading.Tasks.dll │ │ ├── System.Threading.Tasks.xml │ │ └── ensureRedirect.xml │ │ ├── portable-net40+win8+wp8+wpa81 │ │ ├── System.IO.dll │ │ ├── System.IO.xml │ │ ├── System.Runtime.dll │ │ ├── System.Runtime.xml │ │ ├── System.Threading.Tasks.dll │ │ ├── System.Threading.Tasks.xml │ │ └── ensureRedirect.xml │ │ ├── portable-net40+win8 │ │ ├── System.IO.dll │ │ ├── System.IO.xml │ │ ├── System.Runtime.dll │ │ ├── System.Runtime.xml │ │ ├── System.Threading.Tasks.dll │ │ ├── System.Threading.Tasks.xml │ │ └── ensureRedirect.xml │ │ ├── portable-net45+win8+wp8+wpa81 │ │ └── _._ │ │ ├── portable-net45+win8+wpa81 │ │ └── _._ │ │ ├── portable-net451+win81+wpa81 │ │ └── _._ │ │ ├── portable-net451+win81 │ │ └── _._ │ │ ├── portable-win81+wp81+wpa81 │ │ └── _._ │ │ ├── sl4-windowsphone71 │ │ ├── System.IO.dll │ │ ├── System.IO.xml │ │ ├── System.Runtime.dll │ │ ├── System.Runtime.xml │ │ ├── System.Threading.Tasks.dll │ │ ├── System.Threading.Tasks.xml │ │ └── ensureRedirect.xml │ │ ├── sl4 │ │ ├── System.IO.dll │ │ ├── System.IO.xml │ │ ├── System.Runtime.dll │ │ ├── System.Runtime.xml │ │ ├── System.Threading.Tasks.dll │ │ └── System.Threading.Tasks.xml │ │ ├── sl5 │ │ ├── System.IO.dll │ │ ├── System.IO.xml │ │ ├── System.Runtime.dll │ │ ├── System.Runtime.xml │ │ ├── System.Threading.Tasks.dll │ │ └── System.Threading.Tasks.xml │ │ ├── win8 │ │ └── _._ │ │ ├── wp8 │ │ └── _._ │ │ └── wpa81 │ │ └── _._ │ ├── Microsoft.Bcl.Build.1.0.21 │ ├── License-Stable.rtf │ └── build │ │ ├── Microsoft.Bcl.Build.Tasks.dll │ │ └── Microsoft.Bcl.Build.targets │ ├── Microsoft.Net.Http.2.2.29 │ ├── License-Stable.rtf │ └── lib │ │ ├── Xamarin.iOS10 │ │ ├── System.Net.Http.Extensions.XML │ │ ├── System.Net.Http.Extensions.dll │ │ ├── System.Net.Http.Primitives.dll │ │ └── System.Net.Http.Primitives.xml │ │ ├── monoandroid │ │ ├── System.Net.Http.Extensions.XML │ │ ├── System.Net.Http.Extensions.dll │ │ ├── System.Net.Http.Primitives.dll │ │ └── System.Net.Http.Primitives.xml │ │ ├── monotouch │ │ ├── System.Net.Http.Extensions.XML │ │ ├── System.Net.Http.Extensions.dll │ │ ├── System.Net.Http.Primitives.dll │ │ └── System.Net.Http.Primitives.xml │ │ ├── net40 │ │ ├── System.Net.Http.Extensions.XML │ │ ├── System.Net.Http.Extensions.dll │ │ ├── System.Net.Http.Primitives.dll │ │ ├── System.Net.Http.Primitives.xml │ │ ├── System.Net.Http.WebRequest.dll │ │ ├── System.Net.Http.WebRequest.xml │ │ ├── System.Net.Http.dll │ │ ├── System.Net.Http.xml │ │ └── ensureRedirect.xml │ │ ├── net45 │ │ ├── System.Net.Http.Extensions.XML │ │ ├── System.Net.Http.Extensions.dll │ │ ├── System.Net.Http.Primitives.dll │ │ ├── System.Net.Http.Primitives.xml │ │ └── ensureRedirect.xml │ │ ├── portable-net40+sl4+win8+wp71+wpa81 │ │ ├── System.Net.Http.Extensions.XML │ │ ├── System.Net.Http.Extensions.dll │ │ ├── System.Net.Http.Primitives.XML │ │ ├── System.Net.Http.Primitives.dll │ │ ├── System.Net.Http.dll │ │ ├── System.Net.Http.xml │ │ └── ensureRedirect.xml │ │ ├── portable-net45+win8+wpa81 │ │ ├── System.Net.Http.Extensions.XML │ │ ├── System.Net.Http.Extensions.dll │ │ ├── System.Net.Http.Primitives.dll │ │ ├── System.Net.Http.Primitives.xml │ │ └── ensureRedirect.xml │ │ ├── portable-net45+win8 │ │ ├── System.Net.Http.Extensions.XML │ │ ├── System.Net.Http.Extensions.dll │ │ ├── System.Net.Http.Primitives.dll │ │ ├── System.Net.Http.Primitives.xml │ │ └── ensureRedirect.xml │ │ ├── sl4-windowsphone71 │ │ ├── System.Net.Http.Extensions.XML │ │ ├── System.Net.Http.Extensions.dll │ │ ├── System.Net.Http.Primitives.XML │ │ ├── System.Net.Http.Primitives.dll │ │ ├── System.Net.Http.dll │ │ └── System.Net.Http.xml │ │ ├── win8 │ │ ├── System.Net.Http.Extensions.XML │ │ ├── System.Net.Http.Extensions.dll │ │ ├── System.Net.Http.Primitives.dll │ │ └── System.Net.Http.Primitives.xml │ │ └── wpa81 │ │ ├── System.Net.Http.Extensions.XML │ │ ├── System.Net.Http.Extensions.dll │ │ ├── System.Net.Http.Primitives.dll │ │ └── System.Net.Http.Primitives.xml │ ├── MvvmLightAndroidSupport.5.3.0.0 │ └── lib │ │ └── monoandroid1 │ │ ├── GalaSoft.MvvmLight.Platform.AndroidSupport.XML │ │ ├── GalaSoft.MvvmLight.Platform.AndroidSupport.dll │ │ └── GalaSoft.MvvmLight.Platform.AndroidSupport.dll.mdb │ ├── MvvmLightLibs.5.3.0.0 │ └── lib │ │ ├── SL5 │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ ├── GalaSoft.MvvmLight.Extras.xml │ │ ├── GalaSoft.MvvmLight.dll │ │ ├── GalaSoft.MvvmLight.xml │ │ └── System.Windows.Interactivity.dll │ │ ├── monoandroid1 │ │ ├── GalaSoft.MvvmLight.Extras.XML │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ ├── GalaSoft.MvvmLight.Extras.dll.mdb │ │ ├── GalaSoft.MvvmLight.Platform.XML │ │ ├── GalaSoft.MvvmLight.Platform.dll │ │ ├── GalaSoft.MvvmLight.Platform.dll.mdb │ │ ├── GalaSoft.MvvmLight.XML │ │ ├── GalaSoft.MvvmLight.dll │ │ └── GalaSoft.MvvmLight.dll.mdb │ │ ├── net35 │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ ├── GalaSoft.MvvmLight.Extras.xml │ │ ├── GalaSoft.MvvmLight.dll │ │ ├── GalaSoft.MvvmLight.xml │ │ ├── System.Windows.Interactivity.dll │ │ └── System.Windows.Interactivity.xml │ │ ├── net40 │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ ├── GalaSoft.MvvmLight.Extras.xml │ │ ├── GalaSoft.MvvmLight.dll │ │ ├── GalaSoft.MvvmLight.xml │ │ ├── System.Windows.Interactivity.dll │ │ └── System.Windows.Interactivity.xml │ │ ├── net45 │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ ├── GalaSoft.MvvmLight.Extras.xml │ │ ├── GalaSoft.MvvmLight.Platform.dll │ │ ├── GalaSoft.MvvmLight.Platform.xml │ │ ├── GalaSoft.MvvmLight.dll │ │ ├── GalaSoft.MvvmLight.xml │ │ └── System.Windows.Interactivity.dll │ │ ├── portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10 │ │ ├── GalaSoft.MvvmLight.Extras.XML │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ ├── GalaSoft.MvvmLight.XML │ │ └── GalaSoft.MvvmLight.dll │ │ ├── windows81 │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ ├── GalaSoft.MvvmLight.Extras.xml │ │ ├── GalaSoft.MvvmLight.Platform.dll │ │ ├── GalaSoft.MvvmLight.Platform.pri │ │ ├── GalaSoft.MvvmLight.Platform.xml │ │ ├── GalaSoft.MvvmLight.dll │ │ └── GalaSoft.MvvmLight.xml │ │ ├── wp8 │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ ├── GalaSoft.MvvmLight.Extras.xml │ │ ├── GalaSoft.MvvmLight.Platform.dll │ │ ├── GalaSoft.MvvmLight.Platform.xml │ │ ├── GalaSoft.MvvmLight.dll │ │ ├── GalaSoft.MvvmLight.xml │ │ └── System.Windows.Interactivity.dll │ │ ├── wp81 │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ ├── GalaSoft.MvvmLight.Extras.xml │ │ ├── GalaSoft.MvvmLight.Platform.dll │ │ ├── GalaSoft.MvvmLight.Platform.xml │ │ ├── GalaSoft.MvvmLight.dll │ │ ├── GalaSoft.MvvmLight.xml │ │ └── System.Windows.Interactivity.dll │ │ ├── wpa81 │ │ ├── GalaSoft.MvvmLight.Extras.XML │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ ├── GalaSoft.MvvmLight.Platform.XML │ │ ├── GalaSoft.MvvmLight.Platform.dll │ │ ├── GalaSoft.MvvmLight.Platform.pri │ │ ├── GalaSoft.MvvmLight.XML │ │ └── GalaSoft.MvvmLight.dll │ │ └── xamarin.ios10 │ │ ├── GalaSoft.MvvmLight.Extras.XML │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ ├── GalaSoft.MvvmLight.Platform.XML │ │ ├── GalaSoft.MvvmLight.Platform.dll │ │ ├── GalaSoft.MvvmLight.XML │ │ └── GalaSoft.MvvmLight.dll │ ├── Newtonsoft.Json.6.0.8 │ ├── lib │ │ ├── net20 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net35 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net40 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net45 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── netcore45 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── portable-net40+sl5+wp80+win8+wpa81 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ └── portable-net45+wp80+win8+wpa81+aspnetcore50 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ └── tools │ │ └── install.ps1 │ ├── Newtonsoft.Json.9.0.1 │ ├── lib │ │ ├── net20 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net35 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net40 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net45 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard1.0 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── portable-net40+sl5+wp80+win8+wpa81 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ └── portable-net45+wp80+win8+wpa81 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ └── tools │ │ └── install.ps1 │ ├── WPtoolkit.4.2013.08.16 │ ├── content │ │ ├── README_FIRST.txt │ │ └── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ └── lib │ │ ├── sl3-wp │ │ └── Microsoft.Phone.Controls.Toolkit.dll │ │ ├── sl4-windowsphone71 │ │ ├── Microsoft.Phone.Controls.Toolkit.dll │ │ ├── cs-CZ │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── da-DK │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── de-DE │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── el-GR │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── en-GB │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── es-ES │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── fi-FI │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── fr-FR │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── hu-HU │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── id-ID │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── it-IT │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── ja-JP │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── ko-KR │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── ms-MY │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── nb-NO │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── nl-NL │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── pl-PL │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── pt-BR │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── ru-RU │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── sv-SE │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── zh-CN │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ └── zh-TW │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ └── wp8 │ │ ├── Microsoft.Phone.Controls.Toolkit.dll │ │ ├── ar-SA │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── az-Latn-AZ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── be-BY │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── bg-BG │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── ca-ES │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── cs-CZ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── da-DK │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── de-DE │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── el-GR │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── en-GB │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── es-ES │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── es-MX │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── et-EE │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── fa-IR │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── fi-FI │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── fil-PH │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── fr-CA │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── fr-FR │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── he-IL │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── hi-IN │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── hr-HR │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── hu-HU │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── id-ID │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── it-IT │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── ja-JP │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── kk-KZ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── ko-KR │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── lt-LT │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── lv-LV │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── mk-MK │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── ms-MY │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── nb-NO │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── nl-NL │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── pl-PL │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── pt-BR │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── pt-PT │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── ro-RO │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── ru-RU │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── sk-SK │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── sl-SI │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── sq-AL │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── sr-Latn-CS │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── sv-SE │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── th-TH │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── tr-TR │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── uk-UA │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── uz-Latn-UZ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── vi-VN │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── zh-CN │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ └── zh-TW │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── Xamarin.Android.Support.Design.23.0.1.3 │ └── lib │ │ └── MonoAndroid403 │ │ └── Xamarin.Android.Support.Design.dll │ ├── Xamarin.Android.Support.v4.21.0.3.0 │ └── lib │ │ └── MonoAndroid10 │ │ └── Xamarin.Android.Support.v4.dll │ ├── Xamarin.Android.Support.v4.23.0.1.3 │ └── lib │ │ └── MonoAndroid403 │ │ └── Xamarin.Android.Support.v4.dll │ ├── Xamarin.Android.Support.v4.23.4.0.1 │ └── lib │ │ └── MonoAndroid403 │ │ └── Xamarin.Android.Support.v4.dll │ ├── Xamarin.Android.Support.v7.AppCompat.23.0.1.3 │ └── lib │ │ └── MonoAndroid403 │ │ └── Xamarin.Android.Support.v7.AppCompat.dll │ ├── Xamarin.Android.Support.v7.CardView.23.0.1.3 │ └── lib │ │ └── MonoAndroid403 │ │ └── Xamarin.Android.Support.v7.CardView.dll │ ├── Xamarin.Android.Support.v7.MediaRouter.23.0.1.3 │ └── lib │ │ └── MonoAndroid403 │ │ └── Xamarin.Android.Support.v7.MediaRouter.dll │ ├── Xamarin.Android.Support.v7.RecyclerView.23.4.0.1 │ └── lib │ │ └── MonoAndroid403 │ │ └── Xamarin.Android.Support.v7.RecyclerView.dll │ ├── Xamarin.Forms.1.3.4.6332 │ ├── build │ │ └── portable-win+net45+wp80+MonoAndroid10+MonoTouch10+Xamarin.iOS10 │ │ │ ├── Xamarin.Forms.Build.Tasks.dll │ │ │ └── Xamarin.Forms.targets │ └── lib │ │ ├── MonoAndroid10 │ │ ├── FormsViewGroup.dll │ │ ├── Xamarin.Forms.Core.dll │ │ ├── Xamarin.Forms.Core.xml │ │ ├── Xamarin.Forms.Platform.Android.dll │ │ ├── Xamarin.Forms.Xaml.dll │ │ └── Xamarin.Forms.Xaml.xml │ │ ├── MonoTouch10 │ │ ├── Xamarin.Forms.Core.dll │ │ ├── Xamarin.Forms.Core.xml │ │ ├── Xamarin.Forms.Platform.iOS.Classic.dll │ │ ├── Xamarin.Forms.Xaml.dll │ │ └── Xamarin.Forms.Xaml.xml │ │ ├── WP80 │ │ ├── Xamarin.Forms.Core.dll │ │ ├── Xamarin.Forms.Core.xml │ │ ├── Xamarin.Forms.Platform.WP8.dll │ │ ├── Xamarin.Forms.Xaml.dll │ │ └── Xamarin.Forms.Xaml.xml │ │ ├── Xamarin.iOS10 │ │ ├── Xamarin.Forms.Core.dll │ │ ├── Xamarin.Forms.Core.xml │ │ ├── Xamarin.Forms.Platform.iOS.dll │ │ ├── Xamarin.Forms.Xaml.dll │ │ └── Xamarin.Forms.Xaml.xml │ │ └── portable-win+net45+wp80+MonoAndroid10+MonoTouch10+Xamarin.iOS10 │ │ ├── Xamarin.Forms.Core.dll │ │ ├── Xamarin.Forms.Core.xml │ │ ├── Xamarin.Forms.Xaml.dll │ │ └── Xamarin.Forms.Xaml.xml │ ├── Xamarin.Forms.2.0.0.6482 │ ├── build │ │ └── portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10 │ │ │ ├── ICSharpCode.Decompiler.dll │ │ │ ├── ICSharpCode.NRefactory.CSharp.dll │ │ │ ├── ICSharpCode.NRefactory.Cecil.dll │ │ │ ├── ICSharpCode.NRefactory.Xml.dll │ │ │ ├── ICSharpCode.NRefactory.dll │ │ │ ├── Mono.Cecil.Mdb.dll │ │ │ ├── Mono.Cecil.Pdb.dll │ │ │ ├── Mono.Cecil.Rocks.dll │ │ │ ├── Mono.Cecil.dll │ │ │ ├── Xamarin.Forms.Build.Tasks.dll │ │ │ ├── Xamarin.Forms.Core.dll │ │ │ ├── Xamarin.Forms.Xaml.dll │ │ │ └── Xamarin.Forms.targets │ ├── lib │ │ ├── MonoAndroid10 │ │ │ ├── Design │ │ │ │ ├── Xamarin.Forms.Core.Design.dll │ │ │ │ └── Xamarin.Forms.Xaml.Design.dll │ │ │ ├── FormsViewGroup.dll │ │ │ ├── Xamarin.Forms.Core.dll │ │ │ ├── Xamarin.Forms.Core.xml │ │ │ ├── Xamarin.Forms.Platform.Android.dll │ │ │ ├── Xamarin.Forms.Platform.dll │ │ │ ├── Xamarin.Forms.Xaml.dll │ │ │ └── Xamarin.Forms.Xaml.xml │ │ ├── MonoTouch10 │ │ │ ├── Design │ │ │ │ ├── Xamarin.Forms.Core.Design.dll │ │ │ │ └── Xamarin.Forms.Xaml.Design.dll │ │ │ ├── Xamarin.Forms.Core.dll │ │ │ ├── Xamarin.Forms.Core.xml │ │ │ ├── Xamarin.Forms.Platform.dll │ │ │ ├── Xamarin.Forms.Platform.iOS.Classic.dll │ │ │ ├── Xamarin.Forms.Xaml.dll │ │ │ └── Xamarin.Forms.Xaml.xml │ │ ├── WP80 │ │ │ ├── Design │ │ │ │ ├── Xamarin.Forms.Core.Design.dll │ │ │ │ └── Xamarin.Forms.Xaml.Design.dll │ │ │ ├── Xamarin.Forms.Core.dll │ │ │ ├── Xamarin.Forms.Core.xml │ │ │ ├── Xamarin.Forms.Platform.WP8.dll │ │ │ ├── Xamarin.Forms.Platform.dll │ │ │ ├── Xamarin.Forms.Xaml.dll │ │ │ └── Xamarin.Forms.Xaml.xml │ │ ├── Xamarin.iOS10 │ │ │ ├── Design │ │ │ │ ├── Xamarin.Forms.Core.Design.dll │ │ │ │ └── Xamarin.Forms.Xaml.Design.dll │ │ │ ├── Xamarin.Forms.Core.dll │ │ │ ├── Xamarin.Forms.Core.xml │ │ │ ├── Xamarin.Forms.Platform.dll │ │ │ ├── Xamarin.Forms.Platform.iOS.dll │ │ │ ├── Xamarin.Forms.Xaml.dll │ │ │ └── Xamarin.Forms.Xaml.xml │ │ ├── portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10 │ │ │ ├── Design │ │ │ │ ├── Xamarin.Forms.Core.Design.dll │ │ │ │ └── Xamarin.Forms.Xaml.Design.dll │ │ │ ├── Xamarin.Forms.Core.dll │ │ │ ├── Xamarin.Forms.Core.xml │ │ │ ├── Xamarin.Forms.Platform.dll │ │ │ ├── Xamarin.Forms.Xaml.dll │ │ │ └── Xamarin.Forms.Xaml.xml │ │ ├── uap10.0 │ │ │ ├── Xamarin.Forms.Core.dll │ │ │ ├── Xamarin.Forms.Core.xml │ │ │ ├── Xamarin.Forms.Platform.UAP.dll │ │ │ ├── Xamarin.Forms.Platform.UAP.pri │ │ │ ├── Xamarin.Forms.Platform.UAP │ │ │ │ ├── FormsTextBox.xbf │ │ │ │ ├── PageControl.xbf │ │ │ │ ├── Properties │ │ │ │ │ └── Xamarin.Forms.Platform.UAP.rd.xml │ │ │ │ ├── Resources.xbf │ │ │ │ └── Xamarin.Forms.Platform.UAP.xr.xml │ │ │ ├── Xamarin.Forms.Platform.dll │ │ │ ├── Xamarin.Forms.Xaml.dll │ │ │ └── Xamarin.Forms.Xaml.xml │ │ ├── win81 │ │ │ ├── Design │ │ │ │ ├── Xamarin.Forms.Core.Design.dll │ │ │ │ └── Xamarin.Forms.Xaml.Design.dll │ │ │ ├── Xamarin.Forms.Core.dll │ │ │ ├── Xamarin.Forms.Core.xml │ │ │ ├── Xamarin.Forms.Platform.WinRT.Tablet.dll │ │ │ ├── Xamarin.Forms.Platform.WinRT.Tablet.pri │ │ │ ├── Xamarin.Forms.Platform.WinRT.Tablet │ │ │ │ ├── Resources.xbf │ │ │ │ ├── TabletResources.xbf │ │ │ │ └── Xamarin.Forms.Platform.WinRT.Tablet.xr.xml │ │ │ ├── Xamarin.Forms.Platform.WinRT.dll │ │ │ ├── Xamarin.Forms.Platform.WinRT.pri │ │ │ ├── Xamarin.Forms.Platform.WinRT │ │ │ │ ├── FormsTextBox.xbf │ │ │ │ ├── PageControl.xbf │ │ │ │ ├── StepperControl.xbf │ │ │ │ └── Xamarin.Forms.Platform.WinRT.xr.xml │ │ │ ├── Xamarin.Forms.Platform.dll │ │ │ ├── Xamarin.Forms.Xaml.dll │ │ │ └── Xamarin.Forms.Xaml.xml │ │ └── wpa81 │ │ │ ├── Design │ │ │ ├── Xamarin.Forms.Core.Design.dll │ │ │ └── Xamarin.Forms.Xaml.Design.dll │ │ │ ├── Xamarin.Forms.Core.dll │ │ │ ├── Xamarin.Forms.Core.xml │ │ │ ├── Xamarin.Forms.Platform.WinRT.Phone.dll │ │ │ ├── Xamarin.Forms.Platform.WinRT.Phone.pri │ │ │ ├── Xamarin.Forms.Platform.WinRT.Phone │ │ │ ├── PhoneResources.xbf │ │ │ ├── Resources.xbf │ │ │ ├── SearchBox.xbf │ │ │ └── Xamarin.Forms.Platform.WinRT.Phone.xr.xml │ │ │ ├── Xamarin.Forms.Platform.WinRT.dll │ │ │ ├── Xamarin.Forms.Platform.WinRT.pri │ │ │ ├── Xamarin.Forms.Platform.WinRT │ │ │ ├── FormsTextBox.xbf │ │ │ ├── PageControl.xbf │ │ │ ├── StepperControl.xbf │ │ │ └── Xamarin.Forms.Platform.WinRT.xr.xml │ │ │ ├── Xamarin.Forms.Platform.dll │ │ │ ├── Xamarin.Forms.Xaml.dll │ │ │ └── Xamarin.Forms.Xaml.xml │ └── tools │ │ ├── Xamarin.Forms.Core.Design.dll │ │ ├── Xamarin.Forms.Xaml.Design.dll │ │ └── init.ps1 │ └── Xamarin.SDWebImage.3.7.5 │ └── lib │ ├── MonoTouch │ └── SDWebImage.dll │ └── Xamarin.iOS │ └── SDWebImage.dll ├── LICENSE ├── README.md ├── Snippets.vssettings └── clean.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/.gitignore -------------------------------------------------------------------------------- /Binding Sample/ObservableListApple.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/ObservableListApple.sln -------------------------------------------------------------------------------- /Binding Sample/ObservableListApple/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/ObservableListApple/AppDelegate.cs -------------------------------------------------------------------------------- /Binding Sample/ObservableListApple/CollectionViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/ObservableListApple/CollectionViewController.cs -------------------------------------------------------------------------------- /Binding Sample/ObservableListApple/CollectionViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/ObservableListApple/CollectionViewController.designer.cs -------------------------------------------------------------------------------- /Binding Sample/ObservableListApple/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/ObservableListApple/Entitlements.plist -------------------------------------------------------------------------------- /Binding Sample/ObservableListApple/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/ObservableListApple/Info.plist -------------------------------------------------------------------------------- /Binding Sample/ObservableListApple/Layout/CircleLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/ObservableListApple/Layout/CircleLayout.cs -------------------------------------------------------------------------------- /Binding Sample/ObservableListApple/Layout/GridLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/ObservableListApple/Layout/GridLayout.cs -------------------------------------------------------------------------------- /Binding Sample/ObservableListApple/Layout/HeaderForCollectionView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/ObservableListApple/Layout/HeaderForCollectionView.cs -------------------------------------------------------------------------------- /Binding Sample/ObservableListApple/Layout/HeaderForTableView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/ObservableListApple/Layout/HeaderForTableView.cs -------------------------------------------------------------------------------- /Binding Sample/ObservableListApple/Layout/TableViewSourceEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/ObservableListApple/Layout/TableViewSourceEx.cs -------------------------------------------------------------------------------- /Binding Sample/ObservableListApple/Layout/TestCollectionViewCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/ObservableListApple/Layout/TestCollectionViewCell.cs -------------------------------------------------------------------------------- /Binding Sample/ObservableListApple/Layout/TestTableViewCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/ObservableListApple/Layout/TestTableViewCell.cs -------------------------------------------------------------------------------- /Binding Sample/ObservableListApple/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/ObservableListApple/Main.cs -------------------------------------------------------------------------------- /Binding Sample/ObservableListApple/MainViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/ObservableListApple/MainViewController.cs -------------------------------------------------------------------------------- /Binding Sample/ObservableListApple/MainViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/ObservableListApple/MainViewController.designer.cs -------------------------------------------------------------------------------- /Binding Sample/ObservableListApple/Main_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/ObservableListApple/Main_iPhone.storyboard -------------------------------------------------------------------------------- /Binding Sample/ObservableListApple/Model/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/ObservableListApple/Model/Item.cs -------------------------------------------------------------------------------- /Binding Sample/ObservableListApple/ObservableListApple.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/ObservableListApple/ObservableListApple.csproj -------------------------------------------------------------------------------- /Binding Sample/ObservableListApple/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/ObservableListApple/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Binding Sample/ObservableListApple/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/ObservableListApple/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Binding Sample/ObservableListApple/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/ObservableListApple/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Binding Sample/ObservableListApple/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/ObservableListApple/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Binding Sample/ObservableListApple/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/ObservableListApple/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Binding Sample/ObservableListApple/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/ObservableListApple/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /Binding Sample/ObservableListApple/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/ObservableListApple/Resources/Icon.png -------------------------------------------------------------------------------- /Binding Sample/ObservableListApple/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/ObservableListApple/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Binding Sample/ObservableListApple/UITableViewTableSourceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/ObservableListApple/UITableViewTableSourceController.cs -------------------------------------------------------------------------------- /Binding Sample/ObservableListApple/UITableViewTableSourceController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/ObservableListApple/UITableViewTableSourceController.designer.cs -------------------------------------------------------------------------------- /Binding Sample/ObservableListApple/ViewModel/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/ObservableListApple/ViewModel/MainViewModel.cs -------------------------------------------------------------------------------- /Binding Sample/ObservableListApple/ViewModel/ViewModelLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/ObservableListApple/ViewModel/ViewModelLocator.cs -------------------------------------------------------------------------------- /Binding Sample/ObservableListApple/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/ObservableListApple/packages.config -------------------------------------------------------------------------------- /Binding Sample/References/Android/GalaSoft.MvvmLight.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/References/Android/GalaSoft.MvvmLight.Platform.dll -------------------------------------------------------------------------------- /Binding Sample/References/Android/GalaSoft.MvvmLight.Platform.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/References/Android/GalaSoft.MvvmLight.Platform.dll.mdb -------------------------------------------------------------------------------- /Binding Sample/References/Android/GalaSoft.MvvmLight.Platform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/References/Android/GalaSoft.MvvmLight.Platform.xml -------------------------------------------------------------------------------- /Binding Sample/References/PCL/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/References/PCL/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /Binding Sample/References/PCL/GalaSoft.MvvmLight.Extras.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/References/PCL/GalaSoft.MvvmLight.Extras.dll.mdb -------------------------------------------------------------------------------- /Binding Sample/References/PCL/GalaSoft.MvvmLight.Extras.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/References/PCL/GalaSoft.MvvmLight.Extras.xml -------------------------------------------------------------------------------- /Binding Sample/References/PCL/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/References/PCL/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Binding Sample/References/PCL/GalaSoft.MvvmLight.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/References/PCL/GalaSoft.MvvmLight.dll.mdb -------------------------------------------------------------------------------- /Binding Sample/References/PCL/GalaSoft.MvvmLight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/References/PCL/GalaSoft.MvvmLight.xml -------------------------------------------------------------------------------- /Binding Sample/References/PCL/Microsoft.Practices.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/References/PCL/Microsoft.Practices.ServiceLocation.dll -------------------------------------------------------------------------------- /Binding Sample/References/PCL/Microsoft.Practices.ServiceLocation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/References/PCL/Microsoft.Practices.ServiceLocation.xml -------------------------------------------------------------------------------- /Binding Sample/References/Win10/GalaSoft.MvvmLight.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/References/Win10/GalaSoft.MvvmLight.Platform.dll -------------------------------------------------------------------------------- /Binding Sample/References/Win10/GalaSoft.MvvmLight.Platform.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/References/Win10/GalaSoft.MvvmLight.Platform.pri -------------------------------------------------------------------------------- /Binding Sample/References/Win10/GalaSoft.MvvmLight.Platform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/References/Win10/GalaSoft.MvvmLight.Platform.xml -------------------------------------------------------------------------------- /Binding Sample/References/iOS/GalaSoft.MvvmLight.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/References/iOS/GalaSoft.MvvmLight.Platform.dll -------------------------------------------------------------------------------- /Binding Sample/References/iOS/GalaSoft.MvvmLight.Platform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/References/iOS/GalaSoft.MvvmLight.Platform.xml -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample.sln -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Data/Model/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Data/Model/Item.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Data/Model/MainModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Data/Model/MainModel.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Data/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Data/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Data/ViewModel/BindingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Data/ViewModel/BindingsViewModel.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Data/ViewModel/CommandsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Data/ViewModel/CommandsViewModel.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Data/ViewModel/ListsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Data/ViewModel/ListsViewModel.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Data/ViewModel/ViewModelLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Data/ViewModel/ViewModelLocator.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Data/XamBindingSample.Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Data/XamBindingSample.Data.csproj -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Data/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Data/packages.config -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Droid/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Droid/App.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Droid/BindingsActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Droid/BindingsActivity.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Droid/BindingsActivity.ui.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Droid/BindingsActivity.ui.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Droid/CommandsActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Droid/CommandsActivity.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Droid/CommandsActivity.ui.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Droid/CommandsActivity.ui.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Droid/Helpers/IocSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Droid/Helpers/IocSetup.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Droid/ListsActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Droid/ListsActivity.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Droid/ListsActivity.ui.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Droid/ListsActivity.ui.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Droid/MainActivity.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Droid/MainActivity.ui.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Droid/MainActivity.ui.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Droid/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Droid/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Droid/Resources/drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Droid/Resources/drawable/Icon.png -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Droid/Resources/layout/Bindings.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Droid/Resources/layout/Bindings.axml -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Droid/Resources/layout/Commands.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Droid/Resources/layout/Commands.axml -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Droid/Resources/layout/Lists.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Droid/Resources/layout/Lists.axml -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Droid/Resources/layout/Main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Droid/Resources/layout/Main.axml -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Droid/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Droid/Resources/values/Strings.xml -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Droid/Resources/values/Styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Droid/Resources/values/Styles.xml -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Droid/XamBindingSample.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Droid/XamBindingSample.Droid.csproj -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Droid/packages.config -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Win10/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Win10/App.xaml -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Win10/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Win10/App.xaml.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Win10/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Win10/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Win10/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Win10/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Win10/BindingPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Win10/BindingPage.xaml -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Win10/BindingPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Win10/BindingPage.xaml.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Win10/CommandsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Win10/CommandsPage.xaml -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Win10/CommandsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Win10/CommandsPage.xaml.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Win10/Helpers/BoolToStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Win10/Helpers/BoolToStringConverter.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Win10/Helpers/IocSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Win10/Helpers/IocSetup.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Win10/ListsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Win10/ListsPage.xaml -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Win10/ListsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Win10/ListsPage.xaml.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Win10/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Win10/MainPage.xaml -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Win10/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Win10/MainPage.xaml.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Win10/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Win10/Package.appxmanifest -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Win10/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Win10/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Win10/XamBindingSample.Win10.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Win10/XamBindingSample.Win10.csproj -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.Win10/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.Win10/project.json -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.iOS/Bindings2ViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.iOS/Bindings2ViewController.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.iOS/Bindings2ViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.iOS/Bindings2ViewController.designer.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.iOS/Bindings3ViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.iOS/Bindings3ViewController.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.iOS/Bindings3ViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.iOS/Bindings3ViewController.designer.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.iOS/Bindings4ViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.iOS/Bindings4ViewController.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.iOS/Bindings4ViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.iOS/Bindings4ViewController.designer.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.iOS/Bindings5ViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.iOS/Bindings5ViewController.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.iOS/Bindings5ViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.iOS/Bindings5ViewController.designer.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.iOS/Bindings6ViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.iOS/Bindings6ViewController.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.iOS/Bindings7ViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.iOS/Bindings7ViewController.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.iOS/Bindings8ViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.iOS/Bindings8ViewController.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.iOS/BindingsViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.iOS/BindingsViewController.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.iOS/Commands1ViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.iOS/Commands1ViewController.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.iOS/Commands2ViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.iOS/Commands2ViewController.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.iOS/Commands3ViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.iOS/Commands3ViewController.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.iOS/Info.plist -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.iOS/Main.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.iOS/MainViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.iOS/MainViewController.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.iOS/MainViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.iOS/MainViewController.designer.cs -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.iOS/Main_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.iOS/Main_iPhone.storyboard -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.iOS/XamBindingSample.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.iOS/XamBindingSample.iOS.csproj -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.iOS/XamBindingSample.iOS.csproj.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.iOS/XamBindingSample.iOS.csproj.bak -------------------------------------------------------------------------------- /Binding Sample/XamBindingSample/XamBindingSample.iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/XamBindingSample/XamBindingSample.iOS/packages.config -------------------------------------------------------------------------------- /Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/SL5/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/SL5/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/SL5/GalaSoft.MvvmLight.Extras.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/SL5/GalaSoft.MvvmLight.Extras.xml -------------------------------------------------------------------------------- /Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/SL5/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/SL5/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/SL5/GalaSoft.MvvmLight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/SL5/GalaSoft.MvvmLight.xml -------------------------------------------------------------------------------- /Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/monoandroid1/GalaSoft.MvvmLight.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/monoandroid1/GalaSoft.MvvmLight.XML -------------------------------------------------------------------------------- /Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/monoandroid1/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/monoandroid1/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/net35/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/net35/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/net35/GalaSoft.MvvmLight.Extras.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/net35/GalaSoft.MvvmLight.Extras.xml -------------------------------------------------------------------------------- /Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/net35/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/net35/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/net35/GalaSoft.MvvmLight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/net35/GalaSoft.MvvmLight.xml -------------------------------------------------------------------------------- /Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/net40/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/net40/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/net40/GalaSoft.MvvmLight.Extras.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/net40/GalaSoft.MvvmLight.Extras.xml -------------------------------------------------------------------------------- /Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/net40/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/net40/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/net40/GalaSoft.MvvmLight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/net40/GalaSoft.MvvmLight.xml -------------------------------------------------------------------------------- /Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/net45/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/net45/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/net45/GalaSoft.MvvmLight.Extras.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/net45/GalaSoft.MvvmLight.Extras.xml -------------------------------------------------------------------------------- /Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/net45/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/net45/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/net45/GalaSoft.MvvmLight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/net45/GalaSoft.MvvmLight.xml -------------------------------------------------------------------------------- /Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/windows81/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/windows81/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/windows81/GalaSoft.MvvmLight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/windows81/GalaSoft.MvvmLight.xml -------------------------------------------------------------------------------- /Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/wp8/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/wp8/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/wp8/GalaSoft.MvvmLight.Extras.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/wp8/GalaSoft.MvvmLight.Extras.xml -------------------------------------------------------------------------------- /Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/wp8/GalaSoft.MvvmLight.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/wp8/GalaSoft.MvvmLight.Platform.dll -------------------------------------------------------------------------------- /Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/wp8/GalaSoft.MvvmLight.Platform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/wp8/GalaSoft.MvvmLight.Platform.xml -------------------------------------------------------------------------------- /Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/wp8/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/wp8/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/wp8/GalaSoft.MvvmLight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/wp8/GalaSoft.MvvmLight.xml -------------------------------------------------------------------------------- /Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/wp81/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/wp81/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/wp81/GalaSoft.MvvmLight.Extras.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/wp81/GalaSoft.MvvmLight.Extras.xml -------------------------------------------------------------------------------- /Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/wp81/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/wp81/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/wp81/GalaSoft.MvvmLight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/wp81/GalaSoft.MvvmLight.xml -------------------------------------------------------------------------------- /Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/wpa81/GalaSoft.MvvmLight.Extras.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/wpa81/GalaSoft.MvvmLight.Extras.XML -------------------------------------------------------------------------------- /Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/wpa81/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/wpa81/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/wpa81/GalaSoft.MvvmLight.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/wpa81/GalaSoft.MvvmLight.XML -------------------------------------------------------------------------------- /Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/wpa81/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Binding Sample/packages/MvvmLightLibs.5.3.0.0/lib/wpa81/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Flowers/Components/sdwebimage-3.7.5.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Components/sdwebimage-3.7.5.info -------------------------------------------------------------------------------- /Flowers/Components/sdwebimage-3.7.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Components/sdwebimage-3.7.5.png -------------------------------------------------------------------------------- /Flowers/Components/sdwebimage-3.7.5/component/Details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Components/sdwebimage-3.7.5/component/Details.md -------------------------------------------------------------------------------- /Flowers/Components/sdwebimage-3.7.5/component/GettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Components/sdwebimage-3.7.5/component/GettingStarted.md -------------------------------------------------------------------------------- /Flowers/Components/sdwebimage-3.7.5/component/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Components/sdwebimage-3.7.5/component/License.md -------------------------------------------------------------------------------- /Flowers/Components/sdwebimage-3.7.5/component/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Components/sdwebimage-3.7.5/component/Manifest.xml -------------------------------------------------------------------------------- /Flowers/Components/sdwebimage-3.7.5/component/icons/sdwebimage_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Components/sdwebimage-3.7.5/component/icons/sdwebimage_128x128.png -------------------------------------------------------------------------------- /Flowers/Components/sdwebimage-3.7.5/component/icons/sdwebimage_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Components/sdwebimage-3.7.5/component/icons/sdwebimage_512x512.png -------------------------------------------------------------------------------- /Flowers/Components/sdwebimage-3.7.5/lib/ios-unified/SDWebImage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Components/sdwebimage-3.7.5/lib/ios-unified/SDWebImage.dll -------------------------------------------------------------------------------- /Flowers/Components/sdwebimage-3.7.5/lib/ios/SDWebImage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Components/sdwebimage-3.7.5/lib/ios/SDWebImage.dll -------------------------------------------------------------------------------- /Flowers/Components/sdwebimage-3.7.5/samples/SDWebImageSample/SDWebImageSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Components/sdwebimage-3.7.5/samples/SDWebImageSample/SDWebImageSample.sln -------------------------------------------------------------------------------- /Flowers/Components/sdwebimage-3.7.5/samples/SDWebImageSample/SDWebImageSample/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Components/sdwebimage-3.7.5/samples/SDWebImageSample/SDWebImageSample/Main.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Data/Design/DesignFlowersService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Data/Design/DesignFlowersService.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Data/Design/DesignNavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Data/Design/DesignNavigationService.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Data/Flowers.Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Data/Flowers.Data.csproj -------------------------------------------------------------------------------- /Flowers/Flowers.Data/Model/Comment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Data/Model/Comment.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Data/Model/Flower.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Data/Model/Flower.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Data/Model/FlowersResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Data/Model/FlowersResult.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Data/Model/FlowersService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Data/Model/FlowersService.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Data/Model/IFlowersService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Data/Model/IFlowersService.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Data/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Data/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Data/ViewModel/FlowerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Data/ViewModel/FlowerViewModel.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Data/ViewModel/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Data/ViewModel/MainViewModel.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Data/ViewModel/ViewModelLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Data/ViewModel/ViewModelLocator.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Data/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Data/packages.config -------------------------------------------------------------------------------- /Flowers/Flowers.Droid/AddCommentActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Droid/AddCommentActivity.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Droid/AddCommentActivity.ui.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Droid/AddCommentActivity.ui.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Droid/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Droid/App.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Flowers/Flowers.Droid/DetailsActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Droid/DetailsActivity.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Droid/DetailsActivity.ui.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Droid/DetailsActivity.ui.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Droid/Flowers.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Droid/Flowers.Droid.csproj -------------------------------------------------------------------------------- /Flowers/Flowers.Droid/GettingStarted.Xamarin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Droid/GettingStarted.Xamarin -------------------------------------------------------------------------------- /Flowers/Flowers.Droid/Helpers/ActivityBaseEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Droid/Helpers/ActivityBaseEx.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Droid/Helpers/ImageDownloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Droid/Helpers/ImageDownloader.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Droid/MainActivity.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Droid/MainActivity.ui.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Droid/MainActivity.ui.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Flowers/Flowers.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Flowers/Flowers.Droid/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Droid/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Droid/Resources/drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Droid/Resources/drawable/Icon.png -------------------------------------------------------------------------------- /Flowers/Flowers.Droid/Resources/layout/AddComment.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Droid/Resources/layout/AddComment.axml -------------------------------------------------------------------------------- /Flowers/Flowers.Droid/Resources/layout/CommentsListHeaderView.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Droid/Resources/layout/CommentsListHeaderView.axml -------------------------------------------------------------------------------- /Flowers/Flowers.Droid/Resources/layout/Details.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Droid/Resources/layout/Details.axml -------------------------------------------------------------------------------- /Flowers/Flowers.Droid/Resources/layout/FlowerTemplate.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Droid/Resources/layout/FlowerTemplate.axml -------------------------------------------------------------------------------- /Flowers/Flowers.Droid/Resources/layout/Main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Droid/Resources/layout/Main.axml -------------------------------------------------------------------------------- /Flowers/Flowers.Droid/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Droid/Resources/values/Strings.xml -------------------------------------------------------------------------------- /Flowers/Flowers.Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Droid/packages.config -------------------------------------------------------------------------------- /Flowers/Flowers.Forms.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms.sln -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.Droid/Flowers.Forms.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.Droid/Flowers.Forms.Droid.csproj -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.Droid/MainActivity.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.Droid/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.Droid/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.Droid/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.Droid/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.Droid/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.Droid/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.Droid/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.Droid/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.Droid/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.Droid/app.config -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.Droid/packages.config -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.WinPhone/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/App.xaml -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.WinPhone/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/App.xaml.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/wp_ss_20160804_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/wp_ss_20160804_0001.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/wp_ss_20160804_0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/wp_ss_20160804_0002.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/wp_ss_20160805_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/wp_ss_20160805_0001.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/wp_ss_20160805_0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/wp_ss_20160805_0002.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/wp_ss_20160805_0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/wp_ss_20160805_0003.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/wp_ss_20160805_0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/wp_ss_20160805_0004.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/wp_ss_20160805_0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/wp_ss_20160805_0005.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/wp_ss_20160805_0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/wp_ss_20160805_0006.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/wp_ss_20160805_0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/wp_ss_20160805_0007.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/wp_ss_20160805_0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/wp_ss_20160805_0008.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/wp_ss_20160805_0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/wp_ss_20160805_0009.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Flowers.Forms.WinPhone.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Flowers.Forms.WinPhone.csproj -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.WinPhone/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/LocalizedStrings.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.WinPhone/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/MainPage.xaml -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.WinPhone/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/MainPage.xaml.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Properties/AppManifest.xml -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.WinPhone/README_FIRST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/README_FIRST.txt -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Resources/AppResources.resx -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Toolkit.Content/ApplicationBar.Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Toolkit.Content/ApplicationBar.Add.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Toolkit.Content/ApplicationBar.Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Toolkit.Content/ApplicationBar.Check.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.WinPhone/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/packages.config -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.iOS/Flowers.Forms.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.iOS/Flowers.Forms.iOS.csproj -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.iOS/Info.plist -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.iOS/Main.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-60@3x.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-76.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-76@2x.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-Small@3x.png -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.iOS/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.iOS/app.config -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.iOS/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.iOS/iTunesArtwork -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.iOS/iTunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.iOS/iTunesArtwork@2x -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms.iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms.iOS/packages.config -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms/AddCommentPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms/AddCommentPage.xaml -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms/AddCommentPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms/AddCommentPage.xaml.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms/App.xaml -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms/App.xaml.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms/DetailsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms/DetailsPage.xaml -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms/DetailsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms/DetailsPage.xaml.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms/Flowers.Forms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms/Flowers.Forms.csproj -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms/Helpers/DialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms/Helpers/DialogService.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms/Helpers/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms/Helpers/NavigationService.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms/MainPage.xaml -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms/MainPage.xaml.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms/ShowCommentsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms/ShowCommentsPage.xaml -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms/ShowCommentsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms/ShowCommentsPage.xaml.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Forms/Flowers.Forms/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Forms/Flowers.Forms/packages.config -------------------------------------------------------------------------------- /Flowers/Flowers.Uwp/AddCommentPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Uwp/AddCommentPage.xaml -------------------------------------------------------------------------------- /Flowers/Flowers.Uwp/AddCommentPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Uwp/AddCommentPage.xaml.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Uwp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Uwp/App.xaml -------------------------------------------------------------------------------- /Flowers/Flowers.Uwp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Uwp/App.xaml.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Uwp/Assets/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Uwp/Assets/Icon.png -------------------------------------------------------------------------------- /Flowers/Flowers.Uwp/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Uwp/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Flowers/Flowers.Uwp/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Uwp/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Flowers/Flowers.Uwp/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Uwp/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Flowers/Flowers.Uwp/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Uwp/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Flowers/Flowers.Uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Flowers/Flowers.Uwp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Uwp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Flowers/Flowers.Uwp/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Uwp/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Flowers/Flowers.Uwp/DetailsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Uwp/DetailsPage.xaml -------------------------------------------------------------------------------- /Flowers/Flowers.Uwp/DetailsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Uwp/DetailsPage.xaml.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Uwp/Flowers.Uwp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Uwp/Flowers.Uwp.csproj -------------------------------------------------------------------------------- /Flowers/Flowers.Uwp/Helpers/BaseSecondaryView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Uwp/Helpers/BaseSecondaryView.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Uwp/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Uwp/MainPage.xaml -------------------------------------------------------------------------------- /Flowers/Flowers.Uwp/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Uwp/MainPage.xaml.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Uwp/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Uwp/Package.appxmanifest -------------------------------------------------------------------------------- /Flowers/Flowers.Uwp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Uwp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Uwp/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Uwp/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Flowers/Flowers.Uwp/Styles/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Uwp/Styles/Styles.xaml -------------------------------------------------------------------------------- /Flowers/Flowers.Uwp/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Uwp/project.json -------------------------------------------------------------------------------- /Flowers/Flowers.Web.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Web.sln -------------------------------------------------------------------------------- /Flowers/Flowers.Web/App_Data/flowers.bak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Web/App_Data/flowers.bak.json -------------------------------------------------------------------------------- /Flowers/Flowers.Web/App_Data/flowers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Web/App_Data/flowers.json -------------------------------------------------------------------------------- /Flowers/Flowers.Web/Design/flowericon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Web/Design/flowericon.png -------------------------------------------------------------------------------- /Flowers/Flowers.Web/Flowers.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Web/Flowers.Web.csproj -------------------------------------------------------------------------------- /Flowers/Flowers.Web/FlowersService.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Web/FlowersService.ashx -------------------------------------------------------------------------------- /Flowers/Flowers.Web/FlowersService.ashx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Web/FlowersService.ashx.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Web/Helpers/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Web/Helpers/Log.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Web/Model/WebConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Web/Model/WebConstants.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Web/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Web/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Web/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Web/Web.Debug.config -------------------------------------------------------------------------------- /Flowers/Flowers.Web/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Web/Web.Release.config -------------------------------------------------------------------------------- /Flowers/Flowers.Web/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Web/Web.config -------------------------------------------------------------------------------- /Flowers/Flowers.Web/images/BeeOrchid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Web/images/BeeOrchid.jpg -------------------------------------------------------------------------------- /Flowers/Flowers.Web/images/BermudaButtercup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Web/images/BermudaButtercup.jpg -------------------------------------------------------------------------------- /Flowers/Flowers.Web/images/BindWeed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Web/images/BindWeed.jpg -------------------------------------------------------------------------------- /Flowers/Flowers.Web/images/BlueGem.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Web/images/BlueGem.jpg -------------------------------------------------------------------------------- /Flowers/Flowers.Web/images/CallaLily.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Web/images/CallaLily.jpg -------------------------------------------------------------------------------- /Flowers/Flowers.Web/images/CommonMallow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Web/images/CommonMallow.jpg -------------------------------------------------------------------------------- /Flowers/Flowers.Web/images/CratevaReligiosa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Web/images/CratevaReligiosa.jpg -------------------------------------------------------------------------------- /Flowers/Flowers.Web/images/Lantana.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Web/images/Lantana.jpg -------------------------------------------------------------------------------- /Flowers/Flowers.Web/images/Oleander.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Web/images/Oleander.jpg -------------------------------------------------------------------------------- /Flowers/Flowers.Web/images/OrangeCosmos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Web/images/OrangeCosmos.jpg -------------------------------------------------------------------------------- /Flowers/Flowers.Web/images/Poppy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Web/images/Poppy.jpg -------------------------------------------------------------------------------- /Flowers/Flowers.Web/images/PrimulaFarinosa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Web/images/PrimulaFarinosa.jpg -------------------------------------------------------------------------------- /Flowers/Flowers.Web/images/ScarletPimpernel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Web/images/ScarletPimpernel.jpg -------------------------------------------------------------------------------- /Flowers/Flowers.Web/images/SpanishOyster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Web/images/SpanishOyster.jpg -------------------------------------------------------------------------------- /Flowers/Flowers.Web/images/StBernardLily.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Web/images/StBernardLily.jpg -------------------------------------------------------------------------------- /Flowers/Flowers.Web/images/StorksBill.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Web/images/StorksBill.jpg -------------------------------------------------------------------------------- /Flowers/Flowers.Web/images/Verbascum.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Web/images/Verbascum.jpg -------------------------------------------------------------------------------- /Flowers/Flowers.Web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Web/index.html -------------------------------------------------------------------------------- /Flowers/Flowers.Web/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Web/packages.config -------------------------------------------------------------------------------- /Flowers/Flowers.Wp/AddCommentPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wp/AddCommentPage.xaml -------------------------------------------------------------------------------- /Flowers/Flowers.Wp/AddCommentPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wp/AddCommentPage.xaml.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Wp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wp/App.xaml -------------------------------------------------------------------------------- /Flowers/Flowers.Wp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wp/App.xaml.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Wp/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wp/ApplicationIcon.png -------------------------------------------------------------------------------- /Flowers/Flowers.Wp/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wp/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /Flowers/Flowers.Wp/Assets/BadgeLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wp/Assets/BadgeLogo.png -------------------------------------------------------------------------------- /Flowers/Flowers.Wp/Assets/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wp/Assets/Icon.png -------------------------------------------------------------------------------- /Flowers/Flowers.Wp/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wp/Assets/Logo.png -------------------------------------------------------------------------------- /Flowers/Flowers.Wp/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wp/Assets/SplashScreen.png -------------------------------------------------------------------------------- /Flowers/Flowers.Wp/Assets/SquareTile150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wp/Assets/SquareTile150x150.png -------------------------------------------------------------------------------- /Flowers/Flowers.Wp/Assets/SquareTile71x71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wp/Assets/SquareTile71x71.png -------------------------------------------------------------------------------- /Flowers/Flowers.Wp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Flowers/Flowers.Wp/Assets/WideLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wp/Assets/WideLogo.png -------------------------------------------------------------------------------- /Flowers/Flowers.Wp/DetailsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wp/DetailsPage.xaml -------------------------------------------------------------------------------- /Flowers/Flowers.Wp/DetailsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wp/DetailsPage.xaml.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Wp/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wp/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /Flowers/Flowers.Wp/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wp/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /Flowers/Flowers.Wp/Flowers.Wp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wp/Flowers.Wp.csproj -------------------------------------------------------------------------------- /Flowers/Flowers.Wp/Helpers/PhonePageBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wp/Helpers/PhonePageBase.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Wp/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wp/LocalizedStrings.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Wp/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wp/MainPage.xaml -------------------------------------------------------------------------------- /Flowers/Flowers.Wp/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wp/MainPage.xaml.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Wp/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wp/Package.appxmanifest -------------------------------------------------------------------------------- /Flowers/Flowers.Wp/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wp/Properties/AppManifest.xml -------------------------------------------------------------------------------- /Flowers/Flowers.Wp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Wp/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wp/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /Flowers/Flowers.Wp/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wp/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Wp/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wp/Resources/AppResources.resx -------------------------------------------------------------------------------- /Flowers/Flowers.Wp/Styles/MiscStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wp/Styles/MiscStyles.xaml -------------------------------------------------------------------------------- /Flowers/Flowers.Wp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wp/packages.config -------------------------------------------------------------------------------- /Flowers/Flowers.Wpf/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wpf/App.config -------------------------------------------------------------------------------- /Flowers/Flowers.Wpf/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wpf/App.xaml -------------------------------------------------------------------------------- /Flowers/Flowers.Wpf/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wpf/App.xaml.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Wpf/Assets/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wpf/Assets/Icon.png -------------------------------------------------------------------------------- /Flowers/Flowers.Wpf/Design/DesignDialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wpf/Design/DesignDialogService.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Wpf/Flowers.Wpf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wpf/Flowers.Wpf.csproj -------------------------------------------------------------------------------- /Flowers/Flowers.Wpf/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wpf/MainWindow.xaml -------------------------------------------------------------------------------- /Flowers/Flowers.Wpf/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wpf/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Wpf/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wpf/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Wpf/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wpf/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Wpf/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wpf/Properties/Resources.resx -------------------------------------------------------------------------------- /Flowers/Flowers.Wpf/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wpf/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Flowers/Flowers.Wpf/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wpf/Properties/Settings.settings -------------------------------------------------------------------------------- /Flowers/Flowers.Wpf/Styles/MainStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wpf/Styles/MainStyles.xaml -------------------------------------------------------------------------------- /Flowers/Flowers.Wpf/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.Wpf/packages.config -------------------------------------------------------------------------------- /Flowers/Flowers.iOS/AddCommentViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.iOS/AddCommentViewController.cs -------------------------------------------------------------------------------- /Flowers/Flowers.iOS/AddCommentViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.iOS/AddCommentViewController.designer.cs -------------------------------------------------------------------------------- /Flowers/Flowers.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Flowers/Flowers.iOS/DetailsViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.iOS/DetailsViewController.cs -------------------------------------------------------------------------------- /Flowers/Flowers.iOS/DetailsViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.iOS/DetailsViewController.designer.cs -------------------------------------------------------------------------------- /Flowers/Flowers.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Flowers/Flowers.iOS/Flowers.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.iOS/Flowers.iOS.csproj -------------------------------------------------------------------------------- /Flowers/Flowers.iOS/GettingStarted.Xamarin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.iOS/GettingStarted.Xamarin -------------------------------------------------------------------------------- /Flowers/Flowers.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.iOS/Info.plist -------------------------------------------------------------------------------- /Flowers/Flowers.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.iOS/Main.cs -------------------------------------------------------------------------------- /Flowers/Flowers.iOS/MainStoryboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.iOS/MainStoryboard.storyboard -------------------------------------------------------------------------------- /Flowers/Flowers.iOS/MainViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.iOS/MainViewController.cs -------------------------------------------------------------------------------- /Flowers/Flowers.iOS/MainViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.iOS/MainViewController.designer.cs -------------------------------------------------------------------------------- /Flowers/Flowers.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Flowers/Flowers.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Flowers/Flowers.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Flowers/Flowers.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Flowers/Flowers.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Flowers/Flowers.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Flowers/Flowers.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Flowers/Flowers.iOS/Resources/flower_256_magenta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.iOS/Resources/flower_256_magenta.png -------------------------------------------------------------------------------- /Flowers/Flowers.iOS/SeeCommentsViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.iOS/SeeCommentsViewController.cs -------------------------------------------------------------------------------- /Flowers/Flowers.iOS/SeeCommentsViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.iOS/SeeCommentsViewController.designer.cs -------------------------------------------------------------------------------- /Flowers/Flowers.iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.iOS/packages.config -------------------------------------------------------------------------------- /Flowers/Flowers.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/Flowers.sln -------------------------------------------------------------------------------- /Flowers/References/WPSL/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/References/WPSL/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /Flowers/clean-with-scc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/clean-with-scc.bat -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Bcl.1.1.10/License-Stable.rtf -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/Xamarin.iOS10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/monoandroid/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/monotouch/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/net40/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Bcl.1.1.10/lib/net40/System.IO.dll -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/net40/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Bcl.1.1.10/lib/net40/System.IO.xml -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/net40/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Bcl.1.1.10/lib/net40/System.Runtime.dll -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/net40/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Bcl.1.1.10/lib/net40/System.Runtime.xml -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/net40/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Bcl.1.1.10/lib/net40/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/net40/System.Threading.Tasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Bcl.1.1.10/lib/net40/System.Threading.Tasks.xml -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/net40/ensureRedirect.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp71+wpa81/ensureRedirect.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp8+wpa81/ensureRedirect.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8/System.IO.dll -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8/System.IO.xml -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8/System.Runtime.dll -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8/System.Runtime.xml -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8/ensureRedirect.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl5+win8+wp8+wpa81/ensureRedirect.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8+wp8+wpa81/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8+wp8+wpa81/System.IO.dll -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8+wp8+wpa81/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8+wp8+wpa81/System.IO.xml -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8+wp8+wpa81/ensureRedirect.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8/System.IO.dll -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8/System.IO.xml -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8/System.Runtime.dll -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8/System.Runtime.xml -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8/ensureRedirect.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/portable-net45+win8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/portable-net451+win81+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/portable-net451+win81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/portable-win81+wp81+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/sl4-windowsphone71/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Bcl.1.1.10/lib/sl4-windowsphone71/System.IO.dll -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/sl4-windowsphone71/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Bcl.1.1.10/lib/sl4-windowsphone71/System.IO.xml -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/sl4-windowsphone71/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Bcl.1.1.10/lib/sl4-windowsphone71/System.Runtime.dll -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/sl4-windowsphone71/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Bcl.1.1.10/lib/sl4-windowsphone71/System.Runtime.xml -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/sl4-windowsphone71/ensureRedirect.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/sl4/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Bcl.1.1.10/lib/sl4/System.IO.dll -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/sl4/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Bcl.1.1.10/lib/sl4/System.IO.xml -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/sl4/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Bcl.1.1.10/lib/sl4/System.Runtime.dll -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/sl4/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Bcl.1.1.10/lib/sl4/System.Runtime.xml -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/sl4/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Bcl.1.1.10/lib/sl4/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/sl4/System.Threading.Tasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Bcl.1.1.10/lib/sl4/System.Threading.Tasks.xml -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/sl5/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Bcl.1.1.10/lib/sl5/System.IO.dll -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/sl5/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Bcl.1.1.10/lib/sl5/System.IO.xml -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/sl5/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Bcl.1.1.10/lib/sl5/System.Runtime.dll -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/sl5/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Bcl.1.1.10/lib/sl5/System.Runtime.xml -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/sl5/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Bcl.1.1.10/lib/sl5/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/sl5/System.Threading.Tasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Bcl.1.1.10/lib/sl5/System.Threading.Tasks.xml -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/wp8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.1.1.10/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.Build.1.0.21/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Bcl.Build.1.0.21/License-Stable.rtf -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.Build.1.0.21/build/Microsoft.Bcl.Build.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Bcl.Build.1.0.21/build/Microsoft.Bcl.Build.Tasks.dll -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Bcl.Build.1.0.21/build/Microsoft.Bcl.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Bcl.Build.1.0.21/build/Microsoft.Bcl.Build.targets -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Net.Http.2.2.29/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Net.Http.2.2.29/License-Stable.rtf -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Net.Http.2.2.29/lib/net40/System.Net.Http.Extensions.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Net.Http.2.2.29/lib/net40/System.Net.Http.Extensions.XML -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Net.Http.2.2.29/lib/net40/System.Net.Http.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Net.Http.2.2.29/lib/net40/System.Net.Http.Extensions.dll -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Net.Http.2.2.29/lib/net40/System.Net.Http.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Net.Http.2.2.29/lib/net40/System.Net.Http.Primitives.dll -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Net.Http.2.2.29/lib/net40/System.Net.Http.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Net.Http.2.2.29/lib/net40/System.Net.Http.Primitives.xml -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Net.Http.2.2.29/lib/net40/System.Net.Http.WebRequest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Net.Http.2.2.29/lib/net40/System.Net.Http.WebRequest.dll -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Net.Http.2.2.29/lib/net40/System.Net.Http.WebRequest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Net.Http.2.2.29/lib/net40/System.Net.Http.WebRequest.xml -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Net.Http.2.2.29/lib/net40/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Net.Http.2.2.29/lib/net40/System.Net.Http.dll -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Net.Http.2.2.29/lib/net40/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Net.Http.2.2.29/lib/net40/System.Net.Http.xml -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Net.Http.2.2.29/lib/net40/ensureRedirect.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Net.Http.2.2.29/lib/net45/System.Net.Http.Extensions.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Net.Http.2.2.29/lib/net45/System.Net.Http.Extensions.XML -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Net.Http.2.2.29/lib/net45/System.Net.Http.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Net.Http.2.2.29/lib/net45/System.Net.Http.Extensions.dll -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Net.Http.2.2.29/lib/net45/System.Net.Http.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Net.Http.2.2.29/lib/net45/System.Net.Http.Primitives.dll -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Net.Http.2.2.29/lib/net45/System.Net.Http.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Net.Http.2.2.29/lib/net45/System.Net.Http.Primitives.xml -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Net.Http.2.2.29/lib/net45/ensureRedirect.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Net.Http.2.2.29/lib/portable-net40+sl4+win8+wp71+wpa81/ensureRedirect.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Net.Http.2.2.29/lib/portable-net45+win8+wpa81/ensureRedirect.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Net.Http.2.2.29/lib/portable-net45+win8/ensureRedirect.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Net.Http.2.2.29/lib/sl4-windowsphone71/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Net.Http.2.2.29/lib/sl4-windowsphone71/System.Net.Http.dll -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Net.Http.2.2.29/lib/sl4-windowsphone71/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Net.Http.2.2.29/lib/sl4-windowsphone71/System.Net.Http.xml -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Net.Http.2.2.29/lib/win8/System.Net.Http.Extensions.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Net.Http.2.2.29/lib/win8/System.Net.Http.Extensions.XML -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Net.Http.2.2.29/lib/win8/System.Net.Http.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Net.Http.2.2.29/lib/win8/System.Net.Http.Extensions.dll -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Net.Http.2.2.29/lib/win8/System.Net.Http.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Net.Http.2.2.29/lib/win8/System.Net.Http.Primitives.dll -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Net.Http.2.2.29/lib/win8/System.Net.Http.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Net.Http.2.2.29/lib/win8/System.Net.Http.Primitives.xml -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Net.Http.2.2.29/lib/wpa81/System.Net.Http.Extensions.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Net.Http.2.2.29/lib/wpa81/System.Net.Http.Extensions.XML -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Net.Http.2.2.29/lib/wpa81/System.Net.Http.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Net.Http.2.2.29/lib/wpa81/System.Net.Http.Extensions.dll -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Net.Http.2.2.29/lib/wpa81/System.Net.Http.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Net.Http.2.2.29/lib/wpa81/System.Net.Http.Primitives.dll -------------------------------------------------------------------------------- /Flowers/packages/Microsoft.Net.Http.2.2.29/lib/wpa81/System.Net.Http.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Microsoft.Net.Http.2.2.29/lib/wpa81/System.Net.Http.Primitives.xml -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/SL5/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/SL5/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/SL5/GalaSoft.MvvmLight.Extras.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/SL5/GalaSoft.MvvmLight.Extras.xml -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/SL5/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/SL5/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/SL5/GalaSoft.MvvmLight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/SL5/GalaSoft.MvvmLight.xml -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/SL5/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/SL5/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/monoandroid1/GalaSoft.MvvmLight.Extras.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/monoandroid1/GalaSoft.MvvmLight.Extras.XML -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/monoandroid1/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/monoandroid1/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/monoandroid1/GalaSoft.MvvmLight.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/monoandroid1/GalaSoft.MvvmLight.XML -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/monoandroid1/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/monoandroid1/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/monoandroid1/GalaSoft.MvvmLight.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/monoandroid1/GalaSoft.MvvmLight.dll.mdb -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net35/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net35/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net35/GalaSoft.MvvmLight.Extras.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net35/GalaSoft.MvvmLight.Extras.xml -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net35/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net35/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net35/GalaSoft.MvvmLight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net35/GalaSoft.MvvmLight.xml -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net35/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net35/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net35/System.Windows.Interactivity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net35/System.Windows.Interactivity.xml -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net40/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net40/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net40/GalaSoft.MvvmLight.Extras.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net40/GalaSoft.MvvmLight.Extras.xml -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net40/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net40/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net40/GalaSoft.MvvmLight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net40/GalaSoft.MvvmLight.xml -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net40/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net40/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net40/System.Windows.Interactivity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net40/System.Windows.Interactivity.xml -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net45/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net45/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net45/GalaSoft.MvvmLight.Extras.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net45/GalaSoft.MvvmLight.Extras.xml -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net45/GalaSoft.MvvmLight.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net45/GalaSoft.MvvmLight.Platform.dll -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net45/GalaSoft.MvvmLight.Platform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net45/GalaSoft.MvvmLight.Platform.xml -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net45/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net45/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net45/GalaSoft.MvvmLight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net45/GalaSoft.MvvmLight.xml -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net45/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/net45/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/windows81/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/windows81/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/windows81/GalaSoft.MvvmLight.Extras.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/windows81/GalaSoft.MvvmLight.Extras.xml -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/windows81/GalaSoft.MvvmLight.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/windows81/GalaSoft.MvvmLight.Platform.dll -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/windows81/GalaSoft.MvvmLight.Platform.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/windows81/GalaSoft.MvvmLight.Platform.pri -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/windows81/GalaSoft.MvvmLight.Platform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/windows81/GalaSoft.MvvmLight.Platform.xml -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/windows81/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/windows81/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/windows81/GalaSoft.MvvmLight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/windows81/GalaSoft.MvvmLight.xml -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wp8/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wp8/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wp8/GalaSoft.MvvmLight.Extras.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wp8/GalaSoft.MvvmLight.Extras.xml -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wp8/GalaSoft.MvvmLight.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wp8/GalaSoft.MvvmLight.Platform.dll -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wp8/GalaSoft.MvvmLight.Platform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wp8/GalaSoft.MvvmLight.Platform.xml -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wp8/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wp8/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wp8/GalaSoft.MvvmLight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wp8/GalaSoft.MvvmLight.xml -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wp8/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wp8/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wp81/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wp81/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wp81/GalaSoft.MvvmLight.Extras.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wp81/GalaSoft.MvvmLight.Extras.xml -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wp81/GalaSoft.MvvmLight.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wp81/GalaSoft.MvvmLight.Platform.dll -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wp81/GalaSoft.MvvmLight.Platform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wp81/GalaSoft.MvvmLight.Platform.xml -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wp81/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wp81/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wp81/GalaSoft.MvvmLight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wp81/GalaSoft.MvvmLight.xml -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wp81/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wp81/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wpa81/GalaSoft.MvvmLight.Extras.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wpa81/GalaSoft.MvvmLight.Extras.XML -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wpa81/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wpa81/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wpa81/GalaSoft.MvvmLight.Platform.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wpa81/GalaSoft.MvvmLight.Platform.XML -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wpa81/GalaSoft.MvvmLight.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wpa81/GalaSoft.MvvmLight.Platform.dll -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wpa81/GalaSoft.MvvmLight.Platform.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wpa81/GalaSoft.MvvmLight.Platform.pri -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wpa81/GalaSoft.MvvmLight.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wpa81/GalaSoft.MvvmLight.XML -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wpa81/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/wpa81/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/xamarin.ios10/GalaSoft.MvvmLight.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/xamarin.ios10/GalaSoft.MvvmLight.XML -------------------------------------------------------------------------------- /Flowers/packages/MvvmLightLibs.5.3.0.0/lib/xamarin.ios10/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/MvvmLightLibs.5.3.0.0/lib/xamarin.ios10/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Flowers/packages/Newtonsoft.Json.6.0.8/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Newtonsoft.Json.6.0.8/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Flowers/packages/Newtonsoft.Json.6.0.8/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Newtonsoft.Json.6.0.8/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Flowers/packages/Newtonsoft.Json.6.0.8/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Newtonsoft.Json.6.0.8/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Flowers/packages/Newtonsoft.Json.6.0.8/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Newtonsoft.Json.6.0.8/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Flowers/packages/Newtonsoft.Json.6.0.8/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Newtonsoft.Json.6.0.8/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Flowers/packages/Newtonsoft.Json.6.0.8/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Newtonsoft.Json.6.0.8/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Flowers/packages/Newtonsoft.Json.6.0.8/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Newtonsoft.Json.6.0.8/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Flowers/packages/Newtonsoft.Json.6.0.8/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Newtonsoft.Json.6.0.8/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Flowers/packages/Newtonsoft.Json.6.0.8/lib/netcore45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Newtonsoft.Json.6.0.8/lib/netcore45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Flowers/packages/Newtonsoft.Json.6.0.8/lib/netcore45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Newtonsoft.Json.6.0.8/lib/netcore45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Flowers/packages/Newtonsoft.Json.6.0.8/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Newtonsoft.Json.6.0.8/tools/install.ps1 -------------------------------------------------------------------------------- /Flowers/packages/Newtonsoft.Json.9.0.1/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Newtonsoft.Json.9.0.1/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Flowers/packages/Newtonsoft.Json.9.0.1/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Newtonsoft.Json.9.0.1/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Flowers/packages/Newtonsoft.Json.9.0.1/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Newtonsoft.Json.9.0.1/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Flowers/packages/Newtonsoft.Json.9.0.1/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Newtonsoft.Json.9.0.1/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Flowers/packages/Newtonsoft.Json.9.0.1/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Newtonsoft.Json.9.0.1/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Flowers/packages/Newtonsoft.Json.9.0.1/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Newtonsoft.Json.9.0.1/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Flowers/packages/Newtonsoft.Json.9.0.1/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Newtonsoft.Json.9.0.1/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Flowers/packages/Newtonsoft.Json.9.0.1/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Newtonsoft.Json.9.0.1/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Flowers/packages/Newtonsoft.Json.9.0.1/lib/netstandard1.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Newtonsoft.Json.9.0.1/lib/netstandard1.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Flowers/packages/Newtonsoft.Json.9.0.1/lib/netstandard1.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Newtonsoft.Json.9.0.1/lib/netstandard1.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Flowers/packages/Newtonsoft.Json.9.0.1/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Newtonsoft.Json.9.0.1/tools/install.ps1 -------------------------------------------------------------------------------- /Flowers/packages/WPtoolkit.4.2013.08.16/content/README_FIRST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/WPtoolkit.4.2013.08.16/content/README_FIRST.txt -------------------------------------------------------------------------------- /Flowers/packages/WPtoolkit.4.2013.08.16/lib/wp8/Microsoft.Phone.Controls.Toolkit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/WPtoolkit.4.2013.08.16/lib/wp8/Microsoft.Phone.Controls.Toolkit.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/MonoAndroid10/FormsViewGroup.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/MonoAndroid10/FormsViewGroup.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/MonoAndroid10/Xamarin.Forms.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/MonoAndroid10/Xamarin.Forms.Core.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/MonoAndroid10/Xamarin.Forms.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/MonoAndroid10/Xamarin.Forms.Core.xml -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/MonoAndroid10/Xamarin.Forms.Xaml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/MonoAndroid10/Xamarin.Forms.Xaml.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/MonoAndroid10/Xamarin.Forms.Xaml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/MonoAndroid10/Xamarin.Forms.Xaml.xml -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/MonoTouch10/Xamarin.Forms.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/MonoTouch10/Xamarin.Forms.Core.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/MonoTouch10/Xamarin.Forms.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/MonoTouch10/Xamarin.Forms.Core.xml -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/MonoTouch10/Xamarin.Forms.Xaml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/MonoTouch10/Xamarin.Forms.Xaml.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/MonoTouch10/Xamarin.Forms.Xaml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/MonoTouch10/Xamarin.Forms.Xaml.xml -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/WP80/Xamarin.Forms.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/WP80/Xamarin.Forms.Core.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/WP80/Xamarin.Forms.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/WP80/Xamarin.Forms.Core.xml -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/WP80/Xamarin.Forms.Platform.WP8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/WP80/Xamarin.Forms.Platform.WP8.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/WP80/Xamarin.Forms.Xaml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/WP80/Xamarin.Forms.Xaml.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/WP80/Xamarin.Forms.Xaml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/WP80/Xamarin.Forms.Xaml.xml -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/Xamarin.iOS10/Xamarin.Forms.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/Xamarin.iOS10/Xamarin.Forms.Core.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/Xamarin.iOS10/Xamarin.Forms.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/Xamarin.iOS10/Xamarin.Forms.Core.xml -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/Xamarin.iOS10/Xamarin.Forms.Xaml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/Xamarin.iOS10/Xamarin.Forms.Xaml.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/Xamarin.iOS10/Xamarin.Forms.Xaml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/Xamarin.iOS10/Xamarin.Forms.Xaml.xml -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/MonoAndroid10/FormsViewGroup.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/MonoAndroid10/FormsViewGroup.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/MonoAndroid10/Xamarin.Forms.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/MonoAndroid10/Xamarin.Forms.Core.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/MonoAndroid10/Xamarin.Forms.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/MonoAndroid10/Xamarin.Forms.Core.xml -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/MonoAndroid10/Xamarin.Forms.Xaml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/MonoAndroid10/Xamarin.Forms.Xaml.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/MonoAndroid10/Xamarin.Forms.Xaml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/MonoAndroid10/Xamarin.Forms.Xaml.xml -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/MonoTouch10/Xamarin.Forms.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/MonoTouch10/Xamarin.Forms.Core.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/MonoTouch10/Xamarin.Forms.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/MonoTouch10/Xamarin.Forms.Core.xml -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/MonoTouch10/Xamarin.Forms.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/MonoTouch10/Xamarin.Forms.Platform.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/MonoTouch10/Xamarin.Forms.Xaml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/MonoTouch10/Xamarin.Forms.Xaml.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/MonoTouch10/Xamarin.Forms.Xaml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/MonoTouch10/Xamarin.Forms.Xaml.xml -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/WP80/Xamarin.Forms.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/WP80/Xamarin.Forms.Core.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/WP80/Xamarin.Forms.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/WP80/Xamarin.Forms.Core.xml -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/WP80/Xamarin.Forms.Platform.WP8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/WP80/Xamarin.Forms.Platform.WP8.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/WP80/Xamarin.Forms.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/WP80/Xamarin.Forms.Platform.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/WP80/Xamarin.Forms.Xaml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/WP80/Xamarin.Forms.Xaml.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/WP80/Xamarin.Forms.Xaml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/WP80/Xamarin.Forms.Xaml.xml -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/Xamarin.iOS10/Xamarin.Forms.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/Xamarin.iOS10/Xamarin.Forms.Core.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/Xamarin.iOS10/Xamarin.Forms.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/Xamarin.iOS10/Xamarin.Forms.Core.xml -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/Xamarin.iOS10/Xamarin.Forms.Xaml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/Xamarin.iOS10/Xamarin.Forms.Xaml.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/Xamarin.iOS10/Xamarin.Forms.Xaml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/Xamarin.iOS10/Xamarin.Forms.Xaml.xml -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/uap10.0/Xamarin.Forms.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/uap10.0/Xamarin.Forms.Core.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/uap10.0/Xamarin.Forms.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/uap10.0/Xamarin.Forms.Core.xml -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/uap10.0/Xamarin.Forms.Platform.UAP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/uap10.0/Xamarin.Forms.Platform.UAP.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/uap10.0/Xamarin.Forms.Platform.UAP.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/uap10.0/Xamarin.Forms.Platform.UAP.pri -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/uap10.0/Xamarin.Forms.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/uap10.0/Xamarin.Forms.Platform.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/uap10.0/Xamarin.Forms.Xaml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/uap10.0/Xamarin.Forms.Xaml.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/uap10.0/Xamarin.Forms.Xaml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/uap10.0/Xamarin.Forms.Xaml.xml -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/win81/Xamarin.Forms.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/win81/Xamarin.Forms.Core.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/win81/Xamarin.Forms.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/win81/Xamarin.Forms.Core.xml -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/win81/Xamarin.Forms.Platform.WinRT.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/win81/Xamarin.Forms.Platform.WinRT.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/win81/Xamarin.Forms.Platform.WinRT.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/win81/Xamarin.Forms.Platform.WinRT.pri -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/win81/Xamarin.Forms.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/win81/Xamarin.Forms.Platform.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/win81/Xamarin.Forms.Xaml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/win81/Xamarin.Forms.Xaml.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/win81/Xamarin.Forms.Xaml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/win81/Xamarin.Forms.Xaml.xml -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/wpa81/Xamarin.Forms.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/wpa81/Xamarin.Forms.Core.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/wpa81/Xamarin.Forms.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/wpa81/Xamarin.Forms.Core.xml -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/wpa81/Xamarin.Forms.Platform.WinRT.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/wpa81/Xamarin.Forms.Platform.WinRT.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/wpa81/Xamarin.Forms.Platform.WinRT.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/wpa81/Xamarin.Forms.Platform.WinRT.pri -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/wpa81/Xamarin.Forms.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/wpa81/Xamarin.Forms.Platform.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/wpa81/Xamarin.Forms.Xaml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/wpa81/Xamarin.Forms.Xaml.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/wpa81/Xamarin.Forms.Xaml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/lib/wpa81/Xamarin.Forms.Xaml.xml -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/tools/Xamarin.Forms.Core.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/tools/Xamarin.Forms.Core.Design.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/tools/Xamarin.Forms.Xaml.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/tools/Xamarin.Forms.Xaml.Design.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.Forms.2.0.0.6482/tools/init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.Forms.2.0.0.6482/tools/init.ps1 -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.SDWebImage.3.7.5/lib/MonoTouch/SDWebImage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.SDWebImage.3.7.5/lib/MonoTouch/SDWebImage.dll -------------------------------------------------------------------------------- /Flowers/packages/Xamarin.SDWebImage.3.7.5/lib/Xamarin.iOS/SDWebImage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Flowers/packages/Xamarin.SDWebImage.3.7.5/lib/Xamarin.iOS/SDWebImage.dll -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/README.md -------------------------------------------------------------------------------- /Snippets.vssettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/Snippets.vssettings -------------------------------------------------------------------------------- /clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbugnion/sample-2016-vslive-crossplatform/HEAD/clean.bat --------------------------------------------------------------------------------