├── .gitattributes ├── .gitignore ├── README.md ├── StopWatchAppAndroid ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── StopWatchAppAndroid.iml ├── app │ ├── .gitignore │ ├── app.iml │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── amay077 │ │ │ └── stopwatchapp │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── amay077 │ │ │ │ └── stopwatchapp │ │ │ │ ├── App.java │ │ │ │ ├── di │ │ │ │ ├── ActivityComponent.java │ │ │ │ ├── ActivityModule.java │ │ │ │ ├── AppComponent.java │ │ │ │ ├── AppModule.java │ │ │ │ └── scope │ │ │ │ │ └── ActivityScope.java │ │ │ │ ├── frameworks │ │ │ │ └── messengers │ │ │ │ │ ├── Message.java │ │ │ │ │ ├── Messenger.java │ │ │ │ │ ├── ShowToastMessages.java │ │ │ │ │ └── StartActivityMessage.java │ │ │ │ ├── models │ │ │ │ └── StopWatchModel.java │ │ │ │ ├── viewmodel │ │ │ │ ├── LapViewModel.java │ │ │ │ └── MainViewModel.java │ │ │ │ └── views │ │ │ │ ├── activities │ │ │ │ ├── LapActivity.java │ │ │ │ └── MainActivity.java │ │ │ │ └── binders │ │ │ │ └── ListBinders.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_lap.xml │ │ │ └── activity_main.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── amay077 │ │ └── stopwatchapp │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── StopWatchAppXamarin ├── .gitignore ├── Components │ ├── alert-center-1.0.6.info │ ├── alert-center-1.0.6.png │ └── alert-center-1.0.6 │ │ ├── component │ │ ├── Details.md │ │ ├── GettingStarted.md │ │ ├── License.md │ │ ├── Manifest.xml │ │ ├── icons │ │ │ ├── alert-center_128x128.png │ │ │ └── alert-center_512x512.png │ │ └── popover.png │ │ ├── lib │ │ ├── android │ │ │ └── AlertCenter.Android.dll │ │ ├── ios-unified │ │ │ └── AlertCenter.IOS.dll │ │ └── ios │ │ │ └── AlertCenter.IOS.dll │ │ └── samples │ │ ├── AlertCenter.Android.Sample │ │ ├── Activity1.cs │ │ ├── AlertCenter.Android.Sample.csproj │ │ ├── AlertCenter.Android.Sample.sln │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── CustomAnimation.cs │ │ ├── NotificationView.cs │ │ ├── OnTouchListener.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Readme.txt │ │ └── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.designer.cs │ │ │ ├── anim │ │ │ ├── collapse.xml │ │ │ └── expand.xml │ │ │ ├── drawable │ │ │ └── Icon.png │ │ │ ├── layout │ │ │ └── Main.axml │ │ │ └── values │ │ │ └── Strings.xml │ │ ├── AlertCenter.IOS.Sample-Unified │ │ ├── 176.png │ │ ├── AlertCenter.IOS.Sample-Unified.csproj │ │ ├── AlertCenter.IOS.Sample-Unified.sln │ │ ├── AlertCenter.IOS.SampleViewController.cs │ │ ├── AlertCenter.IOS.SampleViewController.designer.cs │ │ ├── AppDelegate.cs │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── MainStoryboard_iPad.storyboard │ │ ├── MainStoryboard_iPhone.storyboard │ │ └── Resources │ │ │ └── Images.xcassets │ │ │ └── AppIcons.appiconset │ │ │ └── Contents.json │ │ └── AlertCenter.IOS.Sample │ │ ├── 176.png │ │ ├── AlertCenter.IOS.Sample.csproj │ │ ├── AlertCenter.IOS.Sample.sln │ │ ├── AlertCenter.IOS.SampleViewController.cs │ │ ├── AlertCenter.IOS.SampleViewController.designer.cs │ │ ├── AppDelegate.cs │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── MainStoryboard_iPad.storyboard │ │ ├── MainStoryboard_iPhone.storyboard │ │ └── Resources │ │ └── Default-568h@2x.png ├── StopWatchApp.Android │ ├── App.cs │ ├── Assets │ │ └── AboutAssets.txt │ ├── Extensions │ │ └── ArrayAdapterExtensions.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── layout │ │ │ ├── activity_lap.xml │ │ │ └── activity_main.xml │ │ ├── mipmap-hdpi │ │ │ └── Icon.png │ │ ├── mipmap-mdpi │ │ │ └── Icon.png │ │ ├── mipmap-xhdpi │ │ │ └── Icon.png │ │ ├── mipmap-xxhdpi │ │ │ └── Icon.png │ │ ├── mipmap-xxxhdpi │ │ │ └── Icon.png │ │ └── values │ │ │ └── Strings.xml │ ├── StopWatchApp.Android.csproj │ ├── Views │ │ ├── LapActivity.cs │ │ └── MainActivity.cs │ └── packages.config ├── StopWatchApp.Core │ ├── Extensions │ │ └── FormattedLapsExtensions.cs │ ├── Frameworks │ │ └── Messengers │ │ │ ├── IMessage.cs │ │ │ ├── Messenger.cs │ │ │ ├── ShowToastMessage.cs │ │ │ └── StartViewMessage.cs │ ├── Models │ │ ├── IModelPool.cs │ │ └── StopWatchModel.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── StopWatchApp.Core.csproj │ ├── ViewModels │ │ ├── LapViewModel.cs │ │ └── MainViewModel.cs │ └── packages.config ├── StopWatchApp.iOS │ ├── AppDelegate.cs │ ├── Entitlements.plist │ ├── Extensions │ │ ├── BindingSupportExtensions.cs │ │ ├── Internal │ │ │ └── AccessorCache.cs │ │ ├── UIControlExtensions.cs │ │ └── UITableViewExtensions.cs │ ├── Info.plist │ ├── Main.cs │ ├── Resources │ │ ├── Images.xcassets │ │ │ └── AppIcons.appiconset │ │ │ │ └── Contents.json │ │ └── LaunchScreen.xib │ ├── StopWatchApp.iOS.csproj │ ├── Views │ │ ├── LapTableSource.cs │ │ ├── LapViewController.cs │ │ ├── LapViewController.designer.cs │ │ ├── Main.storyboard │ │ ├── MainViewController.cs │ │ └── MainViewController.designer.cs │ └── packages.config ├── StopWatchAppXamarin.sln └── packages │ ├── ReactiveProperty.2.4.0 │ ├── Docs │ │ └── ReadMe.txt │ ├── LICENSE.txt │ ├── ReactiveProperty.2.4.0.nupkg │ ├── Snippet │ │ ├── csharp5 │ │ │ ├── ReactiveCollection.snippet │ │ │ ├── ReactiveCommand.snippet │ │ │ ├── ReactiveCommandGeneric.snippet │ │ │ ├── ReactiveProperty.snippet │ │ │ ├── ReadOnlyReactiveCollection.snippet │ │ │ └── ReadOnlyReactiveProperty.snippet │ │ └── csharp6 │ │ │ ├── ReactiveCollection.snippet │ │ │ ├── ReactiveCommand.snippet │ │ │ ├── ReactiveCommandGeneric.snippet │ │ │ ├── ReactiveProperty.snippet │ │ │ ├── ReadOnlyReactiveCollection.snippet │ │ │ └── ReadOnlyReactiveProperty.snippet │ └── lib │ │ ├── MonoAndroid │ │ ├── ReactiveProperty.Android.dll │ │ ├── ReactiveProperty.DataAnnotations.dll │ │ └── ReactiveProperty.dll │ │ ├── MonoTouch │ │ ├── ReactiveProperty.DataAnnotations.dll │ │ ├── ReactiveProperty.dll │ │ └── ReactiveProperty.iOS.dll │ │ ├── Xamarin.Mac20 │ │ ├── ReactiveProperty.DataAnnotations.dll │ │ └── ReactiveProperty.dll │ │ ├── Xamarin.iOS10 │ │ ├── ReactiveProperty.DataAnnotations.dll │ │ ├── ReactiveProperty.dll │ │ └── ReactiveProperty.iOS.dll │ │ ├── net4 │ │ ├── ReactiveProperty.NET4.dll │ │ └── ReactiveProperty.NET4.xml │ │ ├── net45 │ │ ├── ReactiveProperty.DataAnnotations.dll │ │ ├── ReactiveProperty.NET45.dll │ │ └── ReactiveProperty.dll │ │ ├── net46 │ │ ├── ReactiveProperty.DataAnnotations.dll │ │ ├── ReactiveProperty.NET46.dll │ │ └── ReactiveProperty.dll │ │ ├── portable-net45+WP8+win8+wpa81+MonoTouch+MonoAndroid │ │ └── ReactiveProperty.dll │ │ ├── portable-net45+win81+wpa81+MonoTouch+MonoAndroid │ │ ├── ReactiveProperty.DataAnnotations.dll │ │ └── ReactiveProperty.dll │ │ ├── portable-win81+wpa81 │ │ ├── ReactiveProperty.DataAnnotations.dll │ │ └── ReactiveProperty.dll │ │ ├── win81 │ │ ├── ReactiveProperty.DataAnnotations.dll │ │ ├── ReactiveProperty.WinRT.dll │ │ └── ReactiveProperty.dll │ │ ├── wp8 │ │ ├── ReactiveProperty.WP8.dll │ │ └── ReactiveProperty.dll │ │ └── wpa81 │ │ ├── ReactiveProperty.DataAnnotations.dll │ │ ├── ReactiveProperty.WPA81.dll │ │ └── ReactiveProperty.dll │ ├── ReactiveProperty.2.8 │ ├── Docs │ │ └── ReadMe.txt │ ├── LICENSE.txt │ ├── ReactiveProperty.2.8.nupkg │ ├── Snippet │ │ ├── csharp5 │ │ │ ├── ReactiveCollection.snippet │ │ │ ├── ReactiveCommand.snippet │ │ │ ├── ReactiveCommandGeneric.snippet │ │ │ ├── ReactiveProperty.snippet │ │ │ ├── ReadOnlyReactiveCollection.snippet │ │ │ └── ReadOnlyReactiveProperty.snippet │ │ └── csharp6 │ │ │ ├── ReactiveCollection.snippet │ │ │ ├── ReactiveCommand.snippet │ │ │ ├── ReactiveCommandGeneric.snippet │ │ │ ├── ReactiveProperty.snippet │ │ │ ├── ReadOnlyReactiveCollection.snippet │ │ │ └── ReadOnlyReactiveProperty.snippet │ └── lib │ │ ├── MonoAndroid │ │ ├── ReactiveProperty.Android.dll │ │ ├── ReactiveProperty.Android.dll.mdb │ │ ├── ReactiveProperty.Android.pdb │ │ ├── ReactiveProperty.DataAnnotations.dll │ │ ├── ReactiveProperty.DataAnnotations.dll.mdb │ │ ├── ReactiveProperty.DataAnnotations.pdb │ │ ├── ReactiveProperty.dll │ │ ├── ReactiveProperty.dll.mdb │ │ └── ReactiveProperty.pdb │ │ ├── MonoTouch │ │ ├── ReactiveProperty.DataAnnotations.dll │ │ ├── ReactiveProperty.DataAnnotations.pdb │ │ ├── ReactiveProperty.dll │ │ ├── ReactiveProperty.iOS.dll │ │ ├── ReactiveProperty.iOS.pdb │ │ └── ReactiveProperty.pdb │ │ ├── Xamarin.Mac20 │ │ ├── ReactiveProperty.DataAnnotations.dll │ │ ├── ReactiveProperty.DataAnnotations.pdb │ │ ├── ReactiveProperty.dll │ │ └── ReactiveProperty.pdb │ │ ├── Xamarin.iOS10 │ │ ├── ReactiveProperty.DataAnnotations.dll │ │ ├── ReactiveProperty.DataAnnotations.pdb │ │ ├── ReactiveProperty.dll │ │ ├── ReactiveProperty.iOS.dll │ │ ├── ReactiveProperty.iOS.pdb │ │ └── ReactiveProperty.pdb │ │ ├── net4 │ │ ├── ReactiveProperty.NET4.dll │ │ ├── ReactiveProperty.NET4.pdb │ │ └── ReactiveProperty.NET4.xml │ │ ├── net45 │ │ ├── ReactiveProperty.DataAnnotations.dll │ │ ├── ReactiveProperty.DataAnnotations.pdb │ │ ├── ReactiveProperty.NET45.dll │ │ ├── ReactiveProperty.NET45.pdb │ │ ├── ReactiveProperty.dll │ │ └── ReactiveProperty.pdb │ │ ├── net46 │ │ ├── ReactiveProperty.DataAnnotations.dll │ │ ├── ReactiveProperty.DataAnnotations.pdb │ │ ├── ReactiveProperty.NET46.dll │ │ ├── ReactiveProperty.NET46.pdb │ │ ├── ReactiveProperty.dll │ │ └── ReactiveProperty.pdb │ │ ├── netcore451 │ │ ├── ReactiveProperty.DataAnnotations.dll │ │ ├── ReactiveProperty.DataAnnotations.pdb │ │ ├── ReactiveProperty.WinRT.dll │ │ ├── ReactiveProperty.WinRT.pdb │ │ ├── ReactiveProperty.dll │ │ └── ReactiveProperty.pdb │ │ ├── portable-net45+WP8+win8+wpa81+MonoTouch+MonoAndroid │ │ ├── ReactiveProperty.dll │ │ └── ReactiveProperty.pdb │ │ ├── portable-net45+win81+wpa81+MonoTouch+MonoAndroid │ │ ├── ReactiveProperty.DataAnnotations.dll │ │ ├── ReactiveProperty.DataAnnotations.pdb │ │ ├── ReactiveProperty.dll │ │ └── ReactiveProperty.pdb │ │ ├── portable-win81+wpa81 │ │ ├── ReactiveProperty.DataAnnotations.dll │ │ ├── ReactiveProperty.DataAnnotations.pdb │ │ ├── ReactiveProperty.dll │ │ └── ReactiveProperty.pdb │ │ ├── uap10.0 │ │ ├── ReactiveProperty.DataAnnotations.dll │ │ ├── ReactiveProperty.DataAnnotations.pdb │ │ ├── ReactiveProperty.UWP.dll │ │ ├── ReactiveProperty.UWP.pdb │ │ ├── ReactiveProperty.dll │ │ └── ReactiveProperty.pdb │ │ ├── wp8 │ │ ├── ReactiveProperty.WP8.dll │ │ ├── ReactiveProperty.WP8.pdb │ │ ├── ReactiveProperty.dll │ │ └── ReactiveProperty.pdb │ │ └── wpa81 │ │ ├── ReactiveProperty.DataAnnotations.dll │ │ ├── ReactiveProperty.DataAnnotations.pdb │ │ ├── ReactiveProperty.WPA81.dll │ │ ├── ReactiveProperty.WPA81.pdb │ │ ├── ReactiveProperty.dll │ │ └── ReactiveProperty.pdb │ ├── Rx-Core.2.2.5 │ ├── Rx-Core.2.2.5.nupkg │ └── lib │ │ ├── net40 │ │ ├── System.Reactive.Core.XML │ │ └── System.Reactive.Core.dll │ │ ├── net45 │ │ ├── System.Reactive.Core.XML │ │ └── System.Reactive.Core.dll │ │ ├── portable-net40+sl5+win8+wp8 │ │ ├── System.Reactive.Core.XML │ │ └── System.Reactive.Core.dll │ │ ├── portable-net45+winrt45+wp8+wpa81 │ │ ├── System.Reactive.Core.XML │ │ └── System.Reactive.Core.dll │ │ ├── portable-win81+wpa81 │ │ ├── System.Reactive.Core.XML │ │ └── System.Reactive.Core.dll │ │ ├── portable-windows8+net45+wp8 │ │ ├── System.Reactive.Core.XML │ │ └── System.Reactive.Core.dll │ │ ├── sl5 │ │ ├── System.Reactive.Core.XML │ │ └── System.Reactive.Core.dll │ │ ├── windows8 │ │ ├── System.Reactive.Core.XML │ │ └── System.Reactive.Core.dll │ │ ├── windowsphone71 │ │ ├── System.Reactive.Core.XML │ │ └── System.Reactive.Core.dll │ │ └── windowsphone8 │ │ ├── System.Reactive.Core.XML │ │ └── System.Reactive.Core.dll │ ├── Rx-Interfaces.2.2.5 │ ├── Rx-Interfaces.2.2.5.nupkg │ └── lib │ │ ├── net40 │ │ ├── System.Reactive.Interfaces.XML │ │ └── System.Reactive.Interfaces.dll │ │ ├── net45 │ │ ├── System.Reactive.Interfaces.XML │ │ └── System.Reactive.Interfaces.dll │ │ ├── portable-net40+sl5+win8+wp8 │ │ ├── System.Reactive.Interfaces.XML │ │ └── System.Reactive.Interfaces.dll │ │ ├── portable-net45+winrt45+wp8+wpa81 │ │ ├── System.Reactive.Interfaces.XML │ │ └── System.Reactive.Interfaces.dll │ │ ├── portable-win81+wpa81 │ │ ├── System.Reactive.Interfaces.XML │ │ └── System.Reactive.Interfaces.dll │ │ ├── portable-windows8+net45+wp8 │ │ ├── System.Reactive.Interfaces.XML │ │ └── System.Reactive.Interfaces.dll │ │ ├── sl5 │ │ ├── System.Reactive.Interfaces.XML │ │ └── System.Reactive.Interfaces.dll │ │ ├── windows8 │ │ ├── System.Reactive.Interfaces.XML │ │ └── System.Reactive.Interfaces.dll │ │ ├── windowsphone71 │ │ ├── System.Reactive.Interfaces.XML │ │ └── System.Reactive.Interfaces.dll │ │ └── windowsphone8 │ │ ├── System.Reactive.Interfaces.XML │ │ └── System.Reactive.Interfaces.dll │ ├── Rx-Linq.2.2.5 │ ├── Rx-Linq.2.2.5.nupkg │ └── lib │ │ ├── net40 │ │ ├── System.Reactive.Linq.XML │ │ └── System.Reactive.Linq.dll │ │ ├── net45 │ │ ├── System.Reactive.Linq.XML │ │ └── System.Reactive.Linq.dll │ │ ├── portable-net40+sl5+win8+wp8 │ │ ├── System.Reactive.Linq.XML │ │ └── System.Reactive.Linq.dll │ │ ├── portable-net45+winrt45+wp8+wpa81 │ │ ├── System.Reactive.Linq.XML │ │ └── System.Reactive.Linq.dll │ │ ├── portable-win81+wpa81 │ │ ├── System.Reactive.Linq.XML │ │ └── System.Reactive.Linq.dll │ │ ├── portable-windows8+net45+wp8 │ │ ├── System.Reactive.Linq.XML │ │ └── System.Reactive.Linq.dll │ │ ├── sl5 │ │ ├── System.Reactive.Linq.XML │ │ └── System.Reactive.Linq.dll │ │ ├── windows8 │ │ ├── System.Reactive.Linq.XML │ │ └── System.Reactive.Linq.dll │ │ ├── windowsphone71 │ │ ├── System.Reactive.Linq.XML │ │ └── System.Reactive.Linq.dll │ │ └── windowsphone8 │ │ ├── System.Reactive.Linq.XML │ │ └── System.Reactive.Linq.dll │ ├── Rx-Main.2.2.5 │ └── Rx-Main.2.2.5.nupkg │ ├── Rx-PlatformServices.2.2.5 │ ├── Rx-PlatformServices.2.2.5.nupkg │ └── lib │ │ ├── net40 │ │ ├── System.Reactive.PlatformServices.XML │ │ └── System.Reactive.PlatformServices.dll │ │ ├── net45 │ │ ├── System.Reactive.PlatformServices.XML │ │ └── System.Reactive.PlatformServices.dll │ │ ├── portable-net40+sl5+win8+wp8 │ │ ├── System.Reactive.PlatformServices.XML │ │ └── System.Reactive.PlatformServices.dll │ │ ├── portable-net45+winrt45+wp8+wpa81 │ │ ├── System.Reactive.PlatformServices.XML │ │ └── System.Reactive.PlatformServices.dll │ │ ├── portable-win81+wpa81 │ │ ├── System.Reactive.PlatformServices.XML │ │ └── System.Reactive.PlatformServices.dll │ │ ├── portable-windows8+net45+wp8 │ │ ├── System.Reactive.PlatformServices.XML │ │ └── System.Reactive.PlatformServices.dll │ │ ├── sl5 │ │ ├── System.Reactive.PlatformServices.XML │ │ └── System.Reactive.PlatformServices.dll │ │ ├── windows8 │ │ ├── System.Reactive.PlatformServices.XML │ │ └── System.Reactive.PlatformServices.dll │ │ ├── windowsphone71 │ │ ├── System.Reactive.PlatformServices.XML │ │ └── System.Reactive.PlatformServices.dll │ │ └── windowsphone8 │ │ ├── System.Reactive.PlatformServices.XML │ │ └── System.Reactive.PlatformServices.dll │ └── repositories.config └── StopWatchAppXamarinForms ├── Droid ├── Assets │ └── AboutAssets.txt ├── 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 │ ├── layout │ │ ├── Tabbar.axml │ │ └── Toolbar.axml │ └── values │ │ └── styles.xml ├── StopWatchAppXamarinForms.Droid.csproj └── packages.config ├── StopWatchAppXamarinForms.sln ├── StopWatchAppXamarinForms ├── FormsApp.cs ├── Models │ ├── IStopWatchModel.cs │ └── StopWatchModel.cs ├── Properties │ └── AssemblyInfo.cs ├── StopWatchAppXamarinForms.csproj ├── ValueConverters │ └── ButtonTitleConverter.cs ├── ViewModels │ ├── LapViewModel.cs │ └── MainViewModel.cs ├── Views │ ├── LapPage.xaml │ ├── LapPage.xaml.cs │ ├── MainPage.xaml │ └── MainPage.xaml.cs └── packages.config └── iOS ├── AppDelegate.cs ├── Assets.xcassets ├── AppIcon.appiconset │ └── Contents.json └── Contents.json ├── Entitlements.plist ├── Info.plist ├── LaunchScreen.storyboard ├── Main.cs ├── StopWatchAppXamarinForms.iOS.csproj └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/README.md -------------------------------------------------------------------------------- /StopWatchAppAndroid/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/.gitignore -------------------------------------------------------------------------------- /StopWatchAppAndroid/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/.idea/compiler.xml -------------------------------------------------------------------------------- /StopWatchAppAndroid/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /StopWatchAppAndroid/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/.idea/gradle.xml -------------------------------------------------------------------------------- /StopWatchAppAndroid/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/.idea/misc.xml -------------------------------------------------------------------------------- /StopWatchAppAndroid/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/.idea/modules.xml -------------------------------------------------------------------------------- /StopWatchAppAndroid/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /StopWatchAppAndroid/StopWatchAppAndroid.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/StopWatchAppAndroid.iml -------------------------------------------------------------------------------- /StopWatchAppAndroid/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /StopWatchAppAndroid/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/app/app.iml -------------------------------------------------------------------------------- /StopWatchAppAndroid/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/app/build.gradle -------------------------------------------------------------------------------- /StopWatchAppAndroid/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/app/proguard-rules.pro -------------------------------------------------------------------------------- /StopWatchAppAndroid/app/src/androidTest/java/com/amay077/stopwatchapp/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/app/src/androidTest/java/com/amay077/stopwatchapp/ApplicationTest.java -------------------------------------------------------------------------------- /StopWatchAppAndroid/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /StopWatchAppAndroid/app/src/main/java/com/amay077/stopwatchapp/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/app/src/main/java/com/amay077/stopwatchapp/App.java -------------------------------------------------------------------------------- /StopWatchAppAndroid/app/src/main/java/com/amay077/stopwatchapp/di/ActivityComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/app/src/main/java/com/amay077/stopwatchapp/di/ActivityComponent.java -------------------------------------------------------------------------------- /StopWatchAppAndroid/app/src/main/java/com/amay077/stopwatchapp/di/ActivityModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/app/src/main/java/com/amay077/stopwatchapp/di/ActivityModule.java -------------------------------------------------------------------------------- /StopWatchAppAndroid/app/src/main/java/com/amay077/stopwatchapp/di/AppComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/app/src/main/java/com/amay077/stopwatchapp/di/AppComponent.java -------------------------------------------------------------------------------- /StopWatchAppAndroid/app/src/main/java/com/amay077/stopwatchapp/di/AppModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/app/src/main/java/com/amay077/stopwatchapp/di/AppModule.java -------------------------------------------------------------------------------- /StopWatchAppAndroid/app/src/main/java/com/amay077/stopwatchapp/di/scope/ActivityScope.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/app/src/main/java/com/amay077/stopwatchapp/di/scope/ActivityScope.java -------------------------------------------------------------------------------- /StopWatchAppAndroid/app/src/main/java/com/amay077/stopwatchapp/frameworks/messengers/Message.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/app/src/main/java/com/amay077/stopwatchapp/frameworks/messengers/Message.java -------------------------------------------------------------------------------- /StopWatchAppAndroid/app/src/main/java/com/amay077/stopwatchapp/frameworks/messengers/Messenger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/app/src/main/java/com/amay077/stopwatchapp/frameworks/messengers/Messenger.java -------------------------------------------------------------------------------- /StopWatchAppAndroid/app/src/main/java/com/amay077/stopwatchapp/frameworks/messengers/ShowToastMessages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/app/src/main/java/com/amay077/stopwatchapp/frameworks/messengers/ShowToastMessages.java -------------------------------------------------------------------------------- /StopWatchAppAndroid/app/src/main/java/com/amay077/stopwatchapp/frameworks/messengers/StartActivityMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/app/src/main/java/com/amay077/stopwatchapp/frameworks/messengers/StartActivityMessage.java -------------------------------------------------------------------------------- /StopWatchAppAndroid/app/src/main/java/com/amay077/stopwatchapp/models/StopWatchModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/app/src/main/java/com/amay077/stopwatchapp/models/StopWatchModel.java -------------------------------------------------------------------------------- /StopWatchAppAndroid/app/src/main/java/com/amay077/stopwatchapp/viewmodel/LapViewModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/app/src/main/java/com/amay077/stopwatchapp/viewmodel/LapViewModel.java -------------------------------------------------------------------------------- /StopWatchAppAndroid/app/src/main/java/com/amay077/stopwatchapp/viewmodel/MainViewModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/app/src/main/java/com/amay077/stopwatchapp/viewmodel/MainViewModel.java -------------------------------------------------------------------------------- /StopWatchAppAndroid/app/src/main/java/com/amay077/stopwatchapp/views/activities/LapActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/app/src/main/java/com/amay077/stopwatchapp/views/activities/LapActivity.java -------------------------------------------------------------------------------- /StopWatchAppAndroid/app/src/main/java/com/amay077/stopwatchapp/views/activities/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/app/src/main/java/com/amay077/stopwatchapp/views/activities/MainActivity.java -------------------------------------------------------------------------------- /StopWatchAppAndroid/app/src/main/java/com/amay077/stopwatchapp/views/binders/ListBinders.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/app/src/main/java/com/amay077/stopwatchapp/views/binders/ListBinders.java -------------------------------------------------------------------------------- /StopWatchAppAndroid/app/src/main/res/layout/activity_lap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/app/src/main/res/layout/activity_lap.xml -------------------------------------------------------------------------------- /StopWatchAppAndroid/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /StopWatchAppAndroid/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /StopWatchAppAndroid/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /StopWatchAppAndroid/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /StopWatchAppAndroid/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /StopWatchAppAndroid/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /StopWatchAppAndroid/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /StopWatchAppAndroid/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /StopWatchAppAndroid/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /StopWatchAppAndroid/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /StopWatchAppAndroid/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /StopWatchAppAndroid/app/src/test/java/com/amay077/stopwatchapp/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/app/src/test/java/com/amay077/stopwatchapp/ExampleUnitTest.java -------------------------------------------------------------------------------- /StopWatchAppAndroid/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/build.gradle -------------------------------------------------------------------------------- /StopWatchAppAndroid/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/gradle.properties -------------------------------------------------------------------------------- /StopWatchAppAndroid/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /StopWatchAppAndroid/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /StopWatchAppAndroid/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/gradlew -------------------------------------------------------------------------------- /StopWatchAppAndroid/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppAndroid/gradlew.bat -------------------------------------------------------------------------------- /StopWatchAppAndroid/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /StopWatchAppXamarin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/.gitignore -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6.info -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6.png -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/component/Details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/component/Details.md -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/component/GettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/component/GettingStarted.md -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/component/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/component/License.md -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/component/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/component/Manifest.xml -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/component/icons/alert-center_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/component/icons/alert-center_128x128.png -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/component/icons/alert-center_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/component/icons/alert-center_512x512.png -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/component/popover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/component/popover.png -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/lib/android/AlertCenter.Android.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/lib/android/AlertCenter.Android.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/lib/ios-unified/AlertCenter.IOS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/lib/ios-unified/AlertCenter.IOS.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/lib/ios/AlertCenter.IOS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/lib/ios/AlertCenter.IOS.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.Android.Sample/Activity1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.Android.Sample/Activity1.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.Android.Sample/AlertCenter.Android.Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.Android.Sample/AlertCenter.Android.Sample.csproj -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.Android.Sample/AlertCenter.Android.Sample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.Android.Sample/AlertCenter.Android.Sample.sln -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.Android.Sample/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.Android.Sample/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.Android.Sample/CustomAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.Android.Sample/CustomAnimation.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.Android.Sample/NotificationView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.Android.Sample/NotificationView.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.Android.Sample/OnTouchListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.Android.Sample/OnTouchListener.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.Android.Sample/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.Android.Sample/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.Android.Sample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.Android.Sample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.Android.Sample/Readme.txt: -------------------------------------------------------------------------------- 1 | The app will require android.permission.SYSTEM_ALERT_WINDOW -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.Android.Sample/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.Android.Sample/Resources/AboutResources.txt -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.Android.Sample/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.Android.Sample/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.Android.Sample/Resources/anim/collapse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.Android.Sample/Resources/anim/collapse.xml -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.Android.Sample/Resources/anim/expand.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.Android.Sample/Resources/anim/expand.xml -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.Android.Sample/Resources/drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.Android.Sample/Resources/drawable/Icon.png -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.Android.Sample/Resources/layout/Main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.Android.Sample/Resources/layout/Main.axml -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.Android.Sample/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.Android.Sample/Resources/values/Strings.xml -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample-Unified/176.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample-Unified/176.png -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample-Unified/AlertCenter.IOS.Sample-Unified.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample-Unified/AlertCenter.IOS.Sample-Unified.csproj -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample-Unified/AlertCenter.IOS.Sample-Unified.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample-Unified/AlertCenter.IOS.Sample-Unified.sln -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample-Unified/AlertCenter.IOS.SampleViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample-Unified/AlertCenter.IOS.SampleViewController.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample-Unified/AlertCenter.IOS.SampleViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample-Unified/AlertCenter.IOS.SampleViewController.designer.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample-Unified/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample-Unified/AppDelegate.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample-Unified/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample-Unified/Entitlements.plist -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample-Unified/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample-Unified/Info.plist -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample-Unified/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample-Unified/Main.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample-Unified/MainStoryboard_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample-Unified/MainStoryboard_iPad.storyboard -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample-Unified/MainStoryboard_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample-Unified/MainStoryboard_iPhone.storyboard -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample-Unified/Resources/Images.xcassets/AppIcons.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample-Unified/Resources/Images.xcassets/AppIcons.appiconset/Contents.json -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample/176.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample/176.png -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample/AlertCenter.IOS.Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample/AlertCenter.IOS.Sample.csproj -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample/AlertCenter.IOS.Sample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample/AlertCenter.IOS.Sample.sln -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample/AlertCenter.IOS.SampleViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample/AlertCenter.IOS.SampleViewController.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample/AlertCenter.IOS.SampleViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample/AlertCenter.IOS.SampleViewController.designer.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample/AppDelegate.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample/Entitlements.plist -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample/Info.plist -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample/Main.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample/MainStoryboard_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample/MainStoryboard_iPad.storyboard -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample/MainStoryboard_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample/MainStoryboard_iPhone.storyboard -------------------------------------------------------------------------------- /StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/Components/alert-center-1.0.6/samples/AlertCenter.IOS.Sample/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.Android/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.Android/App.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.Android/Extensions/ArrayAdapterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.Android/Extensions/ArrayAdapterExtensions.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.Android/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.Android/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.Android/Resources/layout/activity_lap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.Android/Resources/layout/activity_lap.xml -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.Android/Resources/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.Android/Resources/layout/activity_main.xml -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.Android/Resources/mipmap-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.Android/Resources/mipmap-hdpi/Icon.png -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.Android/Resources/mipmap-mdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.Android/Resources/mipmap-mdpi/Icon.png -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.Android/Resources/mipmap-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.Android/Resources/mipmap-xhdpi/Icon.png -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.Android/Resources/mipmap-xxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.Android/Resources/mipmap-xxhdpi/Icon.png -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.Android/Resources/mipmap-xxxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.Android/Resources/mipmap-xxxhdpi/Icon.png -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.Android/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.Android/Resources/values/Strings.xml -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.Android/StopWatchApp.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.Android/StopWatchApp.Android.csproj -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.Android/Views/LapActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.Android/Views/LapActivity.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.Android/Views/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.Android/Views/MainActivity.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.Android/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.Android/packages.config -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.Core/Extensions/FormattedLapsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.Core/Extensions/FormattedLapsExtensions.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.Core/Frameworks/Messengers/IMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.Core/Frameworks/Messengers/IMessage.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.Core/Frameworks/Messengers/Messenger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.Core/Frameworks/Messengers/Messenger.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.Core/Frameworks/Messengers/ShowToastMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.Core/Frameworks/Messengers/ShowToastMessage.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.Core/Frameworks/Messengers/StartViewMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.Core/Frameworks/Messengers/StartViewMessage.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.Core/Models/IModelPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.Core/Models/IModelPool.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.Core/Models/StopWatchModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.Core/Models/StopWatchModel.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.Core/StopWatchApp.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.Core/StopWatchApp.Core.csproj -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.Core/ViewModels/LapViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.Core/ViewModels/LapViewModel.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.Core/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.Core/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.Core/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.Core/packages.config -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.iOS/Entitlements.plist -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.iOS/Extensions/BindingSupportExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.iOS/Extensions/BindingSupportExtensions.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.iOS/Extensions/Internal/AccessorCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.iOS/Extensions/Internal/AccessorCache.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.iOS/Extensions/UIControlExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.iOS/Extensions/UIControlExtensions.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.iOS/Extensions/UITableViewExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.iOS/Extensions/UITableViewExtensions.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.iOS/Info.plist -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.iOS/Main.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.iOS/Resources/Images.xcassets/AppIcons.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.iOS/Resources/Images.xcassets/AppIcons.appiconset/Contents.json -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.iOS/Resources/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.iOS/Resources/LaunchScreen.xib -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.iOS/StopWatchApp.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.iOS/StopWatchApp.iOS.csproj -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.iOS/Views/LapTableSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.iOS/Views/LapTableSource.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.iOS/Views/LapViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.iOS/Views/LapViewController.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.iOS/Views/LapViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.iOS/Views/LapViewController.designer.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.iOS/Views/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.iOS/Views/Main.storyboard -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.iOS/Views/MainViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.iOS/Views/MainViewController.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.iOS/Views/MainViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.iOS/Views/MainViewController.designer.cs -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchApp.iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchApp.iOS/packages.config -------------------------------------------------------------------------------- /StopWatchAppXamarin/StopWatchAppXamarin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/StopWatchAppXamarin.sln -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/Docs/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/Docs/ReadMe.txt -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/LICENSE.txt -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/ReactiveProperty.2.4.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/ReactiveProperty.2.4.0.nupkg -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/Snippet/csharp5/ReactiveCollection.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/Snippet/csharp5/ReactiveCollection.snippet -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/Snippet/csharp5/ReactiveCommand.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/Snippet/csharp5/ReactiveCommand.snippet -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/Snippet/csharp5/ReactiveCommandGeneric.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/Snippet/csharp5/ReactiveCommandGeneric.snippet -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/Snippet/csharp5/ReactiveProperty.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/Snippet/csharp5/ReactiveProperty.snippet -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/Snippet/csharp5/ReadOnlyReactiveCollection.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/Snippet/csharp5/ReadOnlyReactiveCollection.snippet -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/Snippet/csharp5/ReadOnlyReactiveProperty.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/Snippet/csharp5/ReadOnlyReactiveProperty.snippet -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/Snippet/csharp6/ReactiveCollection.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/Snippet/csharp6/ReactiveCollection.snippet -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/Snippet/csharp6/ReactiveCommand.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/Snippet/csharp6/ReactiveCommand.snippet -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/Snippet/csharp6/ReactiveCommandGeneric.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/Snippet/csharp6/ReactiveCommandGeneric.snippet -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/Snippet/csharp6/ReactiveProperty.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/Snippet/csharp6/ReactiveProperty.snippet -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/Snippet/csharp6/ReadOnlyReactiveCollection.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/Snippet/csharp6/ReadOnlyReactiveCollection.snippet -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/Snippet/csharp6/ReadOnlyReactiveProperty.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/Snippet/csharp6/ReadOnlyReactiveProperty.snippet -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/MonoAndroid/ReactiveProperty.Android.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/MonoAndroid/ReactiveProperty.Android.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/MonoAndroid/ReactiveProperty.DataAnnotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/MonoAndroid/ReactiveProperty.DataAnnotations.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/MonoAndroid/ReactiveProperty.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/MonoAndroid/ReactiveProperty.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/MonoTouch/ReactiveProperty.DataAnnotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/MonoTouch/ReactiveProperty.DataAnnotations.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/MonoTouch/ReactiveProperty.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/MonoTouch/ReactiveProperty.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/MonoTouch/ReactiveProperty.iOS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/MonoTouch/ReactiveProperty.iOS.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/Xamarin.Mac20/ReactiveProperty.DataAnnotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/Xamarin.Mac20/ReactiveProperty.DataAnnotations.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/Xamarin.Mac20/ReactiveProperty.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/Xamarin.Mac20/ReactiveProperty.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/Xamarin.iOS10/ReactiveProperty.DataAnnotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/Xamarin.iOS10/ReactiveProperty.DataAnnotations.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/Xamarin.iOS10/ReactiveProperty.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/Xamarin.iOS10/ReactiveProperty.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/Xamarin.iOS10/ReactiveProperty.iOS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/Xamarin.iOS10/ReactiveProperty.iOS.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/net4/ReactiveProperty.NET4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/net4/ReactiveProperty.NET4.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/net4/ReactiveProperty.NET4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/net4/ReactiveProperty.NET4.xml -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/net45/ReactiveProperty.DataAnnotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/net45/ReactiveProperty.DataAnnotations.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/net45/ReactiveProperty.NET45.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/net45/ReactiveProperty.NET45.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/net45/ReactiveProperty.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/net45/ReactiveProperty.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/net46/ReactiveProperty.DataAnnotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/net46/ReactiveProperty.DataAnnotations.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/net46/ReactiveProperty.NET46.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/net46/ReactiveProperty.NET46.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/net46/ReactiveProperty.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/net46/ReactiveProperty.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/portable-net45+WP8+win8+wpa81+MonoTouch+MonoAndroid/ReactiveProperty.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/portable-net45+WP8+win8+wpa81+MonoTouch+MonoAndroid/ReactiveProperty.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/portable-net45+win81+wpa81+MonoTouch+MonoAndroid/ReactiveProperty.DataAnnotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/portable-net45+win81+wpa81+MonoTouch+MonoAndroid/ReactiveProperty.DataAnnotations.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/portable-net45+win81+wpa81+MonoTouch+MonoAndroid/ReactiveProperty.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/portable-net45+win81+wpa81+MonoTouch+MonoAndroid/ReactiveProperty.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/portable-win81+wpa81/ReactiveProperty.DataAnnotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/portable-win81+wpa81/ReactiveProperty.DataAnnotations.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/portable-win81+wpa81/ReactiveProperty.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/portable-win81+wpa81/ReactiveProperty.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/win81/ReactiveProperty.DataAnnotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/win81/ReactiveProperty.DataAnnotations.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/win81/ReactiveProperty.WinRT.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/win81/ReactiveProperty.WinRT.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/win81/ReactiveProperty.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/win81/ReactiveProperty.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/wp8/ReactiveProperty.WP8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/wp8/ReactiveProperty.WP8.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/wp8/ReactiveProperty.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/wp8/ReactiveProperty.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/wpa81/ReactiveProperty.DataAnnotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/wpa81/ReactiveProperty.DataAnnotations.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/wpa81/ReactiveProperty.WPA81.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/wpa81/ReactiveProperty.WPA81.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/wpa81/ReactiveProperty.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.4.0/lib/wpa81/ReactiveProperty.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/Docs/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/Docs/ReadMe.txt -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/LICENSE.txt -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/ReactiveProperty.2.8.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/ReactiveProperty.2.8.nupkg -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/Snippet/csharp5/ReactiveCollection.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/Snippet/csharp5/ReactiveCollection.snippet -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/Snippet/csharp5/ReactiveCommand.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/Snippet/csharp5/ReactiveCommand.snippet -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/Snippet/csharp5/ReactiveCommandGeneric.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/Snippet/csharp5/ReactiveCommandGeneric.snippet -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/Snippet/csharp5/ReactiveProperty.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/Snippet/csharp5/ReactiveProperty.snippet -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/Snippet/csharp5/ReadOnlyReactiveCollection.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/Snippet/csharp5/ReadOnlyReactiveCollection.snippet -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/Snippet/csharp5/ReadOnlyReactiveProperty.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/Snippet/csharp5/ReadOnlyReactiveProperty.snippet -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/Snippet/csharp6/ReactiveCollection.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/Snippet/csharp6/ReactiveCollection.snippet -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/Snippet/csharp6/ReactiveCommand.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/Snippet/csharp6/ReactiveCommand.snippet -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/Snippet/csharp6/ReactiveCommandGeneric.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/Snippet/csharp6/ReactiveCommandGeneric.snippet -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/Snippet/csharp6/ReactiveProperty.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/Snippet/csharp6/ReactiveProperty.snippet -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/Snippet/csharp6/ReadOnlyReactiveCollection.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/Snippet/csharp6/ReadOnlyReactiveCollection.snippet -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/Snippet/csharp6/ReadOnlyReactiveProperty.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/Snippet/csharp6/ReadOnlyReactiveProperty.snippet -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/MonoAndroid/ReactiveProperty.Android.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/MonoAndroid/ReactiveProperty.Android.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/MonoAndroid/ReactiveProperty.Android.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/MonoAndroid/ReactiveProperty.Android.dll.mdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/MonoAndroid/ReactiveProperty.Android.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/MonoAndroid/ReactiveProperty.Android.pdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/MonoAndroid/ReactiveProperty.DataAnnotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/MonoAndroid/ReactiveProperty.DataAnnotations.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/MonoAndroid/ReactiveProperty.DataAnnotations.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/MonoAndroid/ReactiveProperty.DataAnnotations.dll.mdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/MonoAndroid/ReactiveProperty.DataAnnotations.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/MonoAndroid/ReactiveProperty.DataAnnotations.pdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/MonoAndroid/ReactiveProperty.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/MonoAndroid/ReactiveProperty.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/MonoAndroid/ReactiveProperty.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/MonoAndroid/ReactiveProperty.dll.mdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/MonoAndroid/ReactiveProperty.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/MonoAndroid/ReactiveProperty.pdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/MonoTouch/ReactiveProperty.DataAnnotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/MonoTouch/ReactiveProperty.DataAnnotations.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/MonoTouch/ReactiveProperty.DataAnnotations.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/MonoTouch/ReactiveProperty.DataAnnotations.pdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/MonoTouch/ReactiveProperty.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/MonoTouch/ReactiveProperty.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/MonoTouch/ReactiveProperty.iOS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/MonoTouch/ReactiveProperty.iOS.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/MonoTouch/ReactiveProperty.iOS.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/MonoTouch/ReactiveProperty.iOS.pdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/MonoTouch/ReactiveProperty.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/MonoTouch/ReactiveProperty.pdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/Xamarin.Mac20/ReactiveProperty.DataAnnotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/Xamarin.Mac20/ReactiveProperty.DataAnnotations.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/Xamarin.Mac20/ReactiveProperty.DataAnnotations.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/Xamarin.Mac20/ReactiveProperty.DataAnnotations.pdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/Xamarin.Mac20/ReactiveProperty.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/Xamarin.Mac20/ReactiveProperty.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/Xamarin.Mac20/ReactiveProperty.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/Xamarin.Mac20/ReactiveProperty.pdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/Xamarin.iOS10/ReactiveProperty.DataAnnotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/Xamarin.iOS10/ReactiveProperty.DataAnnotations.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/Xamarin.iOS10/ReactiveProperty.DataAnnotations.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/Xamarin.iOS10/ReactiveProperty.DataAnnotations.pdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/Xamarin.iOS10/ReactiveProperty.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/Xamarin.iOS10/ReactiveProperty.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/Xamarin.iOS10/ReactiveProperty.iOS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/Xamarin.iOS10/ReactiveProperty.iOS.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/Xamarin.iOS10/ReactiveProperty.iOS.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/Xamarin.iOS10/ReactiveProperty.iOS.pdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/Xamarin.iOS10/ReactiveProperty.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/Xamarin.iOS10/ReactiveProperty.pdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/net4/ReactiveProperty.NET4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/net4/ReactiveProperty.NET4.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/net4/ReactiveProperty.NET4.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/net4/ReactiveProperty.NET4.pdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/net4/ReactiveProperty.NET4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/net4/ReactiveProperty.NET4.xml -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/net45/ReactiveProperty.DataAnnotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/net45/ReactiveProperty.DataAnnotations.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/net45/ReactiveProperty.DataAnnotations.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/net45/ReactiveProperty.DataAnnotations.pdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/net45/ReactiveProperty.NET45.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/net45/ReactiveProperty.NET45.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/net45/ReactiveProperty.NET45.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/net45/ReactiveProperty.NET45.pdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/net45/ReactiveProperty.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/net45/ReactiveProperty.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/net45/ReactiveProperty.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/net45/ReactiveProperty.pdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/net46/ReactiveProperty.DataAnnotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/net46/ReactiveProperty.DataAnnotations.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/net46/ReactiveProperty.DataAnnotations.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/net46/ReactiveProperty.DataAnnotations.pdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/net46/ReactiveProperty.NET46.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/net46/ReactiveProperty.NET46.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/net46/ReactiveProperty.NET46.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/net46/ReactiveProperty.NET46.pdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/net46/ReactiveProperty.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/net46/ReactiveProperty.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/net46/ReactiveProperty.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/net46/ReactiveProperty.pdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/netcore451/ReactiveProperty.DataAnnotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/netcore451/ReactiveProperty.DataAnnotations.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/netcore451/ReactiveProperty.DataAnnotations.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/netcore451/ReactiveProperty.DataAnnotations.pdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/netcore451/ReactiveProperty.WinRT.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/netcore451/ReactiveProperty.WinRT.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/netcore451/ReactiveProperty.WinRT.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/netcore451/ReactiveProperty.WinRT.pdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/netcore451/ReactiveProperty.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/netcore451/ReactiveProperty.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/netcore451/ReactiveProperty.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/netcore451/ReactiveProperty.pdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/portable-net45+WP8+win8+wpa81+MonoTouch+MonoAndroid/ReactiveProperty.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/portable-net45+WP8+win8+wpa81+MonoTouch+MonoAndroid/ReactiveProperty.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/portable-net45+WP8+win8+wpa81+MonoTouch+MonoAndroid/ReactiveProperty.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/portable-net45+WP8+win8+wpa81+MonoTouch+MonoAndroid/ReactiveProperty.pdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/portable-net45+win81+wpa81+MonoTouch+MonoAndroid/ReactiveProperty.DataAnnotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/portable-net45+win81+wpa81+MonoTouch+MonoAndroid/ReactiveProperty.DataAnnotations.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/portable-net45+win81+wpa81+MonoTouch+MonoAndroid/ReactiveProperty.DataAnnotations.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/portable-net45+win81+wpa81+MonoTouch+MonoAndroid/ReactiveProperty.DataAnnotations.pdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/portable-net45+win81+wpa81+MonoTouch+MonoAndroid/ReactiveProperty.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/portable-net45+win81+wpa81+MonoTouch+MonoAndroid/ReactiveProperty.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/portable-net45+win81+wpa81+MonoTouch+MonoAndroid/ReactiveProperty.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/portable-net45+win81+wpa81+MonoTouch+MonoAndroid/ReactiveProperty.pdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/portable-win81+wpa81/ReactiveProperty.DataAnnotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/portable-win81+wpa81/ReactiveProperty.DataAnnotations.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/portable-win81+wpa81/ReactiveProperty.DataAnnotations.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/portable-win81+wpa81/ReactiveProperty.DataAnnotations.pdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/portable-win81+wpa81/ReactiveProperty.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/portable-win81+wpa81/ReactiveProperty.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/portable-win81+wpa81/ReactiveProperty.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/portable-win81+wpa81/ReactiveProperty.pdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/uap10.0/ReactiveProperty.DataAnnotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/uap10.0/ReactiveProperty.DataAnnotations.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/uap10.0/ReactiveProperty.DataAnnotations.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/uap10.0/ReactiveProperty.DataAnnotations.pdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/uap10.0/ReactiveProperty.UWP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/uap10.0/ReactiveProperty.UWP.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/uap10.0/ReactiveProperty.UWP.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/uap10.0/ReactiveProperty.UWP.pdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/uap10.0/ReactiveProperty.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/uap10.0/ReactiveProperty.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/uap10.0/ReactiveProperty.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/uap10.0/ReactiveProperty.pdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/wp8/ReactiveProperty.WP8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/wp8/ReactiveProperty.WP8.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/wp8/ReactiveProperty.WP8.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/wp8/ReactiveProperty.WP8.pdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/wp8/ReactiveProperty.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/wp8/ReactiveProperty.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/wp8/ReactiveProperty.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/wp8/ReactiveProperty.pdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/wpa81/ReactiveProperty.DataAnnotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/wpa81/ReactiveProperty.DataAnnotations.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/wpa81/ReactiveProperty.DataAnnotations.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/wpa81/ReactiveProperty.DataAnnotations.pdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/wpa81/ReactiveProperty.WPA81.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/wpa81/ReactiveProperty.WPA81.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/wpa81/ReactiveProperty.WPA81.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/wpa81/ReactiveProperty.WPA81.pdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/wpa81/ReactiveProperty.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/wpa81/ReactiveProperty.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/wpa81/ReactiveProperty.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/ReactiveProperty.2.8/lib/wpa81/ReactiveProperty.pdb -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Core.2.2.5/Rx-Core.2.2.5.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Core.2.2.5/Rx-Core.2.2.5.nupkg -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/net40/System.Reactive.Core.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/net40/System.Reactive.Core.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/net40/System.Reactive.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/net40/System.Reactive.Core.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/net45/System.Reactive.Core.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/net45/System.Reactive.Core.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/net45/System.Reactive.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/net45/System.Reactive.Core.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/portable-net40+sl5+win8+wp8/System.Reactive.Core.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/portable-net40+sl5+win8+wp8/System.Reactive.Core.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/portable-net40+sl5+win8+wp8/System.Reactive.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/portable-net40+sl5+win8+wp8/System.Reactive.Core.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/portable-win81+wpa81/System.Reactive.Core.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/portable-win81+wpa81/System.Reactive.Core.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/portable-win81+wpa81/System.Reactive.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/portable-win81+wpa81/System.Reactive.Core.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/portable-windows8+net45+wp8/System.Reactive.Core.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/portable-windows8+net45+wp8/System.Reactive.Core.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/portable-windows8+net45+wp8/System.Reactive.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/portable-windows8+net45+wp8/System.Reactive.Core.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/sl5/System.Reactive.Core.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/sl5/System.Reactive.Core.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/sl5/System.Reactive.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/sl5/System.Reactive.Core.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/windows8/System.Reactive.Core.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/windows8/System.Reactive.Core.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/windows8/System.Reactive.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/windows8/System.Reactive.Core.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/windowsphone71/System.Reactive.Core.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/windowsphone71/System.Reactive.Core.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/windowsphone71/System.Reactive.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/windowsphone71/System.Reactive.Core.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/windowsphone8/System.Reactive.Core.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/windowsphone8/System.Reactive.Core.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/windowsphone8/System.Reactive.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Core.2.2.5/lib/windowsphone8/System.Reactive.Core.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/Rx-Interfaces.2.2.5.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/Rx-Interfaces.2.2.5.nupkg -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/net40/System.Reactive.Interfaces.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/net40/System.Reactive.Interfaces.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/net40/System.Reactive.Interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/net40/System.Reactive.Interfaces.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/net45/System.Reactive.Interfaces.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/net45/System.Reactive.Interfaces.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/net45/System.Reactive.Interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/net45/System.Reactive.Interfaces.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/portable-net40+sl5+win8+wp8/System.Reactive.Interfaces.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/portable-net40+sl5+win8+wp8/System.Reactive.Interfaces.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/portable-net40+sl5+win8+wp8/System.Reactive.Interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/portable-net40+sl5+win8+wp8/System.Reactive.Interfaces.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/portable-win81+wpa81/System.Reactive.Interfaces.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/portable-win81+wpa81/System.Reactive.Interfaces.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/portable-win81+wpa81/System.Reactive.Interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/portable-win81+wpa81/System.Reactive.Interfaces.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/portable-windows8+net45+wp8/System.Reactive.Interfaces.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/portable-windows8+net45+wp8/System.Reactive.Interfaces.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/portable-windows8+net45+wp8/System.Reactive.Interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/portable-windows8+net45+wp8/System.Reactive.Interfaces.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/sl5/System.Reactive.Interfaces.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/sl5/System.Reactive.Interfaces.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/sl5/System.Reactive.Interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/sl5/System.Reactive.Interfaces.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/windows8/System.Reactive.Interfaces.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/windows8/System.Reactive.Interfaces.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/windows8/System.Reactive.Interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/windows8/System.Reactive.Interfaces.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/windowsphone71/System.Reactive.Interfaces.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/windowsphone71/System.Reactive.Interfaces.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/windowsphone71/System.Reactive.Interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/windowsphone71/System.Reactive.Interfaces.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/windowsphone8/System.Reactive.Interfaces.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/windowsphone8/System.Reactive.Interfaces.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/windowsphone8/System.Reactive.Interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Interfaces.2.2.5/lib/windowsphone8/System.Reactive.Interfaces.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Linq.2.2.5/Rx-Linq.2.2.5.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Linq.2.2.5/Rx-Linq.2.2.5.nupkg -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/net40/System.Reactive.Linq.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/net40/System.Reactive.Linq.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/net40/System.Reactive.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/net40/System.Reactive.Linq.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/net45/System.Reactive.Linq.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/net45/System.Reactive.Linq.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/net45/System.Reactive.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/net45/System.Reactive.Linq.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/portable-net40+sl5+win8+wp8/System.Reactive.Linq.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/portable-net40+sl5+win8+wp8/System.Reactive.Linq.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/portable-net40+sl5+win8+wp8/System.Reactive.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/portable-net40+sl5+win8+wp8/System.Reactive.Linq.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Linq.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/portable-win81+wpa81/System.Reactive.Linq.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/portable-win81+wpa81/System.Reactive.Linq.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/portable-win81+wpa81/System.Reactive.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/portable-win81+wpa81/System.Reactive.Linq.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/portable-windows8+net45+wp8/System.Reactive.Linq.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/portable-windows8+net45+wp8/System.Reactive.Linq.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/portable-windows8+net45+wp8/System.Reactive.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/portable-windows8+net45+wp8/System.Reactive.Linq.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/sl5/System.Reactive.Linq.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/sl5/System.Reactive.Linq.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/sl5/System.Reactive.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/sl5/System.Reactive.Linq.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/windows8/System.Reactive.Linq.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/windows8/System.Reactive.Linq.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/windows8/System.Reactive.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/windows8/System.Reactive.Linq.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/windowsphone71/System.Reactive.Linq.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/windowsphone71/System.Reactive.Linq.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/windowsphone71/System.Reactive.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/windowsphone71/System.Reactive.Linq.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/windowsphone8/System.Reactive.Linq.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/windowsphone8/System.Reactive.Linq.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/windowsphone8/System.Reactive.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Linq.2.2.5/lib/windowsphone8/System.Reactive.Linq.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-Main.2.2.5/Rx-Main.2.2.5.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-Main.2.2.5/Rx-Main.2.2.5.nupkg -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/Rx-PlatformServices.2.2.5.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/Rx-PlatformServices.2.2.5.nupkg -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/net40/System.Reactive.PlatformServices.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/net40/System.Reactive.PlatformServices.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/net40/System.Reactive.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/net40/System.Reactive.PlatformServices.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/net45/System.Reactive.PlatformServices.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/net45/System.Reactive.PlatformServices.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/net45/System.Reactive.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/net45/System.Reactive.PlatformServices.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/portable-net40+sl5+win8+wp8/System.Reactive.PlatformServices.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/portable-net40+sl5+win8+wp8/System.Reactive.PlatformServices.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/portable-net40+sl5+win8+wp8/System.Reactive.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/portable-net40+sl5+win8+wp8/System.Reactive.PlatformServices.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.PlatformServices.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/portable-win81+wpa81/System.Reactive.PlatformServices.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/portable-win81+wpa81/System.Reactive.PlatformServices.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/portable-win81+wpa81/System.Reactive.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/portable-win81+wpa81/System.Reactive.PlatformServices.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/portable-windows8+net45+wp8/System.Reactive.PlatformServices.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/portable-windows8+net45+wp8/System.Reactive.PlatformServices.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/portable-windows8+net45+wp8/System.Reactive.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/portable-windows8+net45+wp8/System.Reactive.PlatformServices.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/sl5/System.Reactive.PlatformServices.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/sl5/System.Reactive.PlatformServices.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/sl5/System.Reactive.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/sl5/System.Reactive.PlatformServices.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/windows8/System.Reactive.PlatformServices.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/windows8/System.Reactive.PlatformServices.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/windows8/System.Reactive.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/windows8/System.Reactive.PlatformServices.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/windowsphone71/System.Reactive.PlatformServices.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/windowsphone71/System.Reactive.PlatformServices.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/windowsphone71/System.Reactive.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/windowsphone71/System.Reactive.PlatformServices.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/windowsphone8/System.Reactive.PlatformServices.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/windowsphone8/System.Reactive.PlatformServices.XML -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/windowsphone8/System.Reactive.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/Rx-PlatformServices.2.2.5/lib/windowsphone8/System.Reactive.PlatformServices.dll -------------------------------------------------------------------------------- /StopWatchAppXamarin/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarin/packages/repositories.config -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/Droid/MainActivity.cs -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/Droid/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/Droid/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/Droid/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/Droid/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/Droid/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/Droid/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/Droid/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/Droid/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/Droid/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/Droid/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/Droid/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/Droid/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/Droid/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/Droid/Resources/values/styles.xml -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/Droid/StopWatchAppXamarinForms.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/Droid/StopWatchAppXamarinForms.Droid.csproj -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/Droid/packages.config -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/StopWatchAppXamarinForms.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/StopWatchAppXamarinForms.sln -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/StopWatchAppXamarinForms/FormsApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/StopWatchAppXamarinForms/FormsApp.cs -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/StopWatchAppXamarinForms/Models/IStopWatchModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/StopWatchAppXamarinForms/Models/IStopWatchModel.cs -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/StopWatchAppXamarinForms/Models/StopWatchModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/StopWatchAppXamarinForms/Models/StopWatchModel.cs -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/StopWatchAppXamarinForms/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/StopWatchAppXamarinForms/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/StopWatchAppXamarinForms/StopWatchAppXamarinForms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/StopWatchAppXamarinForms/StopWatchAppXamarinForms.csproj -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/StopWatchAppXamarinForms/ValueConverters/ButtonTitleConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/StopWatchAppXamarinForms/ValueConverters/ButtonTitleConverter.cs -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/StopWatchAppXamarinForms/ViewModels/LapViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/StopWatchAppXamarinForms/ViewModels/LapViewModel.cs -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/StopWatchAppXamarinForms/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/StopWatchAppXamarinForms/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/StopWatchAppXamarinForms/Views/LapPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/StopWatchAppXamarinForms/Views/LapPage.xaml -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/StopWatchAppXamarinForms/Views/LapPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/StopWatchAppXamarinForms/Views/LapPage.xaml.cs -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/StopWatchAppXamarinForms/Views/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/StopWatchAppXamarinForms/Views/MainPage.xaml -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/StopWatchAppXamarinForms/Views/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/StopWatchAppXamarinForms/Views/MainPage.xaml.cs -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/StopWatchAppXamarinForms/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/StopWatchAppXamarinForms/packages.config -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/iOS/Entitlements.plist -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/iOS/Info.plist -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/iOS/Main.cs -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/iOS/StopWatchAppXamarinForms.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/iOS/StopWatchAppXamarinForms.iOS.csproj -------------------------------------------------------------------------------- /StopWatchAppXamarinForms/iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amay077/StopWatchSample/HEAD/StopWatchAppXamarinForms/iOS/packages.config --------------------------------------------------------------------------------